forked from alibaba/lowcode-engine
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomponent-meta.ts
More file actions
93 lines (79 loc) · 1.81 KB
/
component-meta.ts
File metadata and controls
93 lines (79 loc) · 1.81 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
import {
ComponentMeta as InnerComponentMeta,
} from '@alilc/lowcode-designer';
import { componentMetaSymbol } from './symbols';
export default class ComponentMeta {
private readonly [componentMetaSymbol]: InnerComponentMeta;
constructor(componentMeta: InnerComponentMeta) {
this[componentMetaSymbol] = componentMeta;
}
static create(componentMeta: InnerComponentMeta | 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() {
return this[componentMetaSymbol].configure;
}
/**
* 标题
*/
get title() {
return this[componentMetaSymbol].title;
}
/**
* 图标
*/
get icon() {
return this[componentMetaSymbol].icon;
}
/**
* 组件 npm 信息
*/
get npm() {
return this[componentMetaSymbol].npm;
}
/**
* 设置 npm 信息
* @param npm
*/
setNpm(npm: any) {
this[componentMetaSymbol].setNpm(npm);
}
/**
* 获取元数据
* @returns
*/
getMetadata() {
return this[componentMetaSymbol].getMetadata();
}
}