forked from alibaba/lowcode-engine
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathprop.ts
More file actions
70 lines (60 loc) · 1.19 KB
/
prop.ts
File metadata and controls
70 lines (60 loc) · 1.19 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
import { Prop as InnerProp } from '@alilc/lowcode-designer';
import { CompositeValue, TransformStage } from '@alilc/lowcode-types';
import { propSymbol } from './symbols';
import Node from './node';
export default class Prop {
private readonly [propSymbol]: InnerProp;
constructor(prop: InnerProp) {
this[propSymbol] = prop;
}
static create(prop: InnerProp | undefined | null) {
if (!prop) return null;
return new Prop(prop);
}
/**
* id
*/
get id() {
return this[propSymbol].id;
}
/**
* key 值
*/
get key() {
return this[propSymbol].key;
}
/**
* 返回当前 prop 的路径
*/
get path() {
return this[propSymbol].path;
}
/**
* 返回所属的节点实例
*/
get node(): Node | null {
return Node.create(this[propSymbol].getNode());
}
/**
* 设置值
* @param val
*/
setValue(val: CompositeValue) {
this[propSymbol].setValue(val);
}
/**
* 获取值
* @returns
*/
getValue() {
return this[propSymbol].getValue();
}
/**
* 导出值
* @param stage
* @returns
*/
exportSchema(stage: TransformStage = TransformStage.Render) {
return this[propSymbol].export(stage);
}
}