fix(editor): 已经配置了的样式无法删除

This commit is contained in:
roymondchen 2025-01-17 19:49:56 +08:00
parent e9c6a3bb2f
commit e8461f91e6
5 changed files with 97 additions and 28 deletions

View File

@ -27,7 +27,7 @@ defineOptions({
name: 'MFieldsStyleSetter', name: 'MFieldsStyleSetter',
}); });
defineProps<FieldProps<StyleSchema>>(); const props = defineProps<FieldProps<StyleSchema>>();
const emit = defineEmits<{ const emit = defineEmits<{
change: [v: any, eventData: ContainerChangeEventData]; change: [v: any, eventData: ContainerChangeEventData];
@ -64,6 +64,9 @@ const collapseValue = shallowRef(
); );
const change = (v: any, eventData: ContainerChangeEventData) => { const change = (v: any, eventData: ContainerChangeEventData) => {
eventData.changeRecords?.forEach((record) => {
record.propPath = `${props.name}.${record.propPath}`;
});
emit('change', v, eventData); emit('change', v, eventData);
}; };
</script> </script>

View File

@ -1,6 +1,6 @@
<template> <template>
<MContainer :config="config" :model="values" @change="change"></MContainer> <MContainer :config="config" :model="values" @change="change"></MContainer>
<Box :model="values" @change="change"></Box> <Box v-show="!['fixed', 'absolute'].includes(values.position)" :model="values" @change="change"></Box>
</template> </template>
<script lang="ts" setup> <script lang="ts" setup>
@ -125,7 +125,7 @@ const config = {
}, },
{ {
name: 'height', name: 'height',
text: '度', text: '度',
labelWidth: '68px', labelWidth: '68px',
type: 'data-source-field-select', type: 'data-source-field-select',
fieldConfig: { fieldConfig: {
@ -135,25 +135,41 @@ const config = {
], ],
}, },
{ {
type: 'data-source-field-select', type: 'row',
text: 'overflow', items: [
name: 'overflow', {
checkStrictly: false, type: 'data-source-field-select',
dataSourceFieldType: ['string'], text: 'overflow',
fieldConfig: { name: 'overflow',
type: 'select', labelWidth: '68px',
clearable: true, checkStrictly: false,
allowCreate: true, dataSourceFieldType: ['string'],
options: [ fieldConfig: {
{ text: 'visible', value: 'visible' }, type: 'select',
{ text: 'hidden', value: 'hidden' }, clearable: true,
{ text: 'clip', value: 'clip' }, allowCreate: true,
{ text: 'scroll', value: 'scroll' }, options: [
{ text: 'auto', value: 'auto' }, { text: 'visible', value: 'visible' },
{ text: 'overlay', value: 'overlay' }, { text: 'hidden', value: 'hidden' },
{ text: 'initial', value: 'initial' }, { text: 'clip', value: 'clip' },
], { text: 'scroll', value: 'scroll' },
}, { text: 'auto', value: 'auto' },
{ text: 'overlay', value: 'overlay' },
{ text: 'initial', value: 'initial' },
],
},
},
{
type: 'data-source-field-select',
text: '透明度',
name: 'opacity',
labelWidth: '68px',
dataSourceFieldType: ['string', 'number'],
fieldConfig: {
type: 'text',
},
},
],
}, },
], ],
}; };

View File

@ -1,15 +1,12 @@
<template> <template>
<MContainer :config="config" :model="values" @change="change"></MContainer> <MContainer :config="config" :model="values" @change="change"></MContainer>
<Position v-show="values['position'] !== 'static'" :model="values" @change="change"></Position>
</template> </template>
<script lang="ts" setup> <script lang="ts" setup>
import { ContainerChangeEventData, MContainer } from '@tmagic/form'; import { ContainerChangeEventData, MContainer } from '@tmagic/form';
import type { StyleSchema } from '@tmagic/schema'; import type { StyleSchema } from '@tmagic/schema';
import Position from '../components/Position.vue'; const props = defineProps<{ values: Partial<StyleSchema> }>();
defineProps<{ values: Partial<StyleSchema> }>();
const emit = defineEmits<{ const emit = defineEmits<{
change: [v: string | StyleSchema, eventData: ContainerChangeEventData]; change: [v: string | StyleSchema, eventData: ContainerChangeEventData];
@ -30,6 +27,52 @@ const config = {
})), })),
}, },
}, },
{
type: 'row',
labelWidth: '68px',
display: () => props.values.position !== 'static',
items: [
{
name: 'left',
type: 'data-source-field-select',
text: 'left',
fieldConfig: {
type: 'text',
},
},
{
name: 'top',
type: 'data-source-field-select',
text: 'top',
fieldConfig: {
type: 'text',
},
},
],
},
{
type: 'row',
labelWidth: '68px',
display: () => props.values.position !== 'static',
items: [
{
name: 'right',
type: 'data-source-field-select',
text: 'right',
fieldConfig: {
type: 'text',
},
},
{
name: 'bottom',
type: 'data-source-field-select',
text: 'bottom',
fieldConfig: {
type: 'text',
},
},
],
},
{ {
labelWidth: '68px', labelWidth: '68px',
name: 'zIndex', name: 'zIndex',

View File

@ -57,9 +57,10 @@ import { computed, inject, onBeforeUnmount, ref, useTemplateRef, watchEffect } f
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';
import type { MNode } from '@tmagic/core'; import { type MNode } from '@tmagic/core';
import { TMagicButton } from '@tmagic/design'; import { TMagicButton } from '@tmagic/design';
import type { ContainerChangeEventData, FormState, FormValue } from '@tmagic/form'; import type { ContainerChangeEventData, FormState, FormValue } from '@tmagic/form';
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';
@ -136,6 +137,12 @@ const submit = async (v: MNode, eventData?: ContainerChangeEventData) => {
newValue.style[key] = value; newValue.style[key] = value;
} }
}); });
eventData?.changeRecords?.forEach((record) => {
if (record.propPath?.startsWith('style') && record.value === '') {
setValueByKeyPath(record.propPath, record.value, newValue);
}
});
} }
services?.editorService.update(newValue, { changeRecords: eventData?.changeRecords }); services?.editorService.update(newValue, { changeRecords: eventData?.changeRecords });

View File

@ -2,7 +2,7 @@
.layout-box-container { .layout-box-container {
position: relative; position: relative;
width: 100%; width: 100%;
height: 150px; height: 130px;
.help-txt { .help-txt {
float: left; float: left;