本文整理汇总了TypeScript中src/store/store.helpers.createDefaultState方法的典型用法代码示例。如果您正苦于以下问题:TypeScript helpers.createDefaultState方法的具体用法?TypeScript helpers.createDefaultState怎么用?TypeScript helpers.createDefaultState使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类src/store/store.helpers
的用法示例。
在下文中一共展示了helpers.createDefaultState方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的TypeScript代码示例。
示例1: removeMany
import { MappedEntityState } from 'src/store/types';
import { isType } from 'typescript-fsa';
import { deleteLinode, deleteLinodeActions } from '../linodes.actions';
import {
createLinodeDiskActions,
deleteLinodeDiskActions,
getAllLinodeDisksActions,
getLinodeDiskActions,
getLinodeDisksActions,
updateLinodeDiskActions
} from './disk.actions';
import { Entity } from './disk.types';
export type State = MappedEntityState<Entity>;
export const defaultState: State = createDefaultState<Entity>();
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)) {