forked from alibaba/lowcode-engine
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdock.ts
More file actions
119 lines (94 loc) · 2.28 KB
/
Copy pathdock.ts
File metadata and controls
119 lines (94 loc) · 2.28 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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
import { ReactNode, createElement } from 'react';
import { makeObservable, obx } from '@alilc/lowcode-editor-core';
import { uniqueId, createContent } from '@alilc/lowcode-utils';
import { getEvent } from '@alilc/lowcode-shell';
import { DockConfig } from '../types';
import { Skeleton } from '../skeleton';
import { DockView, WidgetView } from '../components/widget-views';
import { IWidget } from './widget';
/**
* 带图标(主要)/标题(次要)的扩展
*/
export default class Dock implements IWidget {
readonly isWidget = true;
readonly id = uniqueId('dock');
readonly name: string;
readonly align?: string;
@obx.ref private _visible = true;
get visible(): boolean {
return this._visible;
}
@obx.ref private _disabled = false;
get content(): ReactNode {
return createElement(WidgetView, {
widget: this,
key: this.id,
});
}
private inited = false;
private _body: ReactNode;
get body() {
if (this.inited) {
return this._body;
}
const { props, content, contentProps } = this.config;
if (content) {
this._body = createContent(content, {
...contentProps,
config: this.config,
editor: getEvent(this.skeleton.editor),
});
} else {
this._body = createElement(DockView, props);
}
this.inited = true;
return this._body;
}
constructor(readonly skeleton: Skeleton, readonly config: DockConfig) {
makeObservable(this);
const { props = {}, name } = config;
this.name = name;
this.align = props.align;
if (props.onInit) {
props.onInit.call(this, this);
}
}
setVisible(flag: boolean) {
if (flag === this._visible) {
return;
}
if (flag) {
this._visible = true;
} else if (this.inited) {
this._visible = false;
}
}
private setDisabled(flag: boolean) {
if (this._disabled === flag) return;
this._disabled = flag;
}
disable() {
this.setDisabled(true);
}
enable() {
this.setDisabled(false);
}
get disabled(): boolean {
return this._disabled;
}
getContent() {
return this.content;
}
getName() {
return this.name;
}
hide() {
this.setVisible(false);
}
show() {
this.setVisible(true);
}
toggle() {
this.setVisible(!this._visible);
}
}