@@ -53,7 +54,7 @@ import { computed, inject, ref } from 'vue';
import { Aim, Close, Coin, Edit } from '@element-plus/icons-vue';
import { TMagicButton, tMagicMessageBox, TMagicScrollbar, TMagicTooltip, TMagicTree } from '@tmagic/design';
-import { DataSourceSchema } from '@tmagic/schema';
+import { DataSourceSchema, Id } from '@tmagic/schema';
import Icon from '@editor/components/Icon.vue';
import SearchInput from '@editor/components/SearchInput.vue';
@@ -66,7 +67,7 @@ defineOptions({
});
const services = inject
>('services', {});
-const { dataSourceService, depService } = inject('services') || {};
+const { dataSourceService, depService, editorService } = inject('services') || {};
const list = computed(() =>
Object.values(depService?.targets['data-source'] || {}).map((target) => ({
@@ -131,4 +132,19 @@ const tree = ref>();
const filterTextChangeHandler = (val: string) => {
tree.value?.filter(val);
};
+
+// 选中组件
+const selectComp = (compId: Id) => {
+ const stage = editorService?.get('stage');
+ editorService?.select(compId);
+ stage?.select(compId);
+};
+
+const clickHandler = (data: any, node: any) => {
+ if (data.type === 'node') {
+ selectComp(data.id);
+ } else if (data.type === 'key') {
+ selectComp(node.parent.data.id);
+ }
+};
diff --git a/packages/editor/src/services/dep.ts b/packages/editor/src/services/dep.ts
index 9869876b..a74a87d9 100644
--- a/packages/editor/src/services/dep.ts
+++ b/packages/editor/src/services/dep.ts
@@ -262,6 +262,7 @@ export class Watcher extends EventEmitter {
Object.values(this.targets).forEach((targets) => {
Object.values(targets).forEach((target) => {
nodes.forEach((node) => {
+ // 先删除原有依赖,重新收集
target.removeDep(node);
this.collectItem(node, target, deep);
});
diff --git a/packages/editor/src/utils/dep.ts b/packages/editor/src/utils/dep.ts
index 13c44a06..a3581d57 100644
--- a/packages/editor/src/utils/dep.ts
+++ b/packages/editor/src/utils/dep.ts
@@ -11,6 +11,10 @@ export const createCodeBlockTarget = (id: Id, codeBlock: CodeBlockContent) =>
id,
name: codeBlock.name,
isTarget: (key: string | number, value: any) => {
+ if (id === value) {
+ return true;
+ }
+
if (value?.hookType === HookType.CODE && !isEmpty(value.hookData)) {
const index = value.hookData.findIndex((item: HookData) => item.codeId === id);
return Boolean(index > -1);
@@ -25,5 +29,7 @@ export const createDataSourceTarget = (id: Id, ds: DataSourceSchema) =>
type: 'data-source',
id,
name: ds.title || `${id}`,
- isTarget: (key: string | number, value: any) => typeof value === 'string' && value.includes(`${id}`),
+ isTarget: (key: string | number, value: any) =>
+ // 关联数据源对象或者在模板在使用数据源
+ (value.isBindDataSource && value.dataSourceId) || (typeof value === 'string' && value.includes(`${id}`)),
});
diff --git a/packages/form/src/fields/Select.vue b/packages/form/src/fields/Select.vue
index 4773bf84..93580bfd 100644
--- a/packages/form/src/fields/Select.vue
+++ b/packages/form/src/fields/Select.vue
@@ -82,13 +82,17 @@ const equalValue = (value: any, v: any): boolean => {
};
const mapOptions = (data: any[]) => {
- const { option } = props.config;
- const { text } = option;
- const { value } = option;
+ const {
+ option = {
+ text: 'text',
+ value: 'value',
+ },
+ } = props.config;
+ const { text = 'text', value = 'value' } = option;
return data.map((item) => ({
- text: typeof text === 'function' ? text(item) : item[text || 'text'],
- value: typeof value === 'function' ? value(item) : item[value || 'value'],
+ text: typeof text === 'function' ? text(item) : item[text],
+ value: typeof value === 'function' ? value(item) : item[value],
}));
};
@@ -103,8 +107,10 @@ const getOptions = async () => {
let items: SelectOption[] | SelectGroupOption[] = [];
- const { config } = props;
- const { option } = config;
+ const { option } = props.config;
+
+ if (!option) return [];
+
const { root = '', totalKey = 'total' } = option;
let { body = {}, url } = option;
@@ -224,8 +230,10 @@ const getInitLocalOption = async () => {
const getInitOption = async () => {
if (!props.model) return [];
- const { config } = props;
- const { option } = config;
+ const { option } = props.config;
+
+ if (!option) return [];
+
const { root = '', initRoot = '' } = option;
let { initBody = {} } = option;
diff --git a/packages/form/src/schema.ts b/packages/form/src/schema.ts
index c408c9f0..af65dbb7 100644
--- a/packages/form/src/schema.ts
+++ b/packages/form/src/schema.ts
@@ -435,9 +435,9 @@ export interface SelectConfig extends FormItem, Input {
allowCreate?: boolean;
filterable?: boolean;
group?: boolean;
- options: SelectConfigOption[] | SelectConfigGroupOption[] | SelectOptionFunction;
- remote: true;
- option: {
+ options?: SelectConfigOption[] | SelectConfigGroupOption[] | SelectOptionFunction;
+ remote?: true;
+ option?: {
url: string | ((mForm: FormState | undefined, data: { model: any; formValue: any }) => string);
initUrl?: string | ((mForm: FormState | undefined, data: { model: any; formValue: any }) => string);
method?: 'jsonp' | string;
diff --git a/packages/utils/src/index.ts b/packages/utils/src/index.ts
index 97004d10..acd3c93e 100644
--- a/packages/utils/src/index.ts
+++ b/packages/utils/src/index.ts
@@ -243,7 +243,7 @@ export const replaceChildNode = (newNode: MNode, data?: MNode[], parentId?: Id)
};
export const compiledNode = (
- compile: (template: string) => string,
+ compile: (value: any) => any,
node: MNode,
dataSourceDeps: DataSourceDeps = {},
sourceId?: Id,
@@ -263,12 +263,14 @@ export const compiledNode = (
const keyPathLength = keyPath.length;
keyPath.reduce((accumulator, currentValue: any, currentIndex) => {
if (keyPathLength - 1 === currentIndex) {
- if (typeof accumulator[`${keyPrefix}${currentValue}`] === 'undefined') {
- accumulator[`${keyPrefix}${currentValue}`] = accumulator[currentValue];
+ const cacheKey = `${keyPrefix}${currentValue}`;
+
+ if (typeof accumulator[cacheKey] === 'undefined') {
+ accumulator[cacheKey] = accumulator[currentValue];
}
try {
- accumulator[currentValue] = compile(accumulator[`${keyPrefix}${currentValue}`]);
+ accumulator[currentValue] = compile(accumulator[cacheKey]);
} catch (e) {
console.error(e);
accumulator[currentValue] = '';
diff --git a/playground/src/configs/dsl.ts b/playground/src/configs/dsl.ts
index 44825977..c97edf74 100644
--- a/playground/src/configs/dsl.ts
+++ b/playground/src/configs/dsl.ts
@@ -16,6 +16,7 @@
* limitations under the License.
*/
+// @ts-nocheck
export default {
id: '75f0extui9d7yksklx27hff8xg',
name: 'test',
@@ -23,8 +24,9 @@ export default {
codeBlocks: {
code_5336: {
name: 'getData',
- // eslint-disable-next-line no-eval
- content: eval(`({app, params}) => {\n console.log("this is getData function",params,app)\n}`),
+ content: ({ app, params }) => {
+ console.log('this is getData function', params, app);
+ },
params: [
{
name: 'age',
@@ -40,8 +42,9 @@ export default {
},
code_5316: {
name: 'getList',
- // eslint-disable-next-line no-eval
- content: eval(`() => {\n console.log("this is getList function")\n}`),
+ content: () => {
+ console.log('this is getList function');
+ },
params: [],
},
},
@@ -76,8 +79,8 @@ export default {
actionType: 'code', // 联动动作类型
codeId: 'code_5336', // 代码块id
params: {
- age: 12,
- }, // 参数
+ age: 12, // 参数
+ },
},
{
actionType: 'comp',
@@ -206,6 +209,13 @@ export default {
color: '',
fontSize: '',
fontWeight: '',
+ borderWidth: '0',
+ borderColor: '',
+ borderStyle: 'none',
+ transform: {
+ rotate: '',
+ scale: '',
+ },
},
name: '按钮',
text: '${ds_b64c92b5.text}',
@@ -213,8 +223,13 @@ export default {
events: [
{
name: 'magic:common:events:click',
- to: 'overlay_2159',
- method: 'openOverlay',
+ actions: [
+ {
+ actionType: 'comp',
+ to: 'overlay_2159',
+ method: 'openOverlay',
+ },
+ ],
},
],
created: [],
@@ -272,6 +287,13 @@ export default {
color: '',
fontSize: '',
fontWeight: '',
+ borderWidth: '0',
+ borderColor: '',
+ borderStyle: 'none',
+ transform: {
+ rotate: '',
+ scale: '',
+ },
},
name: '按钮',
text: '关闭弹窗',
@@ -279,8 +301,13 @@ export default {
events: [
{
name: 'magic:common:events:click',
- to: 'overlay_2159',
- method: 'closeOverlay',
+ actions: [
+ {
+ actionType: 'comp',
+ to: 'overlay_2159',
+ method: 'closeOverlay',
+ },
+ ],
},
],
created: [],