1
0
Fork 0
mirror of https://github.com/muerwre/vault-frontend.git synced 2025-04-25 12:56:41 +07:00

flow redux

This commit is contained in:
muerwre 2019-08-24 17:58:39 +07:00
parent 9691504af6
commit 95443635b4
11 changed files with 118 additions and 10 deletions

15
src/redux/flow/reducer.ts Normal file
View file

@ -0,0 +1,15 @@
import { createReducer } from '~/utils/reducer';
import { INode, UUID } from '../types';
import { FLOW_HANDLERS } from './handlers';
export type IFlowState = Readonly<{
is_loading: boolean;
nodes: Record<UUID, INode>;
}>;
const INITIAL_STATE: IFlowState = {
nodes: {},
is_loading: false,
};
export default createReducer(INITIAL_STATE, FLOW_HANDLERS);