mirror of
https://github.com/Tencent/tmagic-editor.git
synced 2025-10-04 09:29:59 +08:00
146 lines
3.9 KiB
Vue
146 lines
3.9 KiB
Vue
<template>
|
|
<div class="m-editor" ref="content" style="min-width: 180px">
|
|
<slot name="header"></slot>
|
|
|
|
<slot name="nav"></slot>
|
|
|
|
<slot name="content-before"></slot>
|
|
|
|
<slot name="src-code" v-if="showSrc">
|
|
<CodeEditor class="m-editor-content" :init-values="root" :options="codeOptions" @save="saveCode"></CodeEditor>
|
|
</slot>
|
|
|
|
<SplitView
|
|
v-else
|
|
ref="splitView"
|
|
class="m-editor-content"
|
|
left-class="m-editor-framework-left"
|
|
center-class="m-editor-framework-center"
|
|
right-class="m-editor-framework-right"
|
|
v-model:left="columnWidth.left"
|
|
v-model:right="columnWidth.right"
|
|
:min-left="65"
|
|
:min-right="20"
|
|
:min-center="100"
|
|
@change="columnWidthChange"
|
|
>
|
|
<template #left>
|
|
<slot name="sidebar"></slot>
|
|
</template>
|
|
|
|
<template #center>
|
|
<slot v-if="pageLength > 0" name="workspace"></slot>
|
|
<slot v-else name="empty">
|
|
<AddPageBox></AddPageBox>
|
|
</slot>
|
|
</template>
|
|
|
|
<template v-if="pageLength > 0" #right>
|
|
<TMagicScrollbar>
|
|
<slot name="props-panel"></slot>
|
|
</TMagicScrollbar>
|
|
</template>
|
|
</SplitView>
|
|
|
|
<slot name="content-after"></slot>
|
|
<slot name="footer"></slot>
|
|
</div>
|
|
</template>
|
|
|
|
<script lang="ts" setup>
|
|
import { computed, inject, ref, watch } from 'vue';
|
|
|
|
import { TMagicScrollbar } from '@tmagic/design';
|
|
|
|
import SplitView from '@editor/components/SplitView.vue';
|
|
import type { FrameworkSlots, GetColumnWidth, Services } from '@editor/type';
|
|
import { getConfig } from '@editor/utils/config';
|
|
|
|
import AddPageBox from './AddPageBox.vue';
|
|
import CodeEditor from './CodeEditor.vue';
|
|
|
|
defineSlots<FrameworkSlots>();
|
|
|
|
defineOptions({
|
|
name: 'MEditorFramework',
|
|
});
|
|
|
|
const DEFAULT_LEFT_COLUMN_WIDTH = 310;
|
|
const DEFAULT_RIGHT_COLUMN_WIDTH = 480;
|
|
|
|
const codeOptions = inject('codeOptions', {});
|
|
const { editorService, uiService } = inject<Services>('services') || {};
|
|
|
|
const content = ref<HTMLDivElement>();
|
|
const splitView = ref<InstanceType<typeof SplitView>>();
|
|
|
|
const root = computed(() => editorService?.get('root'));
|
|
|
|
const pageLength = computed(() => editorService?.get('pageLength') || 0);
|
|
const showSrc = computed(() => uiService?.get('showSrc'));
|
|
|
|
const LEFT_COLUMN_WIDTH_STORAGE_KEY = '$MagicEditorLeftColumnWidthData';
|
|
const RIGHT_COLUMN_WIDTH_STORAGE_KEY = '$MagicEditorRightColumnWidthData';
|
|
|
|
const getLeftColumnWidthCacheData = () =>
|
|
Number(globalThis.localStorage.getItem(LEFT_COLUMN_WIDTH_STORAGE_KEY)) || DEFAULT_LEFT_COLUMN_WIDTH;
|
|
|
|
const leftColumnWidthCacheData = getLeftColumnWidthCacheData();
|
|
const RightColumnWidthCacheData =
|
|
Number(globalThis.localStorage.getItem(RIGHT_COLUMN_WIDTH_STORAGE_KEY)) || DEFAULT_RIGHT_COLUMN_WIDTH;
|
|
|
|
const columnWidth = ref<Partial<GetColumnWidth>>({
|
|
left: leftColumnWidthCacheData,
|
|
center: 0,
|
|
right: RightColumnWidthCacheData,
|
|
});
|
|
|
|
watch(
|
|
[pageLength, splitView],
|
|
() => {
|
|
splitView.value?.updateWidth();
|
|
},
|
|
{
|
|
immediate: true,
|
|
},
|
|
);
|
|
|
|
watch(
|
|
() => columnWidth.value.right,
|
|
(right) => {
|
|
if (typeof right === 'undefined') return;
|
|
globalThis.localStorage.setItem(RIGHT_COLUMN_WIDTH_STORAGE_KEY, `${right}`);
|
|
},
|
|
);
|
|
|
|
watch(
|
|
() => columnWidth.value.left,
|
|
(left) => {
|
|
globalThis.localStorage.setItem(LEFT_COLUMN_WIDTH_STORAGE_KEY, `${left}`);
|
|
},
|
|
);
|
|
|
|
watch(
|
|
() => uiService?.get('hideSlideBar'),
|
|
(hideSlideBar) => {
|
|
columnWidth.value.left = hideSlideBar ? 0 : getLeftColumnWidthCacheData();
|
|
},
|
|
);
|
|
|
|
const columnWidthChange = (columnW: GetColumnWidth) => {
|
|
columnWidth.value.left = columnW.left;
|
|
columnWidth.value.center = columnW.center;
|
|
columnWidth.value.right = columnW.right;
|
|
uiService?.set('columnWidth', columnW);
|
|
};
|
|
|
|
const saveCode = (value: string) => {
|
|
try {
|
|
const parseDSL = getConfig('parseDSL');
|
|
editorService?.set('root', parseDSL(value));
|
|
} catch (e: any) {
|
|
console.error(e);
|
|
}
|
|
};
|
|
</script>
|