mapcomplete/UI/Base/LazyElement.ts

34 lines
961 B
TypeScript
Raw Normal View History

2020-12-05 03:22:17 +01:00
import {UIElement} from "../UIElement";
2021-01-25 03:12:09 +01:00
export default class LazyElement<T extends UIElement> extends UIElement {
2020-12-05 03:22:17 +01:00
2021-01-25 03:12:09 +01:00
public Activate: (onElement?: (element: T) => void) => void;
private _content: T = undefined;
private readonly _loadingContent: string;
2020-12-05 03:22:17 +01:00
2021-01-25 03:12:09 +01:00
constructor(content: (() => T), loadingContent = "Rendering...") {
2020-12-05 03:22:17 +01:00
super();
this._loadingContent = loadingContent;
2020-12-05 03:22:17 +01:00
this.dumbMode = false;
const self = this;
2021-01-25 03:12:09 +01:00
this.Activate = (onElement?: (element: T) => void) => {
console.log("ACTIVATED")
2020-12-05 03:22:17 +01:00
if (this._content === undefined) {
self._content = content();
}
2021-01-25 03:12:09 +01:00
if (onElement) {
onElement(self._content)
}
2020-12-05 03:22:17 +01:00
self.Update();
}
}
InnerRender(): string {
if (this._content === undefined) {
return this._loadingContent;
2020-12-05 03:22:17 +01:00
}
2021-01-25 04:21:22 +01:00
return this._content.Render();
2020-12-05 03:22:17 +01:00
}
}