fix(core,data-source): 事件参数中关联数据源字段无法自动更新

This commit is contained in:
roymondchen 2024-05-09 17:01:34 +08:00
parent 708d3db4bb
commit c665bf3ccc
5 changed files with 58 additions and 13 deletions

View File

@ -263,10 +263,10 @@ class App extends EventEmitter implements AppCore {
if (!this.page) return;
for (const [, value] of this.page.nodes) {
value.events?.forEach((event) => {
value.events?.forEach((event, index) => {
const eventName = `${event.name}_${value.data.id}`;
const eventHandler = (fromCpt: Node, ...args: any[]) => {
this.eventHandler(event, fromCpt, args);
this.eventHandler(index, fromCpt, args);
};
this.eventList.set(eventHandler, eventName);
this.on(eventName, eventHandler);
@ -358,15 +358,18 @@ class App extends EventEmitter implements AppCore {
/**
*
* @param eventConfig
* @param eventsConfigIndex node.event中获取最新事件配置
* @param fromCpt
* @param args
*/
private async eventHandler(eventConfig: EventConfig | DeprecatedEventConfig, fromCpt: any, args: any[]) {
private async eventHandler(eventsConfigIndex: number, fromCpt: Node, args: any[]) {
const eventConfig = fromCpt.events[eventsConfigIndex] as EventConfig | DeprecatedEventConfig;
if (has(eventConfig, 'actions')) {
// EventConfig类型
const { actions } = eventConfig as EventConfig;
for (const actionItem of actions) {
for (let i = 0; i < actions.length; i++) {
// 事件响应中可能会有修改数据源数据的会更新dsl所以这里需要重新获取
const actionItem = (fromCpt.events[eventsConfigIndex] as EventConfig).actions[i];
if (actionItem.actionType === ActionType.COMP) {
// 组件动作
await this.compActionHandler(actionItem as CompItemConfig, fromCpt, args);

View File

@ -41,11 +41,11 @@ interface NodeOptions {
app: App;
}
class Node extends EventEmitter {
public data: MComponent | MContainer | MPage | MPageFragment;
public data!: MComponent | MContainer | MPage | MPageFragment;
public style?: {
[key: string]: any;
};
public events: DeprecatedEventConfig[] | EventConfig[];
public events: DeprecatedEventConfig[] | EventConfig[] = [];
public instance?: any;
public page?: Page;
public parent?: Node;
@ -58,14 +58,15 @@ class Node extends EventEmitter {
this.page = options.page;
this.parent = options.parent;
this.app = options.app;
const { events } = options.config;
this.data = options.config;
this.events = events || [];
this.setData(options.config);
this.listenLifeSafe();
}
public setData(data: MComponent | MContainer | MPage | MPageFragment) {
this.data = data;
const { events, style } = data;
this.events = events || [];
this.style = style || {};
this.emit('update-data');
}

View File

@ -32,7 +32,9 @@ class Page extends Node {
super(options);
this.setNode(options.config.id, this);
this.initNode(options.config, this);
options.config.items.forEach((config) => {
this.initNode(config, this);
});
}
public initNode(config: MComponent | MContainer, parent: Node) {

View File

@ -18,7 +18,7 @@
import { union } from 'lodash-es';
import type { AppCore } from '@tmagic/schema';
import { getDepNodeIds, getNodes } from '@tmagic/utils';
import { getDepNodeIds, getNodes, isPage } from '@tmagic/utils';
import DataSourceManager from './DataSourceManager';
import type { ChangeEvent, DataSourceManagerData } from './types';
@ -66,7 +66,18 @@ export const createDataSourceManager = (app: AppCore, useMock?: boolean, initial
node.condResult = dataSourceManager.compliedConds(node);
}
return dataSourceManager.compiledNode(node);
const newNode = dataSourceManager.compiledNode(node);
if (typeof app.page?.setData === 'function') {
if (isPage(newNode)) {
app.page.setData(newNode);
} else {
const n = app.page.getNode(node.id);
n?.setData(newNode);
}
}
return newNode;
}),
sourceId,
changeEvent,

View File

@ -15,6 +15,12 @@ import {
import type { AsyncDataSourceResolveResult, DataSourceManagerData } from './types';
/**
*
* @param node dsl节点
* @param data
* @returns boolean
*/
export const compliedConditions = (node: MNode, data: DataSourceManagerData) => {
if (!node.displayConds || !Array.isArray(node.displayConds) || !node.displayConds.length) return true;
@ -56,6 +62,13 @@ export const updateNode = (node: MNode, dsl: MApp) => {
}
};
/**
*
* @param itemData
* @param dsId id
* @param fields dsl节点字段a.b.c
* @returns
*/
export const createIteratorContentData = (itemData: any, dsId: string, fields: string[] = []) => {
const data = {
[dsId]: {},
@ -70,6 +83,15 @@ export const createIteratorContentData = (itemData: any, dsId: string, fields: s
return data;
};
/**
* tmagic-editor的数据源源选择器配(data-source-field-select)
* [`${DATA_SOURCE_FIELDS_SELECT_VALUE_PREFIX}${id}`, 'field']
* DATA_SOURCE_FIELDS_SELECT_VALUE_PREFIX常量可通过@tmagic/utils获取
*
* @param value dsl节点中的数据源配置
* @param data
* @returns
*/
export const compliedDataSourceField = (value: any, data: DataSourceManagerData) => {
const [prefixId, ...fields] = value;
const prefixIndex = prefixId.indexOf(DATA_SOURCE_FIELDS_SELECT_VALUE_PREFIX);
@ -87,6 +109,12 @@ export const compliedDataSourceField = (value: any, data: DataSourceManagerData)
return value;
};
/**
* tmagic-editor的数据源源选择器data-source-inputdata-source-selectdata-source-field-select
* @param value dsl节点中的数据源配置
* @param data
* @returns
*/
export const compiledNodeField = (value: any, data: DataSourceManagerData) => {
// 使用data-source-input等表单控件配置的字符串模板`xxx${id.field}xxx`
if (typeof value === 'string') {