mirror of
https://github.com/muerwre/vault-frontend.git
synced 2025-04-24 20:36:40 +07:00
42 lines
905 B
TypeScript
42 lines
905 B
TypeScript
import { createReducer } from '~/utils/reducer';
|
|
import { IComment, IFile, INode } from '../types';
|
|
import { EMPTY_NODE } from './constants';
|
|
import { NODE_HANDLERS } from './handlers';
|
|
|
|
export type INodeState = Readonly<{
|
|
editor: INode;
|
|
current: INode;
|
|
comments: IComment[];
|
|
lastSeenCurrent?: string;
|
|
comment_count: number;
|
|
current_cover_image?: IFile;
|
|
|
|
error: string;
|
|
errors: Record<string, string>;
|
|
|
|
is_loading: boolean;
|
|
is_loading_comments: boolean;
|
|
is_sending_comment: boolean;
|
|
}>;
|
|
|
|
const INITIAL_STATE: INodeState = {
|
|
editor: {
|
|
...EMPTY_NODE,
|
|
type: 'image',
|
|
blocks: [],
|
|
files: [],
|
|
},
|
|
current: { ...EMPTY_NODE },
|
|
comment_count: 0,
|
|
comments: [],
|
|
current_cover_image: undefined,
|
|
|
|
is_loading: false,
|
|
is_loading_comments: false,
|
|
is_sending_comment: false,
|
|
|
|
error: '',
|
|
errors: {},
|
|
};
|
|
|
|
export default createReducer(INITIAL_STATE, NODE_HANDLERS);
|