phantasmal-world/src/quest_editor/gui/UnavailableView.ts
Daan Vanden Bosch f87c2ecf84 - All views now have a View super type
- 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
2020-01-05 01:07:35 +01:00

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();
}
}