mirror of
https://github.com/alibaba/lowcode-engine.git
synced 2025-12-14 21:12:53 +00:00
144 lines
2.8 KiB
TypeScript
144 lines
2.8 KiB
TypeScript
import { ReactNode, createElement } from 'react';
|
|
import { makeObservable, observable } from '@alilc/lowcode-editor-core';
|
|
import { createContent, uniqueId } from '@alilc/lowcode-utils';
|
|
import { getEvent } from '../../../engine/src/shell/api/event';
|
|
import { WidgetConfig } from '../types';
|
|
import { ISkeleton } from '../skeleton';
|
|
import { WidgetView } from '../components/widget-views';
|
|
import { IPublicTypeTitleContent, IPublicTypeWidgetBaseConfig } from '@alilc/lowcode-types';
|
|
|
|
export interface IWidget {
|
|
readonly name: string;
|
|
readonly content: ReactNode;
|
|
readonly align?: string;
|
|
readonly isWidget: true;
|
|
readonly visible: boolean;
|
|
readonly disabled?: boolean;
|
|
readonly body: ReactNode;
|
|
readonly skeleton: ISkeleton;
|
|
readonly config: IPublicTypeWidgetBaseConfig;
|
|
|
|
getName(): string;
|
|
getContent(): any;
|
|
show(): void;
|
|
hide(): void;
|
|
toggle(): void;
|
|
enable?(): void;
|
|
disable?(): void;
|
|
}
|
|
|
|
export class Widget implements IWidget {
|
|
readonly isWidget = true;
|
|
|
|
readonly id = uniqueId('widget');
|
|
|
|
readonly name: string;
|
|
|
|
readonly align?: string;
|
|
|
|
@observable.ref private _visible = true;
|
|
|
|
get visible(): boolean {
|
|
return this._visible;
|
|
}
|
|
|
|
@observable.ref inited = false;
|
|
|
|
@observable.ref private _disabled = false;
|
|
|
|
private _body: ReactNode;
|
|
|
|
get body() {
|
|
if (this.inited) {
|
|
return this._body;
|
|
}
|
|
this.inited = true;
|
|
const { content, contentProps } = this.config;
|
|
this._body = createContent(content, {
|
|
...contentProps,
|
|
config: this.config,
|
|
editor: getEvent(this.skeleton.editor),
|
|
});
|
|
return this._body;
|
|
}
|
|
|
|
get content(): ReactNode {
|
|
return createElement(WidgetView, {
|
|
widget: this,
|
|
key: this.id,
|
|
});
|
|
}
|
|
|
|
readonly title: IPublicTypeTitleContent;
|
|
|
|
constructor(
|
|
readonly skeleton: ISkeleton,
|
|
readonly config: WidgetConfig,
|
|
) {
|
|
makeObservable(this);
|
|
const { props = {}, name } = config;
|
|
this.name = name;
|
|
this.align = props.align;
|
|
this.title = props.title || name;
|
|
if (props.onInit) {
|
|
props.onInit.call(this, this);
|
|
}
|
|
}
|
|
|
|
getId() {
|
|
return this.id;
|
|
}
|
|
|
|
getName() {
|
|
return this.name;
|
|
}
|
|
|
|
getContent() {
|
|
return this.content;
|
|
}
|
|
|
|
hide() {
|
|
this.setVisible(false);
|
|
}
|
|
|
|
show() {
|
|
this.setVisible(true);
|
|
}
|
|
|
|
setVisible(flag: boolean) {
|
|
if (flag === this._visible) {
|
|
return;
|
|
}
|
|
if (flag) {
|
|
this._visible = true;
|
|
} else if (this.inited) {
|
|
this._visible = false;
|
|
}
|
|
}
|
|
|
|
toggle() {
|
|
this.setVisible(!this._visible);
|
|
}
|
|
|
|
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;
|
|
}
|
|
}
|
|
|
|
export function isWidget(obj: any): obj is IWidget {
|
|
return obj && obj.isWidget;
|
|
}
|