roymondchen 025cca365c perf(dep): 依赖收集改为单次遍历批量处理多 target
将 collectItems/removeTargetsDep 改为整棵树只遍历一次、在每个属性上检查所有
target,把结构遍历开销从 ×targets 降到 ×1,收集结果保持一致。

同时修正 dataSourceMethodDeps 字段命名并补充到 MApp schema。

Co-authored-by: Cursor <cursoragent@cursor.com>
2026-05-29 17:55:13 +08:00

373 lines
8.8 KiB
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

/*
* Tencent is pleased to support the open source community by making TMagicEditor available.
*
* Copyright (C) 2025 Tencent. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
export type Method = 'get' | 'GET' | 'delete' | 'DELETE' | 'post' | 'POST' | 'put' | 'PUT';
export interface HttpOptions {
/** 请求链接 */
url: string;
/** query参数 */
params?: Record<string, string>;
/** body数据 */
data?: Record<string, any>;
/** 请求头 */
headers?: Record<string, string>;
/** 请求方法 GET/POST */
method?: Method;
[key: string]: any;
}
export type RequestFunction = <T = any>(options: HttpOptions) => Promise<T>;
// #region JsEngine
export type JsEngine = 'browser' | 'hippy' | 'nodejs';
// #endregion JsEngine
// #region NodeType
export enum NodeType {
/** 容器 */
CONTAINER = 'container',
/** 页面 */
PAGE = 'page',
/** 根类型 */
ROOT = 'app',
/** 页面片 */
PAGE_FRAGMENT = 'page-fragment',
}
// #endregion NodeType
export const NODE_CONDS_KEY = 'displayConds';
export const NODE_CONDS_RESULT_KEY = 'displayCondsResultReverse';
export const NODE_DISABLE_DATA_SOURCE_KEY = '_tmagic_node_disabled_data_source';
export const NODE_DISABLE_CODE_BLOCK_KEY = '_tmagic_node_disabled_code_block';
// #region Id
export type Id = string | number;
// #endregion Id
// #region ActionType
// 事件联动的动作类型
export enum ActionType {
/** 联动组件 */
COMP = 'comp',
/** 联动代码 */
CODE = 'code',
/** 数据源 */
DATA_SOURCE = 'data-source',
}
// #endregion ActionType
// #region DataSourceDeps
export interface DataSourceDeps {
[dataSourceId: string | number]: DepData;
}
// #endregion DataSourceDeps
/** 事件类型(已废弃,后续不建议继续使用) */
export interface DeprecatedEventConfig {
/** 待触发的事件名称 */
name: string;
/** 被选中组件ID */
to: Id;
/** 触发事件后执行被选中组件的方法 */
method: string;
}
// #region EventConfig
export interface EventConfig {
/** 待触发的事件名称 */
name: string;
/** 动作响应配置 */
actions: EventActionItem[];
}
// #endregion EventConfig
// #region CodeItemConfig
export interface CodeItemConfig {
/** 动作类型 */
actionType: ActionType;
/** 代码ID */
codeId: Id;
/** 代码参数 */
params?: Record<string, any>;
}
// #endregion CodeItemConfig
// #region CompItemConfig
export interface CompItemConfig {
/** 动作类型 */
actionType: ActionType;
/** 被选中组件ID */
to: Id;
/** 触发事件后执行被选中组件的方法 */
method: string;
}
// #endregion CompItemConfig
// #region DataSourceItemConfig
export interface DataSourceItemConfig {
/** 动作类型 */
actionType: ActionType;
/** [数据源id, 方法] */
dataSourceMethod: [string, string];
/** 代码参数 */
params?: object;
}
// #endregion DataSourceItemConfig
// #region EventActionItem
export type EventActionItem = CompItemConfig | CodeItemConfig | DataSourceItemConfig;
// #endregion EventActionItem
// #region MComponent
export interface MComponent {
/** 组件ID默认为${type}_${number}}形式, 如page_123 */
id: Id;
/** 组件类型 */
type?: string;
/** 组件显示名称 */
name?: string;
/** 组件根Dom上的class */
className?: string;
/* 关联事件集合 */
events?: EventConfig[];
/** 是否隐藏 */
visible?: boolean;
/** 显示条件中配置的数据源条件的编译结果 */
condResult?: boolean;
/** 组件根Dom的style */
style?: StyleSchema;
[NODE_CONDS_KEY]?: DisplayCond[];
[NODE_CONDS_RESULT_KEY]?: boolean;
[key: string]: any;
}
// #endregion MComponent
// #region MContainer
export interface MContainer extends MComponent {
/** 容器类型,默认为'container' */
type?: NodeType.CONTAINER | string;
/** 容器子元素 */
items: (MComponent | MContainer)[];
}
// #endregion MContainer
// #region MIteratorContainer
export interface MIteratorContainer extends MContainer {
type: 'iterator-container';
iteratorData: any[];
dsField: string[];
itemConfig: {
layout: string;
[NODE_CONDS_KEY]: DisplayCond[];
style: Record<string, string | number>;
};
}
// #endregion MIteratorContainer
// #region MPage
export interface MPage extends MContainer {
/** 页面类型 */
type: NodeType.PAGE;
}
// #endregion MPage
// #region MPageFragment
export interface MPageFragment extends MContainer {
/** 页面类型 */
type: NodeType.PAGE_FRAGMENT;
}
// #endregion MPageFragment
// #region MApp
export interface MApp extends MComponent {
/** App页面类型app作为整个结构的根节点有且只有一个 */
type: NodeType.ROOT;
/** */
items: (MPage | MPageFragment)[];
/** 代码块 */
codeBlocks?: CodeBlockDSL;
dataSources?: DataSourceSchema[];
dataSourceDeps?: DataSourceDeps;
dataSourceCondDeps?: DataSourceDeps;
dataSourceMethodDeps?: DataSourceDeps;
}
// #endregion MApp
// #region CodeBlockDSL
export interface CodeBlockDSL {
[id: Id]: CodeBlockContent;
}
// #endregion CodeBlockDSL
// #region CodeBlockContent
export interface CodeBlockContent {
/** 代码块名称 */
name: string;
/** 代码块内容 */
content: ((...args: any[]) => any) | Function;
/** 参数定义 */
params: CodeParam[] | [];
/** 注释 */
desc?: string;
/** 扩展字段 */
[propName: string]: any;
}
// #endregion CodeBlockContent
// #region CodeParam
export interface CodeParam {
/** 参数名 */
name: string;
/** 扩展字段 */
[propName: string]: any;
}
// #endregion CodeParam
export interface PastePosition {
left?: number;
top?: number;
}
// #region MNode
export type MNode = MComponent | MContainer | MIteratorContainer | MPage | MApp | MPageFragment;
// #endregion MNode
export interface MNodeInstance extends Omit<MNode, 'id'> {
id?: Id;
type?: string;
}
export enum HookType {
/** 代码块钩子标识 */
CODE = 'code',
}
export enum HookCodeType {
/** 代码块 */
CODE = 'code',
/** 数据源方法 */
DATA_SOURCE_METHOD = 'data-source-method',
}
export type DataSourceFieldType = 'null' | 'boolean' | 'object' | 'array' | 'number' | 'string' | 'any';
// #region DataSchema
export interface DataSchema {
type?: DataSourceFieldType;
/** 键名 */
name: string;
/** 展示名称 */
title?: string;
/** 实体描述鼠标hover时展示 */
description?: string;
/** 默认值 */
defaultValue?: any;
/** 是否可用 */
enable?: boolean;
/** type === 'object' || type === 'array' */
fields?: DataSchema[];
}
// #endregion DataSchema
// #region MockSchema
export interface MockSchema {
/** 名称 */
title: string;
/** 详细描述 */
description?: string;
/** 是否启用用于编辑器以外的runtime */
enable: boolean;
/** 编辑器中使用使用此条数据仅用于编辑器runtime中 */
useInEditor: boolean;
/** mock数据 */
data: Record<string | number, any>;
}
// #endregion MockSchema
// #region DataSourceSchema
export interface DataSourceSchema {
/** 数据源类型根据类型来实例化例如http则使用new HttpDataSource */
type: string;
/** 实体ID */
id: string;
/** 实体名称,用于关联时展示 */
title?: string;
/** 实体描述鼠标hover时展示 */
description?: string;
/** 字段列表 */
fields: DataSchema[];
/** 方法列表 */
methods: CodeBlockContent[];
/** mock数据 */
mocks?: MockSchema[];
/** 事件 */
events: EventConfig[];
/** 不执行init的环境 */
disabledInitInJsEngine?: (JsEngine | string)[];
/** 扩展字段 */
[key: string]: any;
}
// #endregion DataSourceSchema
// #region DepData
export interface DepData {
[nodeId: Id]: {
/** 组件名称 */
name: string;
keys: (string | number)[];
data?: Record<string, any>;
};
}
// #endregion DepData
export type HookData = {
/** 代码块id */
codeId: Id;
/** 参数 */
params?: object;
};
// #region DisplayCondItem
export interface DisplayCondItem {
field: string[];
op: string;
value?: any;
range?: [number, number];
}
// #endregion DisplayCondItem
// #region DisplayCond
export interface DisplayCond {
cond: DisplayCondItem[];
}
// #endregion DisplayCond
export interface UiComponentProps<T extends MNode = MNode> {
config: T;
model?: any;
}
// #region StyleSchema
export interface StyleSchema {
[key: string]: any;
}
// #endregion StyleSchema