@tmagic/editor 1.8.0-beta.0 → 1.8.0-beta.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/es/fields/DataSourceFieldSelect/Index.vue_vue_type_script_setup_true_lang.js +11 -2
- package/dist/es/fields/StyleSetter/Index.vue_vue_type_script_setup_true_lang.js +8 -2
- package/dist/es/fields/StyleSetter/components/Border.vue_vue_type_script_setup_true_lang.js +10 -2
- package/dist/es/fields/StyleSetter/components/Box.vue_vue_type_script_setup_true_lang.js +3 -1
- package/dist/es/fields/StyleSetter/pro/Background.vue_vue_type_script_setup_true_lang.js +10 -2
- package/dist/es/fields/StyleSetter/pro/Border.vue_vue_type_script_setup_true_lang.js +16 -3
- package/dist/es/fields/StyleSetter/pro/Font.vue_vue_type_script_setup_true_lang.js +10 -2
- package/dist/es/fields/StyleSetter/pro/Layout.vue_vue_type_script_setup_true_lang.js +14 -2
- package/dist/es/fields/StyleSetter/pro/Position.vue_vue_type_script_setup_true_lang.js +10 -2
- package/dist/es/fields/StyleSetter/pro/Transform.vue_vue_type_script_setup_true_lang.js +10 -2
- package/dist/es/layouts/sidebar/layer/use-node-status.js +37 -3
- package/dist/es/utils/editor.js +1 -1
- package/dist/tmagic-editor.umd.cjs +140 -24
- package/package.json +7 -7
- package/src/fields/DataSourceFieldSelect/Index.vue +8 -1
- package/src/fields/StyleSetter/Index.vue +6 -0
- package/src/fields/StyleSetter/components/Border.vue +15 -1
- package/src/fields/StyleSetter/components/Box.vue +2 -0
- package/src/fields/StyleSetter/pro/Background.vue +15 -1
- package/src/fields/StyleSetter/pro/Border.vue +24 -2
- package/src/fields/StyleSetter/pro/Font.vue +15 -1
- package/src/fields/StyleSetter/pro/Layout.vue +17 -1
- package/src/fields/StyleSetter/pro/Position.vue +15 -1
- package/src/fields/StyleSetter/pro/Transform.vue +15 -1
- package/src/layouts/sidebar/layer/use-node-status.ts +55 -6
- package/src/utils/editor.ts +4 -1
- package/types/index.d.ts +2 -0
|
@@ -1,8 +1,19 @@
|
|
|
1
1
|
<template>
|
|
2
|
-
<MContainer
|
|
2
|
+
<MContainer
|
|
3
|
+
:config="config"
|
|
4
|
+
:model="values"
|
|
5
|
+
:last-values="lastValues"
|
|
6
|
+
:is-compare="isCompare"
|
|
7
|
+
:size="size"
|
|
8
|
+
:disabled="disabled"
|
|
9
|
+
@change="change"
|
|
10
|
+
@add-diff-count="onAddDiffCount"
|
|
11
|
+
></MContainer>
|
|
3
12
|
<Box
|
|
4
13
|
v-show="!['fixed', 'absolute'].includes(values.position)"
|
|
5
14
|
:model="values"
|
|
15
|
+
:last-values="lastValues"
|
|
16
|
+
:is-compare="isCompare"
|
|
6
17
|
:size="size"
|
|
7
18
|
:disabled="disabled"
|
|
8
19
|
@change="change"
|
|
@@ -34,12 +45,15 @@ import {
|
|
|
34
45
|
|
|
35
46
|
defineProps<{
|
|
36
47
|
values: Partial<StyleSchema>;
|
|
48
|
+
lastValues?: Partial<StyleSchema>;
|
|
49
|
+
isCompare?: boolean;
|
|
37
50
|
disabled?: boolean;
|
|
38
51
|
size?: 'large' | 'default' | 'small';
|
|
39
52
|
}>();
|
|
40
53
|
|
|
41
54
|
const emit = defineEmits<{
|
|
42
55
|
change: [v: string | StyleSchema, eventData: ContainerChangeEventData];
|
|
56
|
+
addDiffCount: [];
|
|
43
57
|
}>();
|
|
44
58
|
|
|
45
59
|
const config = defineFormItem({
|
|
@@ -185,4 +199,6 @@ const config = defineFormItem({
|
|
|
185
199
|
const change = (value: string | StyleSchema, eventData: ContainerChangeEventData) => {
|
|
186
200
|
emit('change', value, eventData);
|
|
187
201
|
};
|
|
202
|
+
|
|
203
|
+
const onAddDiffCount = () => emit('addDiffCount');
|
|
188
204
|
</script>
|
|
@@ -1,5 +1,14 @@
|
|
|
1
1
|
<template>
|
|
2
|
-
<MContainer
|
|
2
|
+
<MContainer
|
|
3
|
+
:config="config"
|
|
4
|
+
:model="values"
|
|
5
|
+
:last-values="lastValues"
|
|
6
|
+
:is-compare="isCompare"
|
|
7
|
+
:size="size"
|
|
8
|
+
:disabled="disabled"
|
|
9
|
+
@change="change"
|
|
10
|
+
@add-diff-count="onAddDiffCount"
|
|
11
|
+
></MContainer>
|
|
3
12
|
</template>
|
|
4
13
|
|
|
5
14
|
<script lang="ts" setup>
|
|
@@ -8,12 +17,15 @@ import type { StyleSchema } from '@tmagic/schema';
|
|
|
8
17
|
|
|
9
18
|
const props = defineProps<{
|
|
10
19
|
values: Partial<StyleSchema>;
|
|
20
|
+
lastValues?: Partial<StyleSchema>;
|
|
21
|
+
isCompare?: boolean;
|
|
11
22
|
disabled?: boolean;
|
|
12
23
|
size?: 'large' | 'default' | 'small';
|
|
13
24
|
}>();
|
|
14
25
|
|
|
15
26
|
const emit = defineEmits<{
|
|
16
27
|
change: [v: string | StyleSchema, eventData: ContainerChangeEventData];
|
|
28
|
+
addDiffCount: [];
|
|
17
29
|
}>();
|
|
18
30
|
|
|
19
31
|
const positionText: Record<string, string> = {
|
|
@@ -100,4 +112,6 @@ const config = defineFormItem({
|
|
|
100
112
|
const change = (value: string | StyleSchema, eventData: ContainerChangeEventData) => {
|
|
101
113
|
emit('change', value, eventData);
|
|
102
114
|
};
|
|
115
|
+
|
|
116
|
+
const onAddDiffCount = () => emit('addDiffCount');
|
|
103
117
|
</script>
|
|
@@ -1,5 +1,14 @@
|
|
|
1
1
|
<template>
|
|
2
|
-
<MContainer
|
|
2
|
+
<MContainer
|
|
3
|
+
:config="config"
|
|
4
|
+
:model="values"
|
|
5
|
+
:last-values="lastValues"
|
|
6
|
+
:is-compare="isCompare"
|
|
7
|
+
:size="size"
|
|
8
|
+
:disabled="disabled"
|
|
9
|
+
@change="change"
|
|
10
|
+
@add-diff-count="onAddDiffCount"
|
|
11
|
+
></MContainer>
|
|
3
12
|
</template>
|
|
4
13
|
|
|
5
14
|
<script lang="ts" setup>
|
|
@@ -8,12 +17,15 @@ import type { StyleSchema } from '@tmagic/schema';
|
|
|
8
17
|
|
|
9
18
|
defineProps<{
|
|
10
19
|
values: Partial<StyleSchema>;
|
|
20
|
+
lastValues?: Partial<StyleSchema>;
|
|
21
|
+
isCompare?: boolean;
|
|
11
22
|
disabled?: boolean;
|
|
12
23
|
size?: 'large' | 'default' | 'small';
|
|
13
24
|
}>();
|
|
14
25
|
|
|
15
26
|
const emit = defineEmits<{
|
|
16
27
|
change: [v: StyleSchema, eventData: ContainerChangeEventData];
|
|
28
|
+
addDiffCount: [];
|
|
17
29
|
}>();
|
|
18
30
|
|
|
19
31
|
const config = defineFormItem({
|
|
@@ -51,4 +63,6 @@ const config = defineFormItem({
|
|
|
51
63
|
const change = (value: StyleSchema, eventData: ContainerChangeEventData) => {
|
|
52
64
|
emit('change', value, eventData);
|
|
53
65
|
};
|
|
66
|
+
|
|
67
|
+
const onAddDiffCount = () => emit('addDiffCount');
|
|
54
68
|
</script>
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { computed, onBeforeUnmount, ref, watch } from 'vue';
|
|
2
2
|
|
|
3
|
-
import type { Id, MNode, MPage, MPageFragment } from '@tmagic/core';
|
|
3
|
+
import type { Id, MApp, MNode, MPage, MPageFragment } from '@tmagic/core';
|
|
4
4
|
import { getNodePath, isPage, isPageFragment, traverseNode } from '@tmagic/utils';
|
|
5
5
|
|
|
6
6
|
import type { LayerNodeStatus, Services } from '@editor/type';
|
|
@@ -45,22 +45,70 @@ export const useNodeStatus = ({ editorService }: Services) => {
|
|
|
45
45
|
page.value ? nodeStatusMaps.value.get(page.value.id) : new Map<Id, LayerNodeStatus>(),
|
|
46
46
|
);
|
|
47
47
|
|
|
48
|
-
//
|
|
48
|
+
// 切换页面 / 新增页面 / 整体替换 dsl 后 page 引用变化时,重新生成节点状态。
|
|
49
|
+
//
|
|
50
|
+
// 注意这里 watch 的是 page 引用而不是 page.id:
|
|
51
|
+
// 历史版本恢复 / 外部 modelValue 整体覆盖等场景,新旧 dsl 的 page.id 通常完全
|
|
52
|
+
// 一致,但 page 对象引用是新的、items 也是新的。仅监听 id 会漏掉这类「同 id
|
|
53
|
+
// 不同内容」的替换,导致 nodeStatusMaps 残留旧节点 status,组件树渲染滞留在
|
|
54
|
+
// 旧版本。监听引用可以覆盖普通切页(不同 id)和整体替换(同 id 新引用)两种
|
|
55
|
+
// 情况;同时配合下方 root-change 时清空缓存,避免拿到污染的 initial status。
|
|
49
56
|
watch(
|
|
50
|
-
|
|
51
|
-
(
|
|
52
|
-
if (!
|
|
57
|
+
page,
|
|
58
|
+
(newPage) => {
|
|
59
|
+
if (!newPage?.id) {
|
|
53
60
|
return;
|
|
54
61
|
}
|
|
55
62
|
|
|
56
63
|
// 生成节点状态
|
|
57
|
-
nodeStatusMaps.value.set(
|
|
64
|
+
nodeStatusMaps.value.set(newPage.id, createPageNodeStatus(newPage, nodeStatusMaps.value.get(newPage.id)));
|
|
58
65
|
},
|
|
59
66
|
{
|
|
60
67
|
immediate: true,
|
|
61
68
|
},
|
|
62
69
|
);
|
|
63
70
|
|
|
71
|
+
/**
|
|
72
|
+
* root 整体被替换时(外部 modelValue 变化、历史版本恢复、套件编辑模式进入/退出等):
|
|
73
|
+
* - 仅 watch page 引用还不够,因为 root-change 同步触发时 page 还是旧引用,
|
|
74
|
+
* 等 initService 的异步 IIFE 跑完 editorService.select(...) 后 page 才会
|
|
75
|
+
* 被替换为新 dsl 中的 page;此时上面的 page watch 才会触发重建。
|
|
76
|
+
* - 但若直接同步清空 nodeStatusMaps,会让 nodeStatusMap (computed) 立刻变
|
|
77
|
+
* undefined。上层 LayerPanel 用 `v-if="page && nodeStatusMap"` 渲染组件树,
|
|
78
|
+
* 会瞬间销毁整个面板;若紧接着的异步 select 链路(套件退出等场景)发生
|
|
79
|
+
* 竞态、page 引用未变 / 解析失败,watch(page) 不触发重建,组件树就再也回
|
|
80
|
+
* 不来。
|
|
81
|
+
* - 此外「污染」问题本质来自 createPageNodeStatus 用旧 status 作为新节点
|
|
82
|
+
* initial 值:只要新 root 的 page 是新引用,watch(page) 会触发重建,重建
|
|
83
|
+
* 时基于新 page.items 生成的 map 只会包含新节点 id;旧节点 id 即便残留在
|
|
84
|
+
* initialLayerNodeStatus 中也不会被写入新 map。真正的风险只有「同一 page
|
|
85
|
+
* id 下,新旧 dsl 都存在同一节点 id 但其实是不同节点」这种极端情况——这
|
|
86
|
+
* 在常规业务中不会发生(id 是 uuid)。
|
|
87
|
+
*
|
|
88
|
+
* 综合:root-change 时仅清理「在新 root 中已不存在的 page id」对应缓存,
|
|
89
|
+
* 保留仍然有效的 page status 不动;既避免 v-if 闪断,也不会保留无关 page 的
|
|
90
|
+
* 死缓存。同 page id 的重建交给下方 watch(page) 触发。
|
|
91
|
+
*/
|
|
92
|
+
const rootChangeHandler = (value: MApp | null) => {
|
|
93
|
+
if (!value) {
|
|
94
|
+
nodeStatusMaps.value = new Map();
|
|
95
|
+
return;
|
|
96
|
+
}
|
|
97
|
+
|
|
98
|
+
const validPageIds = new Set<Id>();
|
|
99
|
+
(value.items || []).forEach((p) => {
|
|
100
|
+
if (p?.id !== undefined) validPageIds.add(p.id);
|
|
101
|
+
});
|
|
102
|
+
|
|
103
|
+
for (const cachedPageId of Array.from(nodeStatusMaps.value.keys())) {
|
|
104
|
+
if (!validPageIds.has(cachedPageId)) {
|
|
105
|
+
nodeStatusMaps.value.delete(cachedPageId);
|
|
106
|
+
}
|
|
107
|
+
}
|
|
108
|
+
};
|
|
109
|
+
|
|
110
|
+
editorService.on('root-change', rootChangeHandler);
|
|
111
|
+
|
|
64
112
|
// 选中状态变化,更新节点状态
|
|
65
113
|
watch(
|
|
66
114
|
nodes,
|
|
@@ -111,6 +159,7 @@ export const useNodeStatus = ({ editorService }: Services) => {
|
|
|
111
159
|
editorService.on('remove', removeHandler);
|
|
112
160
|
|
|
113
161
|
onBeforeUnmount(() => {
|
|
162
|
+
editorService.off('root-change', rootChangeHandler);
|
|
114
163
|
editorService.off('remove', removeHandler);
|
|
115
164
|
editorService.off('add', addHandler);
|
|
116
165
|
});
|
package/src/utils/editor.ts
CHANGED
|
@@ -324,11 +324,14 @@ export const fixNodePosition = (config: MNode, parent: MContainer, stage: StageC
|
|
|
324
324
|
};
|
|
325
325
|
|
|
326
326
|
// 序列化配置
|
|
327
|
+
// 仅去掉对象 key 的双引号;字符串值内的 "xxx": 不应被误处理
|
|
328
|
+
// serialize-javascript 在 space: 2 时,每个 key 都会出现在换行 + 空白缩进之后,
|
|
329
|
+
// 因此通过 (^|\n)\s* 锚定行首缩进,避免匹配到字符串值中的 \"xxx\":
|
|
327
330
|
export const serializeConfig = (config: any) =>
|
|
328
331
|
serialize(config, {
|
|
329
332
|
space: 2,
|
|
330
333
|
unsafe: true,
|
|
331
|
-
}).replace(/"(\w+)":\s/g, '$1: ');
|
|
334
|
+
}).replace(/(^|\n)(\s*)"(\w+)":\s/g, '$1$2$3: ');
|
|
332
335
|
|
|
333
336
|
export const moveItemsInContainer = (sourceIndices: number[], parent: MContainer, targetIndex: number) => {
|
|
334
337
|
sourceIndices.sort((a, b) => a - b);
|
package/types/index.d.ts
CHANGED
|
@@ -4169,8 +4169,10 @@ declare const _default$6: typeof __VLS_export$1;
|
|
|
4169
4169
|
type __VLS_Props = FieldProps<StyleSchema>;
|
|
4170
4170
|
declare const __VLS_export: import("@vue/runtime-core").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("@vue/runtime-core").ComponentOptionsMixin, import("@vue/runtime-core").ComponentOptionsMixin, {
|
|
4171
4171
|
change: (v: any, eventData: ContainerChangeEventData) => any;
|
|
4172
|
+
addDiffCount: () => any;
|
|
4172
4173
|
}, string, import("@vue/runtime-core").PublicProps, Readonly<__VLS_Props> & Readonly<{
|
|
4173
4174
|
onChange?: ((v: any, eventData: ContainerChangeEventData) => any) | undefined;
|
|
4175
|
+
onAddDiffCount?: (() => any) | undefined;
|
|
4174
4176
|
}>, {}, {}, {}, {}, string, import("@vue/runtime-core").ComponentProvideOptions, false, {}, any>;
|
|
4175
4177
|
declare const _default$28: typeof __VLS_export;
|
|
4176
4178
|
//#endregion
|