1
0
Fork 0
mirror of https://github.com/muerwre/vault-frontend.git synced 2025-04-25 21:06:42 +07:00

flow get more

This commit is contained in:
Fedor Katurov 2019-11-18 14:49:32 +07:00
parent f440a5f4c3
commit 971578bb21
11 changed files with 281 additions and 159 deletions

View file

@ -1,29 +1,43 @@
import { FLOW_ACTIONS } from './constants';
import { IFlowState } from './reducer';
import { INode } from '../types';
import { FLOW_ACTIONS } from "./constants";
import { IFlowState } from "./reducer";
import { INode } from "../types";
export const flowSetNodes = (nodes: IFlowState['nodes']) => ({
export const flowSetNodes = (nodes: IFlowState["nodes"]) => ({
nodes,
type: FLOW_ACTIONS.SET_NODES,
type: FLOW_ACTIONS.SET_NODES
});
export const flowSetHeroes = (heroes: IFlowState['heroes']) => ({
export const flowSetHeroes = (heroes: IFlowState["heroes"]) => ({
heroes,
type: FLOW_ACTIONS.SET_HEROES,
type: FLOW_ACTIONS.SET_HEROES
});
export const flowSetRecent = (recent: IFlowState['recent']) => ({
export const flowSetRecent = (recent: IFlowState["recent"]) => ({
recent,
type: FLOW_ACTIONS.SET_RECENT,
type: FLOW_ACTIONS.SET_RECENT
});
export const flowSetUpdated = (updated: IFlowState['updated']) => ({
export const flowSetUpdated = (updated: IFlowState["updated"]) => ({
updated,
type: FLOW_ACTIONS.SET_UPDATED,
type: FLOW_ACTIONS.SET_UPDATED
});
export const flowSetCellView = (id: INode['id'], flow: INode['flow']) => ({
export const flowSetCellView = (id: INode["id"], flow: INode["flow"]) => ({
type: FLOW_ACTIONS.SET_CELL_VIEW,
id,
flow,
flow
});
export const flowSetRange = (range: IFlowState["range"]) => ({
range,
type: FLOW_ACTIONS.SET_RANGE
});
export const flowGetMore = () => ({
type: FLOW_ACTIONS.GET_MORE
});
export const flowSetFlow = (data: Partial<IFlowState>) => ({
type: FLOW_ACTIONS.SET_FLOW,
data
});