mirror of
https://github.com/DaanVandenBosch/phantasmal-world.git
synced 2025-04-04 22:58:29 +08:00

- Widget now has a children array - Widgets can be activated and deactivated (this recurses over child widgets) - Renderers are now turned on and off in activate/deactivate methods - It is now possible to set a tool-local path (this path is appended to the tool's base path) - TabContainer can now automatically set a path based on paths given in its tab configuration - It's now possible to directly link to subviews of the viewer and the hunt optimizer
24 lines
626 B
TypeScript
24 lines
626 B
TypeScript
import { Label } from "../../core/gui/Label";
|
|
import "./UnavailableView.css";
|
|
import { div } from "../../core/gui/dom";
|
|
import { View } from "../../core/gui/View";
|
|
|
|
/**
|
|
* Used to show that a view exists but is unavailable at the moment.
|
|
*/
|
|
export class UnavailableView extends View {
|
|
readonly element = div({ className: "quest_editor_UnavailableView" });
|
|
|
|
private readonly label: Label;
|
|
|
|
constructor(message: string) {
|
|
super();
|
|
|
|
this.label = this.disposable(new Label(message, { enabled: false }));
|
|
|
|
this.element.append(this.label.element);
|
|
|
|
this.finalize_construction();
|
|
}
|
|
}
|