mirror of
https://github.com/alibaba/lowcode-engine.git
synced 2025-12-17 15:23:00 +00:00
135 lines
3.3 KiB
TypeScript
135 lines
3.3 KiB
TypeScript
import {
|
|
ComponentMeta as InnerComponentMeta,
|
|
ParentalNode,
|
|
} from '@alilc/lowcode-designer';
|
|
import { NodeData, NodeSchema, IPublicModelComponentMeta, I18nData, IconType, NpmInfo, TransformedComponentMetadata, IPublicModelNode } from '@alilc/lowcode-types';
|
|
import { componentMetaSymbol, nodeSymbol } from './symbols';
|
|
import { ReactElement } from 'react';
|
|
|
|
export default class ComponentMeta implements IPublicModelComponentMeta {
|
|
private readonly [componentMetaSymbol]: InnerComponentMeta;
|
|
|
|
constructor(componentMeta: InnerComponentMeta) {
|
|
this[componentMetaSymbol] = componentMeta;
|
|
}
|
|
|
|
static create(componentMeta: InnerComponentMeta | null): IPublicModelComponentMeta | null {
|
|
if (!componentMeta) {
|
|
return null;
|
|
}
|
|
return new ComponentMeta(componentMeta);
|
|
}
|
|
|
|
/**
|
|
* 组件名
|
|
*/
|
|
get componentName(): string {
|
|
return this[componentMetaSymbol].componentName;
|
|
}
|
|
|
|
/**
|
|
* 是否是「容器型」组件
|
|
*/
|
|
get isContainer(): boolean {
|
|
return this[componentMetaSymbol].isContainer;
|
|
}
|
|
|
|
/**
|
|
* 是否是最小渲染单元。
|
|
* 当组件需要重新渲染时:
|
|
* 若为最小渲染单元,则只渲染当前组件,
|
|
* 若不为最小渲染单元,则寻找到上层最近的最小渲染单元进行重新渲染,直至根节点。
|
|
*/
|
|
get isMinimalRenderUnit(): boolean {
|
|
return this[componentMetaSymbol].isMinimalRenderUnit;
|
|
}
|
|
|
|
/**
|
|
* 是否为「模态框」组件
|
|
*/
|
|
get isModal(): boolean {
|
|
return this[componentMetaSymbol].isModal;
|
|
}
|
|
|
|
/**
|
|
* 元数据配置
|
|
*/
|
|
get configure(): any {
|
|
return this[componentMetaSymbol].configure;
|
|
}
|
|
|
|
/**
|
|
* 标题
|
|
*/
|
|
get title(): string | I18nData | ReactElement {
|
|
return this[componentMetaSymbol].title;
|
|
}
|
|
|
|
/**
|
|
* 图标
|
|
*/
|
|
get icon(): IconType {
|
|
return this[componentMetaSymbol].icon;
|
|
}
|
|
|
|
/**
|
|
* 组件 npm 信息
|
|
*/
|
|
get npm(): NpmInfo {
|
|
return this[componentMetaSymbol].npm;
|
|
}
|
|
|
|
/**
|
|
* @deprecated
|
|
*/
|
|
get prototype() {
|
|
return this[componentMetaSymbol].prototype;
|
|
}
|
|
|
|
get availableActions(): any {
|
|
return this[componentMetaSymbol].availableActions;
|
|
}
|
|
|
|
/**
|
|
* 设置 npm 信息
|
|
* @param npm
|
|
*/
|
|
setNpm(npm: NpmInfo): void {
|
|
this[componentMetaSymbol].setNpm(npm);
|
|
}
|
|
|
|
/**
|
|
* 获取元数据
|
|
* @returns
|
|
*/
|
|
getMetadata(): TransformedComponentMetadata {
|
|
return this[componentMetaSymbol].getMetadata();
|
|
}
|
|
|
|
/**
|
|
* check if the current node could be placed in parent node
|
|
* @param my
|
|
* @param parent
|
|
* @returns
|
|
*/
|
|
checkNestingUp(my: IPublicModelNode | NodeData, parent: ParentalNode<NodeSchema>): boolean {
|
|
const curNode = (my as any).isNode ? (my as any)[nodeSymbol] : my;
|
|
return this[componentMetaSymbol].checkNestingUp(curNode as any, parent);
|
|
}
|
|
|
|
/**
|
|
* check if the target node(s) could be placed in current node
|
|
* @param my
|
|
* @param parent
|
|
* @returns
|
|
*/
|
|
checkNestingDown(my: IPublicModelNode | NodeData, target: NodeSchema | IPublicModelNode | NodeSchema[]) {
|
|
const curNode = (my as any)?.isNode ? (my as any)[nodeSymbol] : my;
|
|
return this[componentMetaSymbol].checkNestingDown(curNode as any, (target as any)[nodeSymbol] || target);
|
|
}
|
|
|
|
refreshMetadata(): void {
|
|
this[componentMetaSymbol].refreshMetadata();
|
|
}
|
|
}
|