forked from alibaba/lowcode-engine
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcommon.tsx
More file actions
468 lines (414 loc) · 11.2 KB
/
common.tsx
File metadata and controls
468 lines (414 loc) · 11.2 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
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
import { editorSymbol, skeletonSymbol, designerCabinSymbol, designerSymbol, settingFieldSymbol, editorCabinSymbol, skeletonCabinSymbol } from '../symbols';
import {
isFormEvent as innerIsFormEvent,
compatibleLegaoSchema as innerCompatibleLegaoSchema,
getNodeSchemaById as innerGetNodeSchemaById,
transactionManager,
isNodeSchema as innerIsNodeSchema,
isDragNodeDataObject as innerIsDragNodeDataObject,
isDragNodeObject as innerIsDragNodeObject,
isDragAnyObject as innerIsDragAnyObject,
isLocationChildrenDetail as innerIsLocationChildrenDetail,
isNode as innerIsNode,
isSettingField,
isSettingField as innerIsSettingField,
} from '@alilc/lowcode-utils';
import {
IPublicTypeNodeSchema,
IPublicEnumTransitionType,
IPublicEnumTransformStage as InnerTransitionStage,
IPublicApiCommonDesignerCabin,
IPublicApiCommonSkeletonCabin,
IPublicApiCommonUtils,
IPublicApiCommon,
IPublicEnumDragObjectType as InnerDragObjectType,
IPublicTypeLocationDetailType as InnerLocationDetailType,
IPublicApiCommonEditorCabin,
IPublicModelDragon,
IPublicModelSettingField,
IPublicTypeI18nData,
} from '@alilc/lowcode-types';
import {
SettingField as InnerSettingField,
LiveEditing as InnerLiveEditing,
isShaken as innerIsShaken,
contains as innerContains,
ScrollTarget as InnerScrollTarget,
getConvertedExtraKey as innerGetConvertedExtraKey,
getOriginalExtraKey as innerGetOriginalExtraKey,
IDesigner,
DropLocation as InnerDropLocation,
Designer as InnerDesigner,
Node as InnerNode,
LowCodePluginManager as InnerLowCodePluginManager,
DesignerView as InnerDesignerView,
} from '@alilc/lowcode-designer';
import {
Skeleton as InnerSkeleton,
createSettingFieldView as innerCreateSettingFieldView,
PopupContext as InnerPopupContext,
PopupPipe as InnerPopupPipe,
Workbench as InnerWorkbench,
SettingsPrimaryPane as InnerSettingsPrimaryPane,
registerDefaults as InnerRegisterDefaults,
} from '@alilc/lowcode-editor-skeleton';
import {
Editor,
Title as InnerTitle,
Tip as InnerTip,
shallowIntl as innerShallowIntl,
createIntl as innerCreateIntl,
intl as innerIntl,
globalLocale as innerGlobalLocale,
obx as innerObx,
observable as innerObservable,
makeObservable as innerMakeObservable,
untracked as innerUntracked,
computed as innerComputed,
observer as innerObserver,
action as innerAction,
runInAction as innerRunInAction,
engineConfig as innerEngineConfig,
globalContext,
} from '@alilc/lowcode-editor-core';
import { Dragon as ShellDragon } from '../model';
import { ReactNode } from 'react';
class DesignerCabin implements IPublicApiCommonDesignerCabin {
private readonly [editorSymbol]: Editor;
/**
* @deprecated
*/
readonly [designerCabinSymbol]: any;
private get [designerSymbol](): IDesigner {
return this[editorSymbol].get('designer') as IDesigner;
}
constructor(editor: Editor) {
this[editorSymbol] = editor;
this[designerCabinSymbol] = {
isDragNodeObject: innerIsDragNodeObject,
isDragAnyObject: innerIsDragAnyObject,
isShaken: innerIsShaken,
contains: innerContains,
LocationDetailType: InnerLocationDetailType,
isLocationChildrenDetail: innerIsLocationChildrenDetail,
ScrollTarget: InnerScrollTarget,
isSettingField: innerIsSettingField,
TransformStage: InnerTransitionStage,
SettingField: InnerSettingField,
LiveEditing: InnerLiveEditing,
DragObjectType: InnerDragObjectType,
isDragNodeDataObject: innerIsDragNodeDataObject,
isNode: innerIsNode,
DropLocation: InnerDropLocation,
Designer: InnerDesigner,
Node: InnerNode,
LowCodePluginManager: InnerLowCodePluginManager,
DesignerView: InnerDesignerView,
};
}
/**
* 是否是 SettingField 实例
* @deprecated use same function from @alilc/lowcode-utils directly
*/
isSettingField(obj: any): boolean {
return isSettingField(obj);
}
/**
* 转换类型枚举对象,包含 init / upgrade / render 等类型
* [参考](https://github.com/alibaba/lowcode-engine/blob/main/packages/types/src/transform-stage.ts)
* @deprecated use { TransformStage } from '@alilc/lowcode-types' instead
*/
get TransformStage() {
return InnerTransitionStage;
}
/**
* @deprecated
*/
get SettingField() {
return InnerSettingField;
}
/**
* @deprecated
*/
get LiveEditing() {
return InnerLiveEditing;
}
/**
* @deprecated
*/
get DragObjectType() {
return InnerDragObjectType;
}
/**
* @deprecated
*/
isDragNodeDataObject(obj: any): boolean {
return innerIsDragNodeDataObject(obj);
}
/**
* @deprecated
*/
isNode(node: any): boolean {
return innerIsNode(node);
}
/**
* @deprecated please use canvas.dragon
*/
get dragon(): IPublicModelDragon | null {
return ShellDragon.create(this[designerSymbol].dragon, false);
}
}
class SkeletonCabin implements IPublicApiCommonSkeletonCabin {
private readonly [skeletonSymbol]: InnerSkeleton;
readonly [skeletonCabinSymbol]: any;
constructor(skeleton: InnerSkeleton) {
this[skeletonSymbol] = skeleton;
this[skeletonCabinSymbol] = {
Workbench: InnerWorkbench,
createSettingFieldView: this.createSettingFieldView,
PopupContext: InnerPopupContext,
PopupPipe: InnerPopupPipe,
SettingsPrimaryPane: InnerSettingsPrimaryPane,
registerDefaults: InnerRegisterDefaults,
Skeleton: InnerSkeleton,
};
}
get Workbench(): any {
const innerSkeleton = this[skeletonSymbol];
return (props: any) => <InnerWorkbench {...props} skeleton={innerSkeleton} />;
}
/**
* @deprecated
*/
createSettingFieldView(field: IPublicModelSettingField, fieldEntry: any) {
return innerCreateSettingFieldView((field as any)[settingFieldSymbol] || field, fieldEntry);
}
/**
* @deprecated
*/
get PopupContext(): any {
return InnerPopupContext;
}
/**
* @deprecated
*/
get PopupPipe(): any {
return InnerPopupPipe;
}
}
class Utils implements IPublicApiCommonUtils {
isNodeSchema(data: any): data is IPublicTypeNodeSchema {
return innerIsNodeSchema(data);
}
isFormEvent(e: KeyboardEvent | MouseEvent): boolean {
return innerIsFormEvent(e);
}
/**
* @deprecated this is a legacy api, do not use this if not using is already
*/
compatibleLegaoSchema(props: any): any {
return innerCompatibleLegaoSchema(props);
}
getNodeSchemaById(
schema: IPublicTypeNodeSchema,
nodeId: string,
): IPublicTypeNodeSchema | undefined {
return innerGetNodeSchemaById(schema, nodeId);
}
getConvertedExtraKey(key: string): string {
return innerGetConvertedExtraKey(key);
}
getOriginalExtraKey(key: string): string {
return innerGetOriginalExtraKey(key);
}
executeTransaction(
fn: () => void,
type: IPublicEnumTransitionType = IPublicEnumTransitionType.REPAINT,
): void {
transactionManager.executeTransaction(fn, type);
}
createIntl(instance: string | object): {
intlNode(id: string, params?: object): ReactNode;
intl(id: string, params?: object): string;
getLocale(): string;
setLocale(locale: string): void;
} {
return innerCreateIntl(instance);
}
intl(data: IPublicTypeI18nData | string, params?: object): any {
return innerIntl(data, params);
}
}
class EditorCabin implements IPublicApiCommonEditorCabin {
private readonly [editorSymbol]: Editor;
/**
* @deprecated
*/
readonly [editorCabinSymbol]: any;
constructor(editor: Editor) {
this[editorSymbol] = editor;
this[editorCabinSymbol] = {
Editor,
globalContext,
runInAction: innerRunInAction,
Title: InnerTitle,
Tip: InnerTip,
shallowIntl: innerShallowIntl,
createIntl: innerCreateIntl,
intl: innerIntl,
createSetterContent: this.createSetterContent.bind(this),
globalLocale: innerGlobalLocale,
obx: innerObx,
action: innerAction,
engineConfig: innerEngineConfig,
observable: innerObservable,
makeObservable: innerMakeObservable,
untracked: innerUntracked,
computed: innerComputed,
observer: innerObserver,
};
}
/**
* Title 组件
* @experimental unstable API, pay extra caution when trying to use this
*/
get Title() {
return InnerTitle;
}
/**
* Tip 组件
* @experimental unstable API, pay extra caution when trying to use this
*/
get Tip() {
return InnerTip;
}
/**
* @deprecated
*/
shallowIntl(data: any): any {
return innerShallowIntl(data);
}
/**
* @deprecated use common.utils.createIntl instead
*/
createIntl(instance: any): any {
return innerCreateIntl(instance);
}
/**
* @deprecated
*/
intl(data: any, params?: object): any {
return innerIntl(data, params);
}
/**
* @deprecated
*/
createSetterContent = (setter: any, props: Record<string, any>): ReactNode => {
const setters = this[editorSymbol].get('setters');
return setters.createSetterContent(setter, props);
};
/**
* @deprecated use common.utils.createIntl instead
*/
get globalLocale(): any {
return innerGlobalLocale;
}
/**
* @deprecated
*/
get obx() {
return innerObx;
}
/**
* @deprecated
*/
get action() {
return innerAction;
}
/**
* @deprecated
*/
get engineConfig() {
return innerEngineConfig;
}
/**
* @deprecated
*/
get runInAction() {
return innerRunInAction;
}
/**
* @deprecated
*/
get observable() {
return innerObservable;
}
/**
* @deprecated
*/
makeObservable(target: any, annotations: any, options: any) {
return innerMakeObservable(target, annotations, options);
}
/**
* @deprecated
*/
untracked(action: any) {
return innerUntracked(action);
}
/**
* @deprecated
*/
get computed() {
return innerComputed;
}
/**
* @deprecated
*/
observer(component: any) {
return innerObserver(component);
}
}
export class Common implements IPublicApiCommon {
private readonly __designerCabin: any;
private readonly __skeletonCabin: any;
private readonly __editorCabin: any;
private readonly __utils: Utils;
constructor(editor: Editor, skeleton: InnerSkeleton) {
this.__designerCabin = new DesignerCabin(editor);
this.__skeletonCabin = new SkeletonCabin(skeleton);
this.__editorCabin = new EditorCabin(editor);
this.__utils = new Utils();
}
get utils(): any {
return this.__utils;
}
/**
* 历史原因导致此处设计不合理,慎用。
* this load of crap will be removed in some future versions, don`t use it.
* @deprecated
*/
get editorCabin(): any {
return this.__editorCabin;
}
/**
* 历史原因导致此处设计不合理,慎用。
* this load of crap will be removed in some future versions, don`t use it.
* @deprecated use canvas api instead
*/
get designerCabin(): any {
return this.__designerCabin;
}
get skeletonCabin(): any {
return this.__skeletonCabin;
}
/**
* 历史原因导致此处设计不合理,慎用。
* this load of crap will be removed in some future versions, don`t use it.
* @deprecated use { TransformStage } from '@alilc/lowcode-types' instead
*/
get objects(): any {
return {
TransformStage: InnerTransitionStage,
};
}
}