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

better scroll dialog

This commit is contained in:
Fedor Katurov 2019-11-03 21:15:38 +07:00
parent 782ef41eda
commit 0c2229d9af
13 changed files with 221 additions and 27 deletions

View file

@ -6,6 +6,7 @@ import { EditorDialogText } from '~/containers/editors/EditorDialogText';
import { EditorDialogVideo } from '~/containers/editors/EditorDialogVideo';
import { EditorDialogAudio } from '~/containers/editors/EditorDialogAudio';
import { NODE_TYPES } from '../node/constants';
import { TestDialog } from '~/containers/dialogs/TestDialog';
export const MODAL_ACTIONS = {
SET_SHOWN: 'MODAL.SET_SHOWN',
@ -20,6 +21,7 @@ export const DIALOGS = {
EDITOR_AUDIO: 'EDITOR_AUDIO',
LOGIN: 'LOGIN',
LOADING: 'LOADING',
TEST: 'TEST',
};
export const DIALOG_CONTENT = {
@ -29,6 +31,7 @@ export const DIALOG_CONTENT = {
[DIALOGS.EDITOR_AUDIO]: EditorDialogAudio,
[DIALOGS.LOGIN]: LoginDialog,
[DIALOGS.LOADING]: LoadingDialog,
[DIALOGS.TEST]: TestDialog,
};
export const NODE_EDITOR_DIALOGS = {