mirror of
https://github.com/muerwre/vault-frontend.git
synced 2025-04-25 12:56:41 +07:00
node editing saga
This commit is contained in:
parent
249a9b368c
commit
f71be36520
6 changed files with 50 additions and 13 deletions
|
@ -1,5 +1,6 @@
|
|||
import { ValueOf } from '~/redux/types';
|
||||
import { LoginDialog } from '~/containers/dialogs/LoginDialog';
|
||||
import { LoadingDialog } from '~/containers/dialogs/LoadingDialog';
|
||||
import { EditorDialogImage } from '~/containers/editors/EditorDialogImage';
|
||||
import { EditorDialogText } from '~/containers/editors/EditorDialogText';
|
||||
import { EditorDialogVideo } from '~/containers/editors/EditorDialogVideo';
|
||||
|
@ -18,6 +19,7 @@ export const DIALOGS = {
|
|||
EDITOR_VIDEO: 'EDITOR_VIDEO',
|
||||
EDITOR_AUDIO: 'EDITOR_AUDIO',
|
||||
LOGIN: 'LOGIN',
|
||||
LOADING: 'LOADING',
|
||||
};
|
||||
|
||||
export const DIALOG_CONTENT = {
|
||||
|
@ -26,6 +28,7 @@ export const DIALOG_CONTENT = {
|
|||
[DIALOGS.EDITOR_VIDEO]: EditorDialogVideo,
|
||||
[DIALOGS.EDITOR_AUDIO]: EditorDialogAudio,
|
||||
[DIALOGS.LOGIN]: LoginDialog,
|
||||
[DIALOGS.LOADING]: LoadingDialog,
|
||||
};
|
||||
|
||||
export const NODE_EDITOR_DIALOGS = {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue