mirror of
https://github.com/DeNNiiInc/dbgate.git
synced 2026-04-20 10:06:00 +00:00
177 lines
5.1 KiB
Svelte
177 lines
5.1 KiB
Svelte
<script lang="ts" context="module">
|
|
const getCurrentEditor = () => getActiveComponent('DiagramTab');
|
|
|
|
registerFileCommands({
|
|
idPrefix: 'diagram',
|
|
category: __t('command.diagram', { defaultMessage: 'Diagram' }),
|
|
getCurrentEditor,
|
|
folder: 'diagrams',
|
|
format: 'json',
|
|
fileExtension: 'diagram',
|
|
defaultTeamFolder: true,
|
|
|
|
undoRedo: true,
|
|
});
|
|
</script>
|
|
|
|
<script lang="ts">
|
|
import useEditorData from '../query/useEditorData';
|
|
import { registerFileCommands } from '../commands/stdCommands';
|
|
import createUndoReducer from '../utility/createUndoReducer';
|
|
import _ from 'lodash';
|
|
import createActivator, { getActiveComponent } from '../utility/createActivator';
|
|
import DiagramDesigner from '../designer/DiagramDesigner.svelte';
|
|
import ToolStripContainer from '../buttons/ToolStripContainer.svelte';
|
|
import ToolStripCommandButton from '../buttons/ToolStripCommandButton.svelte';
|
|
import invalidateCommands from '../commands/invalidateCommands';
|
|
import ToolStripSaveButton from '../buttons/ToolStripSaveButton.svelte';
|
|
import HorizontalSplitter from '../elements/HorizontalSplitter.svelte';
|
|
import WidgetColumnBar from '../widgets/WidgetColumnBar.svelte';
|
|
import WidgetColumnBarItem from '../widgets/WidgetColumnBarItem.svelte';
|
|
import WidgetsInnerContainer from '../widgets/WidgetsInnerContainer.svelte';
|
|
import ToolStripButton from '../buttons/ToolStripButton.svelte';
|
|
import DiagramSettings from '../designer/DiagramSettings.svelte';
|
|
import { derived } from 'svelte/store';
|
|
import { isProApp } from '../utility/proTools';
|
|
import { __t } from '../translations';
|
|
|
|
export let tabid;
|
|
export let conid;
|
|
export let database;
|
|
|
|
let tableCounts = {};
|
|
|
|
export const activator = createActivator('DiagramTab', true);
|
|
|
|
$: setEditorData($modelState.value);
|
|
|
|
export function getTabId() {
|
|
return tabid;
|
|
}
|
|
|
|
export function getData() {
|
|
return $editorState.value || '';
|
|
}
|
|
|
|
export function canUndo() {
|
|
return $modelState.canUndo;
|
|
}
|
|
|
|
export function undo() {
|
|
dispatchModel({ type: 'undo' });
|
|
invalidateCommands();
|
|
}
|
|
|
|
export function canRedo() {
|
|
return $modelState.canRedo;
|
|
}
|
|
|
|
export function redo() {
|
|
dispatchModel({ type: 'redo' });
|
|
invalidateCommands();
|
|
}
|
|
|
|
const handleChange = (value, skipUndoChain) => {
|
|
// @ts-ignore
|
|
dispatchModel({
|
|
type: 'compute',
|
|
useMerge: skipUndoChain,
|
|
compute: v => (_.isFunction(value) ? value(v) : value),
|
|
});
|
|
invalidateCommands();
|
|
};
|
|
|
|
const { editorState, editorValue, setEditorData } = useEditorData({
|
|
tabid,
|
|
onInitialData: value => {
|
|
dispatchModel({ type: 'reset', value });
|
|
invalidateCommands();
|
|
},
|
|
});
|
|
|
|
const [modelState, dispatchModel] = createUndoReducer({
|
|
tables: [],
|
|
references: [],
|
|
});
|
|
|
|
const setStyle = style =>
|
|
// @ts-ignore
|
|
dispatchModel({
|
|
type: 'compute',
|
|
compute: v => ({ ...v, style: _.isFunction(style) ? style(v.style) : style }),
|
|
});
|
|
|
|
const styleDerivedStore = derived(modelState, ($modelState: any) =>
|
|
$modelState.value ? $modelState.value.style || {} : {}
|
|
);
|
|
const styleStore = {
|
|
...styleDerivedStore,
|
|
update: setStyle,
|
|
set: setStyle,
|
|
};
|
|
|
|
function createMenu() {
|
|
return [
|
|
{ command: 'diagram.save' },
|
|
{ command: 'diagram.saveAs' },
|
|
{ command: 'designer.arrange' },
|
|
{ command: 'diagram.export' },
|
|
{ divider: true },
|
|
{ command: 'diagram.undo' },
|
|
{ command: 'diagram.redo' },
|
|
];
|
|
}
|
|
|
|
function handleReportCounts(counts) {
|
|
tableCounts = counts;
|
|
}
|
|
</script>
|
|
|
|
<ToolStripContainer>
|
|
<HorizontalSplitter isSplitter={isProApp() ? ($styleStore.settingsVisible ?? true) : false} initialSizeRight={300}>
|
|
<svelte:fragment slot="1">
|
|
<DiagramDesigner
|
|
value={$modelState.value || {}}
|
|
{conid}
|
|
{database}
|
|
onChange={handleChange}
|
|
menu={createMenu}
|
|
columnFilter={$styleStore.columnFilter}
|
|
onReportCounts={handleReportCounts}
|
|
/>
|
|
</svelte:fragment>
|
|
<svelte:fragment slot="2">
|
|
<WidgetColumnBar storageName="diagramSettingsWidget">
|
|
<WidgetColumnBarItem
|
|
title="Settings"
|
|
name="diagramSettings"
|
|
onClose={() => {
|
|
styleStore.update(x => ({ ...x, settingsVisible: false }));
|
|
}}
|
|
>
|
|
<WidgetsInnerContainer skipDefineWidth>
|
|
<DiagramSettings values={styleStore} {tableCounts} />
|
|
</WidgetsInnerContainer>
|
|
</WidgetColumnBarItem>
|
|
</WidgetColumnBar>
|
|
</svelte:fragment>
|
|
</HorizontalSplitter>
|
|
|
|
<svelte:fragment slot="toolstrip">
|
|
<ToolStripCommandButton command="designer.arrange" />
|
|
<ToolStripSaveButton idPrefix="diagram" />
|
|
<ToolStripCommandButton command="diagram.export" />
|
|
<ToolStripCommandButton command="diagram.undo" />
|
|
<ToolStripCommandButton command="diagram.redo" />
|
|
<ToolStripCommandButton command="diagram.deleteSelectedTables" />
|
|
{#if isProApp()}
|
|
<ToolStripButton
|
|
icon="icon settings"
|
|
on:click={() => {
|
|
styleStore.update(x => ({ ...x, settingsVisible: !x.settingsVisible }));
|
|
}}>Settings</ToolStripButton
|
|
>
|
|
{/if}
|
|
</svelte:fragment>
|
|
</ToolStripContainer>
|