mirror of
https://github.com/Tencent/tmagic-editor.git
synced 2025-04-05 07:27:09 +08:00
fix(editor): 样式配置宽度不能为负
This commit is contained in:
parent
f5315122e4
commit
775fcf5693
@ -171,7 +171,7 @@ const propsPanelWidth = ref(
|
||||
);
|
||||
|
||||
onMounted(() => {
|
||||
propsPanelEl.value?.style.setProperty('--props-style-panel-width', `${propsPanelWidth.value}px`);
|
||||
propsPanelEl.value?.style.setProperty('--props-style-panel-width', `${Math.max(propsPanelWidth.value, 0)}px`);
|
||||
});
|
||||
|
||||
const widthChange = ({ deltaX }: OnDrag) => {
|
||||
@ -187,7 +187,7 @@ const widthChange = ({ deltaX }: OnDrag) => {
|
||||
if (value > uiService.get('columnWidth').right) {
|
||||
value = uiService.get('columnWidth').right - 40;
|
||||
}
|
||||
propsPanelWidth.value = value;
|
||||
propsPanelWidth.value = Math.max(value, 0);
|
||||
};
|
||||
|
||||
watch(propsPanelWidth, (value) => {
|
||||
|
@ -1,4 +1,4 @@
|
||||
import { computed, type Ref } from 'vue';
|
||||
import { computed, type Ref, watch } from 'vue';
|
||||
|
||||
import { Protocol } from '@editor/services/storage';
|
||||
import { Services } from '@editor/type';
|
||||
@ -21,6 +21,15 @@ export const useStylePanel = (
|
||||
|
||||
const showStylePanelToggleButton = computed(() => uiService.get('frameworkRect').width >= 1280);
|
||||
|
||||
watch(
|
||||
() => uiService.get('frameworkRect').width,
|
||||
() => {
|
||||
if (uiService.get('columnWidth').right < propsPanelWidth.value) {
|
||||
toggleStylePanel(false);
|
||||
}
|
||||
},
|
||||
);
|
||||
|
||||
const toggleStylePanel = (showStylePanel: boolean) => {
|
||||
uiService.set('showStylePanel', showStylePanel);
|
||||
storageService.setItem(showStylePanelStorageKey, showStylePanel, { protocol: Protocol.BOOLEAN });
|
||||
|
Loading…
x
Reference in New Issue
Block a user