本文整理汇总了TypeScript中src/store/store.helpers.onDeleteSuccess方法的典型用法代码示例。如果您正苦于以下问题:TypeScript helpers.onDeleteSuccess方法的具体用法?TypeScript helpers.onDeleteSuccess怎么用?TypeScript helpers.onDeleteSuccess使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类src/store/store.helpers
的用法示例。
在下文中一共展示了helpers.onDeleteSuccess方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的TypeScript代码示例。
示例1: String
const reducer: Reducer<State> = (state = defaultState, action) => {
if (isType(action, deleteLinodeActions.done)) {
const {
params: { linodeId }
} = action.payload;
const configIdsToRemove = Object.values(state.itemsById)
.filter(({ linode_id }) => linode_id === linodeId)
.map(({ id }) => String(id));
return removeMany(configIdsToRemove, state);
}
if (isType(action, deleteLinode)) {
const { payload } = action;
const configIdsToRemove = Object.values(state.itemsById)
.filter(({ linode_id }) => linode_id === payload)
.map(({ id }) => String(id));
return removeMany(configIdsToRemove, state);
}
if (isType(action, getLinodeDisksActions.done)) {
const { result } = action.payload;
return addMany(result, state);
}
if (isType(action, createLinodeDiskActions.done)) {
const { result } = action.payload;
return onCreateOrUpdate(result, state);
}
if (isType(action, getLinodeDiskActions.done)) {
const { result } = action.payload;
return onCreateOrUpdate(result, state);
}
if (isType(action, updateLinodeDiskActions.done)) {
const { result } = action.payload;
return onCreateOrUpdate(result, state);
}
if (isType(action, deleteLinodeDiskActions.done)) {
const {
params: { diskId: DiskId }
} = action.payload;
return onDeleteSuccess(DiskId, state);
}
/**
* reset error state when our request to disks has started and
* or a request to get one disk has started
*/
if (
isType(action, getAllLinodeDisksActions.started) ||
isType(action, getLinodeDiskActions.started)
) {
return onStart(state);
}
if (isType(action, getAllLinodeDisksActions.done)) {
const { result } = action.payload;
return onGetAllSuccess(result, state);
}
if (isType(action, getAllLinodeDisksActions.failed)) {
const { error } = action.payload;
return onError(error, state);
}
return state;
};