ConceptPortal-public/rsconcept/frontend/src/stores/dialogs.ts

123 lines
6.4 KiB
TypeScript
Raw Normal View History

import { create } from 'zustand';
import { type DlgChangeLocationProps } from '@/features/library/dialogs/DlgChangeLocation';
import { type DlgCloneLibraryItemProps } from '@/features/library/dialogs/DlgCloneLibraryItem';
import { type DlgCreateVersionProps } from '@/features/library/dialogs/DlgCreateVersion';
import { type DlgEditEditorsProps } from '@/features/library/dialogs/DlgEditEditors/DlgEditEditors';
import { type DlgEditVersionsProps } from '@/features/library/dialogs/DlgEditVersions/DlgEditVersions';
import { type DlgChangeInputSchemaProps } from '@/features/oss/dialogs/DlgChangeInputSchema';
import { type DlgCreateOperationProps } from '@/features/oss/dialogs/DlgCreateOperation/DlgCreateOperation';
import { type DlgDeleteOperationProps } from '@/features/oss/dialogs/DlgDeleteOperation';
import { type DlgEditOperationProps } from '@/features/oss/dialogs/DlgEditOperation/DlgEditOperation';
import { type DlgRelocateConstituentsProps } from '@/features/oss/dialogs/DlgRelocateConstituents';
import { type DlgCreateCstProps } from '@/features/rsform/dialogs/DlgCreateCst/DlgCreateCst';
import { type DlgCstTemplateProps } from '@/features/rsform/dialogs/DlgCstTemplate/DlgCstTemplate';
import { type DlgDeleteCstProps } from '@/features/rsform/dialogs/DlgDeleteCst/DlgDeleteCst';
import { type DlgEditReferenceProps } from '@/features/rsform/dialogs/DlgEditReference/DlgEditReference';
import { type DlgEditWordFormsProps } from '@/features/rsform/dialogs/DlgEditWordForms/DlgEditWordForms';
import { type DlgInlineSynthesisProps } from '@/features/rsform/dialogs/DlgInlineSynthesis/DlgInlineSynthesis';
import { type DlgRenameCstProps } from '@/features/rsform/dialogs/DlgRenameCst';
import { type DlgShowASTProps } from '@/features/rsform/dialogs/DlgShowAST/DlgShowAST';
import { type DlgShowQRProps } from '@/features/rsform/dialogs/DlgShowQR';
import { type DlgShowTypeGraphProps } from '@/features/rsform/dialogs/DlgShowTypeGraph/DlgShowTypeGraph';
import { type DlgSubstituteCstProps } from '@/features/rsform/dialogs/DlgSubstituteCst';
import { type DlgUploadRSFormProps } from '@/features/rsform/dialogs/DlgUploadRSForm';
/**
* Represents global dialog.
*/
export enum DialogType {
CONSTITUENTA_TEMPLATE = 1,
CREATE_CONSTITUENTA,
CREATE_OPERATION,
DELETE_CONSTITUENTA,
EDIT_EDITORS,
EDIT_OPERATION,
EDIT_REFERENCE,
EDIT_VERSIONS,
EDIT_WORD_FORMS,
INLINE_SYNTHESIS,
SHOW_AST,
SHOW_TYPE_GRAPH,
CHANGE_INPUT_SCHEMA,
CHANGE_LOCATION,
CLONE_LIBRARY_ITEM,
CREATE_VERSION,
DELETE_OPERATION,
GRAPH_PARAMETERS,
RELOCATE_CONSTITUENTS,
RENAME_CONSTITUENTA,
SHOW_QR_CODE,
SUBSTITUTE_CONSTITUENTS,
UPLOAD_RSFORM
}
2025-02-15 15:34:29 +03:00
export interface GenericDialogProps {
onHide?: () => void;
}
interface DialogsStore {
active: DialogType | null;
props: unknown;
hideDialog: () => void;
showCstTemplate: (props: DlgCstTemplateProps) => void;
showCreateCst: (props: DlgCreateCstProps) => void;
showCreateOperation: (props: DlgCreateOperationProps) => void;
showDeleteCst: (props: DlgDeleteCstProps) => void;
showEditEditors: (props: DlgEditEditorsProps) => void;
showEditOperation: (props: DlgEditOperationProps) => void;
showEditReference: (props: DlgEditReferenceProps) => void;
showEditVersions: (props: DlgEditVersionsProps) => void;
showEditWordForms: (props: DlgEditWordFormsProps) => void;
showInlineSynthesis: (props: DlgInlineSynthesisProps) => void;
showShowAST: (props: DlgShowASTProps) => void;
showShowTypeGraph: (props: DlgShowTypeGraphProps) => void;
showChangeInputSchema: (props: DlgChangeInputSchemaProps) => void;
showChangeLocation: (props: DlgChangeLocationProps) => void;
showCloneLibraryItem: (props: DlgCloneLibraryItemProps) => void;
showCreateVersion: (props: DlgCreateVersionProps) => void;
showDeleteOperation: (props: DlgDeleteOperationProps) => void;
2025-02-08 17:10:38 +03:00
showGraphParams: () => void;
showRelocateConstituents: (props: DlgRelocateConstituentsProps) => void;
showRenameCst: (props: DlgRenameCstProps) => void;
showQR: (props: DlgShowQRProps) => void;
showSubstituteCst: (props: DlgSubstituteCstProps) => void;
showUploadRSForm: (props: DlgUploadRSFormProps) => void;
}
export const useDialogsStore = create<DialogsStore>()(set => ({
active: null,
props: null,
2025-02-15 15:34:29 +03:00
hideDialog: () => {
set(state => {
(state.props as GenericDialogProps | null)?.onHide?.();
return { active: null, props: null };
2025-02-15 15:34:29 +03:00
});
},
showCstTemplate: props => set({ active: DialogType.CONSTITUENTA_TEMPLATE, props: props }),
showCreateCst: props => set({ active: DialogType.CREATE_CONSTITUENTA, props: props }),
showCreateOperation: props => set({ active: DialogType.CREATE_OPERATION, props: props }),
showDeleteCst: props => set({ active: DialogType.DELETE_CONSTITUENTA, props: props }),
showEditEditors: props => set({ active: DialogType.EDIT_EDITORS, props: props }),
showEditOperation: props => set({ active: DialogType.EDIT_OPERATION, props: props }),
showEditReference: props => set({ active: DialogType.EDIT_REFERENCE, props: props }),
showEditVersions: props => set({ active: DialogType.EDIT_VERSIONS, props: props }),
showEditWordForms: props => set({ active: DialogType.EDIT_WORD_FORMS, props: props }),
showInlineSynthesis: props => set({ active: DialogType.INLINE_SYNTHESIS, props: props }),
showShowAST: props => set({ active: DialogType.SHOW_AST, props: props }),
showShowTypeGraph: props => set({ active: DialogType.SHOW_TYPE_GRAPH, props: props }),
showChangeInputSchema: props => set({ active: DialogType.CHANGE_INPUT_SCHEMA, props: props }),
showChangeLocation: props => set({ active: DialogType.CHANGE_LOCATION, props: props }),
showCloneLibraryItem: props => set({ active: DialogType.CLONE_LIBRARY_ITEM, props: props }),
showCreateVersion: props => set({ active: DialogType.CREATE_VERSION, props: props }),
showDeleteOperation: props => set({ active: DialogType.DELETE_OPERATION, props: props }),
showGraphParams: () => set({ active: DialogType.GRAPH_PARAMETERS, props: null }),
showRelocateConstituents: props => set({ active: DialogType.RELOCATE_CONSTITUENTS, props: props }),
showRenameCst: props => set({ active: DialogType.RENAME_CONSTITUENTA, props: props }),
showQR: props => set({ active: DialogType.SHOW_QR_CODE, props: props }),
showSubstituteCst: props => set({ active: DialogType.SUBSTITUTE_CONSTITUENTS, props: props }),
showUploadRSForm: props => set({ active: DialogType.UPLOAD_RSFORM, props: props })
}));