mirror of
https://github.com/Tencent/tmagic-editor.git
synced 2025-04-06 03:57:56 +08:00
fix(editor): 修复第一次打开编辑器左右边栏宽度可能为0问题
This commit is contained in:
parent
62e7888fcf
commit
36a1a18615
@ -21,7 +21,7 @@
|
|||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script lang="ts" setup>
|
<script lang="ts" setup>
|
||||||
import { computed, onBeforeUnmount, onMounted, ref } from 'vue';
|
import { computed, onBeforeUnmount, onMounted, ref, watchEffect } from 'vue';
|
||||||
import { OnDrag } from 'gesto';
|
import { OnDrag } from 'gesto';
|
||||||
|
|
||||||
import Resizer from './Resizer.vue';
|
import Resizer from './Resizer.vue';
|
||||||
@ -34,6 +34,7 @@ const emit = defineEmits(['update:left', 'change', 'update:right']);
|
|||||||
|
|
||||||
const props = withDefaults(
|
const props = withDefaults(
|
||||||
defineProps<{
|
defineProps<{
|
||||||
|
width?: number;
|
||||||
left?: number;
|
left?: number;
|
||||||
right?: number;
|
right?: number;
|
||||||
minLeft?: number;
|
minLeft?: number;
|
||||||
@ -54,8 +55,11 @@ const el = ref<HTMLElement>();
|
|||||||
|
|
||||||
const hasLeft = computed(() => typeof props.left !== 'undefined');
|
const hasLeft = computed(() => typeof props.left !== 'undefined');
|
||||||
const hasRight = computed(() => typeof props.right !== 'undefined');
|
const hasRight = computed(() => typeof props.right !== 'undefined');
|
||||||
|
const center = ref(0);
|
||||||
|
|
||||||
const getCenterWidth = (clientWidth: number, l = 0, r = 0) => {
|
let clientWidth = 0;
|
||||||
|
|
||||||
|
const getCenterWidth = (l = 0, r = 0) => {
|
||||||
let right = r > 0 ? r : 0;
|
let right = r > 0 ? r : 0;
|
||||||
let left = l > 0 ? l : 0;
|
let left = l > 0 ? l : 0;
|
||||||
let center = clientWidth - left - right;
|
let center = clientWidth - left - right;
|
||||||
@ -76,45 +80,51 @@ const getCenterWidth = (clientWidth: number, l = 0, r = 0) => {
|
|||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
let clientWidth = 0;
|
const widthChange = (width: number) => {
|
||||||
const resizerObserver = new ResizeObserver((entries) => {
|
if (width <= 0) {
|
||||||
for (const { contentRect } of entries) {
|
return;
|
||||||
clientWidth = contentRect.width;
|
|
||||||
|
|
||||||
let left = props.left || 0;
|
|
||||||
let right = props.right || 0;
|
|
||||||
|
|
||||||
if (left > clientWidth) {
|
|
||||||
left = clientWidth / 3;
|
|
||||||
}
|
|
||||||
|
|
||||||
if (right > clientWidth) {
|
|
||||||
right = clientWidth / 3;
|
|
||||||
}
|
|
||||||
|
|
||||||
const columnWidth = getCenterWidth(clientWidth, left, right);
|
|
||||||
|
|
||||||
center.value = columnWidth.center;
|
|
||||||
|
|
||||||
emit('change', {
|
|
||||||
left: columnWidth.left,
|
|
||||||
center: center.value,
|
|
||||||
right: columnWidth.right,
|
|
||||||
});
|
|
||||||
}
|
}
|
||||||
});
|
|
||||||
|
|
||||||
onMounted(() => {
|
clientWidth = width;
|
||||||
if (el.value) {
|
let left = props.left || 0;
|
||||||
resizerObserver.observe(el.value);
|
let right = props.right || 0;
|
||||||
|
|
||||||
|
if (left > clientWidth) {
|
||||||
|
left = clientWidth / 3;
|
||||||
}
|
}
|
||||||
});
|
|
||||||
|
|
||||||
onBeforeUnmount(() => {
|
if (right > clientWidth) {
|
||||||
resizerObserver.disconnect();
|
right = clientWidth / 3;
|
||||||
});
|
}
|
||||||
|
|
||||||
const center = ref(0);
|
const columnWidth = getCenterWidth(left, right);
|
||||||
|
|
||||||
|
center.value = columnWidth.center;
|
||||||
|
|
||||||
|
emit('change', columnWidth);
|
||||||
|
};
|
||||||
|
|
||||||
|
if (typeof props.width !== 'number') {
|
||||||
|
const resizerObserver = new ResizeObserver((entries) => {
|
||||||
|
for (const { contentRect } of entries) {
|
||||||
|
widthChange(contentRect.width);
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
|
onMounted(() => {
|
||||||
|
if (el.value) {
|
||||||
|
resizerObserver.observe(el.value);
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
|
onBeforeUnmount(() => {
|
||||||
|
resizerObserver.disconnect();
|
||||||
|
});
|
||||||
|
} else {
|
||||||
|
watchEffect(() => {
|
||||||
|
if (typeof props.width === 'number') widthChange(props.width);
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
const changeLeft = ({ deltaX }: OnDrag) => {
|
const changeLeft = ({ deltaX }: OnDrag) => {
|
||||||
if (typeof props.left === 'undefined') return;
|
if (typeof props.left === 'undefined') return;
|
||||||
@ -125,7 +135,7 @@ const changeLeft = ({ deltaX }: OnDrag) => {
|
|||||||
left = props.left;
|
left = props.left;
|
||||||
}
|
}
|
||||||
|
|
||||||
const columnWidth = getCenterWidth(clientWidth, left, props.right || 0);
|
const columnWidth = getCenterWidth(left, props.right || 0);
|
||||||
|
|
||||||
center.value = columnWidth.center;
|
center.value = columnWidth.center;
|
||||||
|
|
||||||
@ -145,7 +155,7 @@ const changeRight = ({ deltaX }: OnDrag) => {
|
|||||||
right = props.right;
|
right = props.right;
|
||||||
}
|
}
|
||||||
|
|
||||||
const columnWidth = getCenterWidth(clientWidth, props.left, right);
|
const columnWidth = getCenterWidth(props.left, right);
|
||||||
|
|
||||||
center.value = columnWidth.center;
|
center.value = columnWidth.center;
|
||||||
|
|
||||||
@ -158,7 +168,8 @@ const changeRight = ({ deltaX }: OnDrag) => {
|
|||||||
|
|
||||||
defineExpose({
|
defineExpose({
|
||||||
updateWidth() {
|
updateWidth() {
|
||||||
const columnWidth = getCenterWidth(el.value?.clientWidth || clientWidth, props.left, props.right);
|
clientWidth = props.width ?? el.value?.clientWidth ?? clientWidth;
|
||||||
|
const columnWidth = getCenterWidth(props.left, props.right);
|
||||||
|
|
||||||
emit('change', {
|
emit('change', {
|
||||||
left: columnWidth.left,
|
left: columnWidth.left,
|
||||||
|
@ -24,6 +24,7 @@
|
|||||||
:min-left="65"
|
:min-left="65"
|
||||||
:min-right="20"
|
:min-right="20"
|
||||||
:min-center="100"
|
:min-center="100"
|
||||||
|
:width="frameworkRect?.width || 0"
|
||||||
@change="columnWidthChange"
|
@change="columnWidthChange"
|
||||||
>
|
>
|
||||||
<template #left>
|
<template #left>
|
||||||
@ -57,7 +58,7 @@
|
|||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script lang="ts" setup>
|
<script lang="ts" setup>
|
||||||
import { computed, inject, ref, watch } from 'vue';
|
import { computed, inject, onBeforeUnmount, onMounted, ref, watch } from 'vue';
|
||||||
|
|
||||||
import { TMagicScrollbar } from '@tmagic/design';
|
import { TMagicScrollbar } from '@tmagic/design';
|
||||||
|
|
||||||
@ -101,40 +102,15 @@ const RIGHT_COLUMN_WIDTH_STORAGE_KEY = '$MagicEditorRightColumnWidthData';
|
|||||||
const getLeftColumnWidthCacheData = () =>
|
const getLeftColumnWidthCacheData = () =>
|
||||||
Number(globalThis.localStorage.getItem(LEFT_COLUMN_WIDTH_STORAGE_KEY)) || DEFAULT_LEFT_COLUMN_WIDTH;
|
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>>({
|
const columnWidth = ref<Partial<GetColumnWidth>>({
|
||||||
left: leftColumnWidthCacheData,
|
left: getLeftColumnWidthCacheData(),
|
||||||
center: 0,
|
center: 0,
|
||||||
right: RightColumnWidthCacheData,
|
right: Number(globalThis.localStorage.getItem(RIGHT_COLUMN_WIDTH_STORAGE_KEY)) || DEFAULT_RIGHT_COLUMN_WIDTH,
|
||||||
});
|
});
|
||||||
|
|
||||||
watch(
|
watch(pageLength, () => {
|
||||||
[pageLength, splitView],
|
splitView.value?.updateWidth();
|
||||||
() => {
|
});
|
||||||
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(
|
watch(
|
||||||
() => uiService?.get('hideSlideBar'),
|
() => uiService?.get('hideSlideBar'),
|
||||||
@ -144,12 +120,35 @@ watch(
|
|||||||
);
|
);
|
||||||
|
|
||||||
const columnWidthChange = (columnW: GetColumnWidth) => {
|
const columnWidthChange = (columnW: GetColumnWidth) => {
|
||||||
columnWidth.value.left = columnW.left;
|
columnWidth.value = columnW;
|
||||||
columnWidth.value.center = columnW.center;
|
|
||||||
columnWidth.value.right = columnW.right;
|
globalThis.localStorage.setItem(LEFT_COLUMN_WIDTH_STORAGE_KEY, `${columnW.left}`);
|
||||||
|
globalThis.localStorage.setItem(RIGHT_COLUMN_WIDTH_STORAGE_KEY, `${columnW.right}`);
|
||||||
uiService?.set('columnWidth', columnW);
|
uiService?.set('columnWidth', columnW);
|
||||||
};
|
};
|
||||||
|
|
||||||
|
const frameworkRect = computed(() => uiService?.get('frameworkRect'));
|
||||||
|
|
||||||
|
const resizerObserver = new ResizeObserver((entries) => {
|
||||||
|
const { contentRect } = entries[0];
|
||||||
|
uiService?.set('frameworkRect', {
|
||||||
|
width: contentRect.width,
|
||||||
|
height: contentRect.height,
|
||||||
|
left: contentRect.left,
|
||||||
|
top: contentRect.top,
|
||||||
|
});
|
||||||
|
});
|
||||||
|
|
||||||
|
onMounted(() => {
|
||||||
|
if (content.value) {
|
||||||
|
resizerObserver.observe(content.value);
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
|
onBeforeUnmount(() => {
|
||||||
|
resizerObserver.disconnect();
|
||||||
|
});
|
||||||
|
|
||||||
const saveCode = (value: string) => {
|
const saveCode = (value: string) => {
|
||||||
try {
|
try {
|
||||||
const parseDSL = getConfig('parseDSL');
|
const parseDSL = getConfig('parseDSL');
|
||||||
|
@ -54,6 +54,12 @@ const state = reactive<UiState>({
|
|||||||
width: 0,
|
width: 0,
|
||||||
height: 0,
|
height: 0,
|
||||||
},
|
},
|
||||||
|
frameworkRect: {
|
||||||
|
width: 0,
|
||||||
|
height: 0,
|
||||||
|
left: 0,
|
||||||
|
top: 0,
|
||||||
|
},
|
||||||
});
|
});
|
||||||
|
|
||||||
const canUsePluginMethods = {
|
const canUsePluginMethods = {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user