chore(editor): codeDsl由codeBlockService维护,不再从editorService中获取,删除editorService中相关api

This commit is contained in:
roymondchen 2023-03-23 16:42:36 +08:00
parent 36c4ffa02e
commit fa89af920c
8 changed files with 29 additions and 109 deletions

View File

@ -4,8 +4,6 @@
## setCodeDsl ## setCodeDsl
- **[扩展支持](../../guide/editor-expand#行为扩展)** 是
- **参数:** - **参数:**
- -
@ -18,8 +16,6 @@
## getCodeDsl ## getCodeDsl
- **[扩展支持](../../guide/editor-expand#行为扩展)** 是
- **参数:** - **参数:**
- -
@ -30,8 +26,6 @@
- **详情:** - **详情:**
## getCodeDslSync
## getCodeContentById ## getCodeContentById
- **[扩展支持](../../guide/editor-expand#行为扩展)** 是 - **[扩展支持](../../guide/editor-expand#行为扩展)** 是

View File

@ -587,44 +587,6 @@ alignCenter可以支持一次水平居中多个组件alignCenter是通过调
重置当前记录的修改过的节点id记录通常用于保存之后 重置当前记录的修改过的节点id记录通常用于保存之后
## getCodeDsl
- **[扩展支持](../../guide/editor-expand#行为扩展)** 是
- **返回:**
- {Promise<[CodeBlockDSL](https://github.com/Tencent/tmagic-editor/blob/c143a5f7670ae61d80c1a2cfcc780cfb5259849d/packages/schema/src/index.ts#L75) | null>}
- **详情:**
从dsl中的codeBlocks字段读取活动的代码块
## getCodeDslSync
- **返回:**
- [CodeBlockDSL](https://github.com/Tencent/tmagic-editor/blob/c143a5f7670ae61d80c1a2cfcc780cfb5259849d/packages/schema/src/index.ts#L75) | null
- **详情:**
从dsl中的codeBlocks字段读取活动的代码块
## setCodeDsl
- **[扩展支持](../../guide/editor-expand#行为扩展)** 是
- **参数:**
- {[CodeBlockDSL](https://github.com/Tencent/tmagic-editor/blob/c143a5f7670ae61d80c1a2cfcc780cfb5259849d/packages/schema/src/index.ts#L75)} CodeBlockDSL
- **返回:**
- `{Promise<void>}`
- **详情:**
设置代码块到dsl的codeBlocks字段
## resetState ## resetState
- **详情:** - **详情:**

View File

@ -247,6 +247,10 @@ export default defineComponent({
if (toRaw(value) !== toRaw(preValue)) { if (toRaw(value) !== toRaw(preValue)) {
emit('update:modelValue', value); emit('update:modelValue', value);
} }
value.codeBlocks = value.codeBlocks || {};
codeBlockService.setCodeDsl(value.codeBlocks);
}; };
editorService.on('root-change', rootChangeHandler); editorService.on('root-change', rootChangeHandler);

View File

@ -136,7 +136,7 @@ watchEffect(() => {
}); });
const initTableModel = (): void => { const initTableModel = (): void => {
const codeDsl = cloneDeep(services?.codeBlockService.getCodeDslSync()); const codeDsl = cloneDeep(services?.codeBlockService.getCodeDsl());
if (!codeDsl) return; if (!codeDsl) return;
tableModel.value = { tableModel.value = {
params: codeDsl[props.id]?.params || [], params: codeDsl[props.id]?.params || [],

View File

@ -44,7 +44,7 @@ const props = defineProps<{
name: string; name: string;
size: 'mini' | 'small' | 'medium'; size: 'mini' | 'small' | 'medium';
}>(); }>();
const codeDsl = computed(() => services?.codeBlockService.getCodeDslSync()); const codeDsl = computed(() => services?.codeBlockService.getCodeDsl());
const tableConfig = computed<FormItem>(() => { const tableConfig = computed<FormItem>(() => {
const defaultConfig = { const defaultConfig = {

View File

@ -164,7 +164,7 @@ watch(
); );
watch( watch(
[() => services?.codeBlockService.getCodeDslSync(), () => services?.codeBlockService.getCombineInfo()], [() => services?.codeBlockService.getCodeDsl(), () => services?.codeBlockService.getCombineInfo()],
() => { () => {
refreshCodeList(); refreshCodeList();
}, },

View File

@ -41,8 +41,6 @@ class CodeBlock extends BaseService {
constructor() { constructor() {
super([ super([
'setCodeDsl',
'getCodeDsl',
'getCodeContentById', 'getCodeContentById',
'getCodeDslByIds', 'getCodeDslByIds',
'getCurrentDsl', 'getCurrentDsl',
@ -62,7 +60,6 @@ class CodeBlock extends BaseService {
*/ */
public async setCodeDsl(codeDsl: CodeBlockDSL): Promise<void> { public async setCodeDsl(codeDsl: CodeBlockDSL): Promise<void> {
this.state.codeDsl = codeDsl; this.state.codeDsl = codeDsl;
await editorService.setCodeDsl(this.state.codeDsl);
info('[code-block]:code-dsl-change', this.state.codeDsl); info('[code-block]:code-dsl-change', this.state.codeDsl);
this.emit('code-dsl-change', this.state.codeDsl); this.emit('code-dsl-change', this.state.codeDsl);
} }
@ -73,14 +70,7 @@ class CodeBlock extends BaseService {
* @param {boolean} forceRefresh dsl拉取刷新 * @param {boolean} forceRefresh dsl拉取刷新
* @returns {CodeBlockDSL | null} * @returns {CodeBlockDSL | null}
*/ */
public async getCodeDsl(forceRefresh = false): Promise<CodeBlockDSL | null> { public getCodeDsl(): CodeBlockDSL | null {
return this.getCodeDslSync(forceRefresh);
}
public getCodeDslSync(forceRefresh = false): CodeBlockDSL | null {
if (!this.state.codeDsl || forceRefresh) {
this.state.codeDsl = editorService.getCodeDslSync();
}
return this.state.codeDsl; return this.state.codeDsl;
} }
@ -103,31 +93,25 @@ class CodeBlock extends BaseService {
* @returns {void} * @returns {void}
*/ */
public async setCodeDslById(id: Id, codeConfig: CodeBlockContent): Promise<void> { public async setCodeDslById(id: Id, codeConfig: CodeBlockContent): Promise<void> {
let codeDsl = await this.getCodeDsl(); const codeDsl = await this.getCodeDsl();
if (!codeDsl) {
throw new Error('dsl中没有codeBlocks');
}
const codeConfigProcessed = codeConfig; const codeConfigProcessed = codeConfig;
if (codeConfig.content) { if (codeConfig.content) {
// 在保存的时候转换代码内容 // 在保存的时候转换代码内容
// eslint-disable-next-line no-eval // eslint-disable-next-line no-eval
codeConfigProcessed.content = eval(codeConfig.content); codeConfigProcessed.content = eval(codeConfig.content);
} }
if (!codeDsl) {
// dsl中无代码块字段 const existContent = codeDsl[id] || {};
codeDsl = {
[id]: { codeDsl[id] = {
...codeConfigProcessed, ...existContent,
}, ...codeConfigProcessed,
}; };
} else {
const existContent = codeDsl[id] || {};
codeDsl = {
...codeDsl,
[id]: {
...existContent,
...codeConfigProcessed,
},
};
}
await this.setCodeDsl(codeDsl);
} }
/** /**
@ -320,13 +304,15 @@ class CodeBlock extends BaseService {
/** /**
* dsl数据源中删除指定id的代码块 * dsl数据源中删除指定id的代码块
* @param {Id[]} codeIds id数组 * @param {Id[]} codeIds id数组
* @returns {CodeBlockDSL} code dsl
*/ */
public async deleteCodeDslByIds(codeIds: Id[]): Promise<CodeBlockDSL> { public async deleteCodeDslByIds(codeIds: Id[]): Promise<void> {
const currentDsl = await this.getCodeDsl(); const currentDsl = await this.getCodeDsl();
const newDsl = omit(currentDsl, codeIds);
await this.setCodeDsl(newDsl); if (!currentDsl) return;
return newDsl;
codeIds.forEach((id) => {
delete currentDsl[id];
});
} }
/** /**

View File

@ -19,7 +19,7 @@
import { reactive, toRaw } from 'vue'; import { reactive, toRaw } from 'vue';
import { cloneDeep, isObject, mergeWith, uniq } from 'lodash-es'; import { cloneDeep, isObject, mergeWith, uniq } from 'lodash-es';
import type { CodeBlockDSL, Id, MApp, MComponent, MContainer, MNode, MPage } from '@tmagic/schema'; import type { Id, MApp, MComponent, MContainer, MNode, MPage } from '@tmagic/schema';
import { NodeType } from '@tmagic/schema'; import { NodeType } from '@tmagic/schema';
import StageCore from '@tmagic/stage'; import StageCore from '@tmagic/stage';
import { getNodePath, isNumber, isPage, isPop } from '@tmagic/utils'; import { getNodePath, isNumber, isPage, isPop } from '@tmagic/utils';
@ -80,8 +80,6 @@ class Editor extends BaseService {
'undo', 'undo',
'redo', 'redo',
'highlight', 'highlight',
'getCodeDsl',
'setCodeDsl',
], ],
// 需要注意循环依赖问题,如果函数间有相互调用的话,不能设置为串行调用 // 需要注意循环依赖问题,如果函数间有相互调用的话,不能设置为串行调用
['select', 'update', 'moveLayer'], ['select', 'update', 'moveLayer'],
@ -832,30 +830,6 @@ class Editor extends BaseService {
this.get('modifiedNodeIds').clear(); this.get('modifiedNodeIds').clear();
} }
/**
* dsl中的codeBlocks字段读取活动的代码块
* @returns {CodeBlockDSL | null}
*/
public async getCodeDsl(): Promise<CodeBlockDSL | null> {
const root = this.get('root');
return root?.codeBlocks || null;
}
public getCodeDslSync(): CodeBlockDSL | null {
const root = this.get('root');
return root?.codeBlocks || null;
}
/**
* dsl的codeBlocks字段
* @param {CodeBlockDSL} codeDsl DSL
* @returns {void}
*/
public async setCodeDsl(codeDsl: CodeBlockDSL): Promise<void> {
if (!this.state.root) return;
this.state.root.codeBlocks = codeDsl;
}
private addModifiedNodeId(id: Id) { private addModifiedNodeId(id: Id) {
if (!this.isHistoryStateChange) { if (!this.isHistoryStateChange) {
this.get('modifiedNodeIds').set(id, id); this.get('modifiedNodeIds').set(id, id);