mirror of
https://github.com/Tencent/tmagic-editor.git
synced 2025-04-06 03:57:56 +08:00
fix(editor): 组件配置列大小缓存不生效
This commit is contained in:
parent
900b701c80
commit
6d82c0f730
@ -19,10 +19,10 @@
|
|||||||
right-class="m-editor-framework-right"
|
right-class="m-editor-framework-right"
|
||||||
:left="columnWidth.left"
|
:left="columnWidth.left"
|
||||||
:right="columnWidth.right"
|
:right="columnWidth.right"
|
||||||
:min-left="200"
|
:min-left="MIN_LEFT_COLUMN_WIDTH"
|
||||||
:min-right="300"
|
:min-right="MIN_RIGHT_COLUMN_WIDTH"
|
||||||
:min-center="400"
|
:min-center="MIN_CENTER_COLUMN_WIDTH"
|
||||||
:width="frameworkRect?.width || 0"
|
:width="frameworkRect.width"
|
||||||
@change="columnWidthChange"
|
@change="columnWidthChange"
|
||||||
>
|
>
|
||||||
<template #left>
|
<template #left>
|
||||||
@ -66,11 +66,15 @@ import type { MPage, MPageFragment } from '@tmagic/core';
|
|||||||
|
|
||||||
import SplitView from '@editor/components/SplitView.vue';
|
import SplitView from '@editor/components/SplitView.vue';
|
||||||
import { useServices } from '@editor/hooks/use-services';
|
import { useServices } from '@editor/hooks/use-services';
|
||||||
|
import { Protocol } from '@editor/services/storage';
|
||||||
import type { FrameworkSlots, GetColumnWidth, PageBarSortOptions } from '@editor/type';
|
import type { FrameworkSlots, GetColumnWidth, PageBarSortOptions } from '@editor/type';
|
||||||
import { getEditorConfig } from '@editor/utils/config';
|
import { getEditorConfig } from '@editor/utils/config';
|
||||||
import {
|
import {
|
||||||
DEFAULT_LEFT_COLUMN_WIDTH,
|
DEFAULT_LEFT_COLUMN_WIDTH,
|
||||||
LEFT_COLUMN_WIDTH_STORAGE_KEY,
|
LEFT_COLUMN_WIDTH_STORAGE_KEY,
|
||||||
|
MIN_CENTER_COLUMN_WIDTH,
|
||||||
|
MIN_LEFT_COLUMN_WIDTH,
|
||||||
|
MIN_RIGHT_COLUMN_WIDTH,
|
||||||
RIGHT_COLUMN_WIDTH_STORAGE_KEY,
|
RIGHT_COLUMN_WIDTH_STORAGE_KEY,
|
||||||
} from '@editor/utils/const';
|
} from '@editor/utils/const';
|
||||||
|
|
||||||
@ -91,7 +95,7 @@ defineProps<{
|
|||||||
}>();
|
}>();
|
||||||
|
|
||||||
const codeOptions = inject('codeOptions', {});
|
const codeOptions = inject('codeOptions', {});
|
||||||
const { editorService, uiService } = useServices();
|
const { editorService, uiService, storageService } = useServices();
|
||||||
|
|
||||||
const contentEl = useTemplateRef<HTMLDivElement>('content');
|
const contentEl = useTemplateRef<HTMLDivElement>('content');
|
||||||
const splitViewRef = useTemplateRef<InstanceType<typeof SplitView>>('splitView');
|
const splitViewRef = useTemplateRef<InstanceType<typeof SplitView>>('splitView');
|
||||||
@ -115,14 +119,16 @@ watch(
|
|||||||
...columnWidth.value,
|
...columnWidth.value,
|
||||||
left: hideSlideBar
|
left: hideSlideBar
|
||||||
? 0
|
? 0
|
||||||
: Number(globalThis.localStorage.getItem(LEFT_COLUMN_WIDTH_STORAGE_KEY)) || DEFAULT_LEFT_COLUMN_WIDTH,
|
: storageService.getItem(LEFT_COLUMN_WIDTH_STORAGE_KEY, { protocol: Protocol.NUMBER }) ||
|
||||||
|
DEFAULT_LEFT_COLUMN_WIDTH,
|
||||||
});
|
});
|
||||||
},
|
},
|
||||||
);
|
);
|
||||||
|
|
||||||
const columnWidthChange = (columnW: GetColumnWidth) => {
|
const columnWidthChange = (columnW: GetColumnWidth) => {
|
||||||
globalThis.localStorage.setItem(LEFT_COLUMN_WIDTH_STORAGE_KEY, `${columnW.left}`);
|
storageService.setItem(LEFT_COLUMN_WIDTH_STORAGE_KEY, columnW.left, { protocol: Protocol.NUMBER });
|
||||||
globalThis.localStorage.setItem(RIGHT_COLUMN_WIDTH_STORAGE_KEY, `${columnW.right}`);
|
storageService.setItem(RIGHT_COLUMN_WIDTH_STORAGE_KEY, columnW.right, { protocol: Protocol.NUMBER });
|
||||||
|
|
||||||
uiService.set('columnWidth', columnW);
|
uiService.set('columnWidth', columnW);
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -34,7 +34,9 @@
|
|||||||
<div class="m-editor-props-style-panel-title">
|
<div class="m-editor-props-style-panel-title">
|
||||||
<span>样式</span>
|
<span>样式</span>
|
||||||
<div>
|
<div>
|
||||||
<TMagicButton link size="small" @click="closeStylePanelHandler"><MIcon :icon="Close"></MIcon></TMagicButton>
|
<TMagicButton link size="small" @click="toggleStylePanel(false)"
|
||||||
|
><MIcon :icon="Close"></MIcon
|
||||||
|
></TMagicButton>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
@ -44,7 +46,7 @@
|
|||||||
v-if="showStylePanelToggleButton && !showStylePanel"
|
v-if="showStylePanelToggleButton && !showStylePanel"
|
||||||
class="m-editor-props-panel-style-icon"
|
class="m-editor-props-panel-style-icon"
|
||||||
circle
|
circle
|
||||||
@click="showStylePanelHandler"
|
@click="toggleStylePanel(true)"
|
||||||
>
|
>
|
||||||
<MIcon :icon="Sugar"></MIcon>
|
<MIcon :icon="Sugar"></MIcon>
|
||||||
</TMagicButton>
|
</TMagicButton>
|
||||||
@ -52,7 +54,7 @@
|
|||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script lang="ts" setup>
|
<script lang="ts" setup>
|
||||||
import { computed, onBeforeUnmount, ref, useTemplateRef, watch, watchEffect } from 'vue';
|
import { computed, onBeforeUnmount, onMounted, ref, useTemplateRef, watch, watchEffect } from 'vue';
|
||||||
import { Close, Sugar } from '@element-plus/icons-vue';
|
import { Close, Sugar } from '@element-plus/icons-vue';
|
||||||
import type { OnDrag } from 'gesto';
|
import type { OnDrag } from 'gesto';
|
||||||
|
|
||||||
@ -64,9 +66,10 @@ import { setValueByKeyPath } from '@tmagic/utils';
|
|||||||
import MIcon from '@editor/components/Icon.vue';
|
import MIcon from '@editor/components/Icon.vue';
|
||||||
import Resizer from '@editor/components/Resizer.vue';
|
import Resizer from '@editor/components/Resizer.vue';
|
||||||
import { useServices } from '@editor/hooks/use-services';
|
import { useServices } from '@editor/hooks/use-services';
|
||||||
|
import { Protocol } from '@editor/services/storage';
|
||||||
import type { PropsPanelSlots } from '@editor/type';
|
import type { PropsPanelSlots } from '@editor/type';
|
||||||
import { styleTabConfig } from '@editor/utils';
|
import { styleTabConfig } from '@editor/utils';
|
||||||
import { RIGHT_COLUMN_WIDTH_STORAGE_KEY } from '@editor/utils/const';
|
import { PROPS_PANEL_WIDTH_STORAGE_KEY } from '@editor/utils/const';
|
||||||
|
|
||||||
import FormPanel from './FormPanel.vue';
|
import FormPanel from './FormPanel.vue';
|
||||||
import { useStylePanel } from './use-style-panel';
|
import { useStylePanel } from './use-style-panel';
|
||||||
@ -163,6 +166,14 @@ const mountedHandler = () => {
|
|||||||
};
|
};
|
||||||
|
|
||||||
const propsPanelEl = useTemplateRef('propsPanel');
|
const propsPanelEl = useTemplateRef('propsPanel');
|
||||||
|
const propsPanelWidth = ref(
|
||||||
|
storageService.getItem(PROPS_PANEL_WIDTH_STORAGE_KEY, { protocol: Protocol.NUMBER }) || 300,
|
||||||
|
);
|
||||||
|
|
||||||
|
onMounted(() => {
|
||||||
|
propsPanelEl.value?.style.setProperty('--props-style-panel-width', `${propsPanelWidth.value}px`);
|
||||||
|
});
|
||||||
|
|
||||||
const widthChange = ({ deltaX }: OnDrag) => {
|
const widthChange = ({ deltaX }: OnDrag) => {
|
||||||
if (!propsPanelEl.value) {
|
if (!propsPanelEl.value) {
|
||||||
return;
|
return;
|
||||||
@ -176,45 +187,21 @@ const widthChange = ({ deltaX }: OnDrag) => {
|
|||||||
if (value > uiService.get('columnWidth').right) {
|
if (value > uiService.get('columnWidth').right) {
|
||||||
value = uiService.get('columnWidth').right - 40;
|
value = uiService.get('columnWidth').right - 40;
|
||||||
}
|
}
|
||||||
propsPanelEl.value.style.setProperty('--props-style-panel-width', `${value}px`);
|
propsPanelWidth.value = value;
|
||||||
};
|
};
|
||||||
|
|
||||||
const { showStylePanel, showStylePanelToggleButton, showStylePanelHandler, closeStylePanelHandler } = useStylePanel({
|
watch(propsPanelWidth, (value) => {
|
||||||
storageService,
|
propsPanelEl.value?.style.setProperty('--props-style-panel-width', `${value}px`);
|
||||||
uiService,
|
storageService.setItem(PROPS_PANEL_WIDTH_STORAGE_KEY, value, { protocol: Protocol.NUMBER });
|
||||||
});
|
});
|
||||||
|
|
||||||
watch(showStylePanel, (showStylePanel) => {
|
const { showStylePanel, showStylePanelToggleButton, toggleStylePanel } = useStylePanel(
|
||||||
if (!propsPanelEl.value) {
|
{
|
||||||
return;
|
storageService,
|
||||||
}
|
uiService,
|
||||||
|
},
|
||||||
const columnWidth = {
|
propsPanelWidth,
|
||||||
...uiService.get('columnWidth'),
|
);
|
||||||
};
|
|
||||||
|
|
||||||
const width = globalThis.parseFloat(
|
|
||||||
getComputedStyle(propsPanelEl.value).getPropertyValue('--props-style-panel-width'),
|
|
||||||
);
|
|
||||||
|
|
||||||
if (showStylePanel) {
|
|
||||||
columnWidth.right += width;
|
|
||||||
columnWidth.center -= width;
|
|
||||||
} else {
|
|
||||||
columnWidth.right -= width;
|
|
||||||
columnWidth.center += width;
|
|
||||||
}
|
|
||||||
|
|
||||||
if (columnWidth.center < 0) {
|
|
||||||
columnWidth.right = columnWidth.right + columnWidth.center - 400;
|
|
||||||
columnWidth.center = 400;
|
|
||||||
|
|
||||||
propsPanelEl.value.style.setProperty('--props-style-panel-width', `${columnWidth.right / 2}px`);
|
|
||||||
}
|
|
||||||
|
|
||||||
globalThis.localStorage.setItem(RIGHT_COLUMN_WIDTH_STORAGE_KEY, `${columnWidth.right}`);
|
|
||||||
uiService.set('columnWidth', columnWidth);
|
|
||||||
});
|
|
||||||
|
|
||||||
const propertyFormPanelRef = useTemplateRef<InstanceType<typeof FormPanel>>('propertyFormPanel');
|
const propertyFormPanelRef = useTemplateRef<InstanceType<typeof FormPanel>>('propertyFormPanel');
|
||||||
defineExpose({
|
defineExpose({
|
||||||
|
@ -1,9 +1,13 @@
|
|||||||
import { computed } from 'vue';
|
import { computed, type Ref } from 'vue';
|
||||||
|
|
||||||
import { Protocol } from '@editor/services/storage';
|
import { Protocol } from '@editor/services/storage';
|
||||||
import { Services } from '@editor/type';
|
import { Services } from '@editor/type';
|
||||||
|
import { MIN_CENTER_COLUMN_WIDTH, RIGHT_COLUMN_WIDTH_STORAGE_KEY } from '@editor/utils/const';
|
||||||
|
|
||||||
export const useStylePanel = ({ uiService, storageService }: Pick<Services, 'uiService' | 'storageService'>) => {
|
export const useStylePanel = (
|
||||||
|
{ uiService, storageService }: Pick<Services, 'uiService' | 'storageService'>,
|
||||||
|
propsPanelWidth: Ref<number>,
|
||||||
|
) => {
|
||||||
const showStylePanelStorageKey = 'props-panel-show-style-panel';
|
const showStylePanelStorageKey = 'props-panel-show-style-panel';
|
||||||
const showStylePanelStorageValue = storageService.getItem(showStylePanelStorageKey, {
|
const showStylePanelStorageValue = storageService.getItem(showStylePanelStorageKey, {
|
||||||
protocol: Protocol.BOOLEAN,
|
protocol: Protocol.BOOLEAN,
|
||||||
@ -17,20 +21,36 @@ export const useStylePanel = ({ uiService, storageService }: Pick<Services, 'uiS
|
|||||||
|
|
||||||
const showStylePanelToggleButton = computed(() => uiService.get('frameworkRect').width >= 1280);
|
const showStylePanelToggleButton = computed(() => uiService.get('frameworkRect').width >= 1280);
|
||||||
|
|
||||||
const showStylePanelHandler = () => {
|
const toggleStylePanel = (showStylePanel: boolean) => {
|
||||||
uiService.set('showStylePanel', true);
|
uiService.set('showStylePanel', showStylePanel);
|
||||||
storageService.setItem(showStylePanelStorageKey, true, { protocol: Protocol.BOOLEAN });
|
storageService.setItem(showStylePanelStorageKey, showStylePanel, { protocol: Protocol.BOOLEAN });
|
||||||
};
|
|
||||||
|
|
||||||
const closeStylePanelHandler = () => {
|
const columnWidth = {
|
||||||
uiService.set('showStylePanel', false);
|
...uiService.get('columnWidth'),
|
||||||
storageService.setItem(showStylePanelStorageKey, false, { protocol: Protocol.BOOLEAN });
|
};
|
||||||
|
|
||||||
|
if (showStylePanel) {
|
||||||
|
columnWidth.right += propsPanelWidth.value;
|
||||||
|
columnWidth.center -= propsPanelWidth.value;
|
||||||
|
} else {
|
||||||
|
columnWidth.right -= propsPanelWidth.value;
|
||||||
|
columnWidth.center += propsPanelWidth.value;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (columnWidth.center < 0) {
|
||||||
|
columnWidth.right = columnWidth.right + columnWidth.center - MIN_CENTER_COLUMN_WIDTH;
|
||||||
|
columnWidth.center = MIN_CENTER_COLUMN_WIDTH;
|
||||||
|
|
||||||
|
propsPanelWidth.value = columnWidth.right / 2;
|
||||||
|
}
|
||||||
|
|
||||||
|
storageService.setItem(RIGHT_COLUMN_WIDTH_STORAGE_KEY, columnWidth.right, { protocol: Protocol.NUMBER });
|
||||||
|
uiService.set('columnWidth', columnWidth);
|
||||||
};
|
};
|
||||||
|
|
||||||
return {
|
return {
|
||||||
showStylePanel,
|
showStylePanel,
|
||||||
showStylePanelToggleButton,
|
showStylePanelToggleButton,
|
||||||
showStylePanelHandler,
|
toggleStylePanel,
|
||||||
closeStylePanelHandler,
|
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
@ -31,6 +31,7 @@ import {
|
|||||||
} from '@editor/utils/const';
|
} from '@editor/utils/const';
|
||||||
|
|
||||||
import BaseService from './BaseService';
|
import BaseService from './BaseService';
|
||||||
|
import storageService, { Protocol } from './storage';
|
||||||
|
|
||||||
const state = shallowReactive<UiState>({
|
const state = shallowReactive<UiState>({
|
||||||
uiSelectMode: false,
|
uiSelectMode: false,
|
||||||
@ -46,9 +47,12 @@ const state = shallowReactive<UiState>({
|
|||||||
height: 817,
|
height: 817,
|
||||||
},
|
},
|
||||||
columnWidth: {
|
columnWidth: {
|
||||||
left: Number(globalThis.localStorage.getItem(LEFT_COLUMN_WIDTH_STORAGE_KEY)) || DEFAULT_LEFT_COLUMN_WIDTH,
|
left:
|
||||||
|
storageService.getItem(LEFT_COLUMN_WIDTH_STORAGE_KEY, { protocol: Protocol.NUMBER }) || DEFAULT_LEFT_COLUMN_WIDTH,
|
||||||
center: 0,
|
center: 0,
|
||||||
right: Number(globalThis.localStorage.getItem(RIGHT_COLUMN_WIDTH_STORAGE_KEY)) || DEFAULT_RIGHT_COLUMN_WIDTH,
|
right:
|
||||||
|
storageService.getItem(RIGHT_COLUMN_WIDTH_STORAGE_KEY, { protocol: Protocol.NUMBER }) ||
|
||||||
|
DEFAULT_RIGHT_COLUMN_WIDTH,
|
||||||
},
|
},
|
||||||
showGuides: true,
|
showGuides: true,
|
||||||
showRule: true,
|
showRule: true,
|
||||||
|
@ -3,9 +3,14 @@ export const UI_SELECT_MODE_EVENT_NAME = 'ui-select';
|
|||||||
|
|
||||||
export const LEFT_COLUMN_WIDTH_STORAGE_KEY = '$MagicEditorLeftColumnWidthData';
|
export const LEFT_COLUMN_WIDTH_STORAGE_KEY = '$MagicEditorLeftColumnWidthData';
|
||||||
export const RIGHT_COLUMN_WIDTH_STORAGE_KEY = '$MagicEditorRightColumnWidthData';
|
export const RIGHT_COLUMN_WIDTH_STORAGE_KEY = '$MagicEditorRightColumnWidthData';
|
||||||
|
export const PROPS_PANEL_WIDTH_STORAGE_KEY = '$MagicEditorPropsPanelWidthData';
|
||||||
|
|
||||||
export const DEFAULT_LEFT_COLUMN_WIDTH = 310;
|
export const DEFAULT_LEFT_COLUMN_WIDTH = 310;
|
||||||
export const DEFAULT_RIGHT_COLUMN_WIDTH = 480;
|
export const DEFAULT_RIGHT_COLUMN_WIDTH = 480;
|
||||||
|
|
||||||
|
export const MIN_LEFT_COLUMN_WIDTH = 200;
|
||||||
|
export const MIN_CENTER_COLUMN_WIDTH = 400;
|
||||||
|
export const MIN_RIGHT_COLUMN_WIDTH = 300;
|
||||||
|
|
||||||
export const H_GUIDE_LINE_STORAGE_KEY = '$MagicStageHorizontalGuidelinesData';
|
export const H_GUIDE_LINE_STORAGE_KEY = '$MagicStageHorizontalGuidelinesData';
|
||||||
export const V_GUIDE_LINE_STORAGE_KEY = '$MagicStageVerticalGuidelinesData';
|
export const V_GUIDE_LINE_STORAGE_KEY = '$MagicStageVerticalGuidelinesData';
|
||||||
|
Loading…
x
Reference in New Issue
Block a user