mirror of
https://github.com/DaanVandenBosch/phantasmal-world.git
synced 2025-04-05 15:28:29 +08:00
24 lines
630 B
TypeScript
24 lines
630 B
TypeScript
import { Widget } from "../../core/gui/Widget";
|
|
import { el } from "../../core/gui/dom";
|
|
import { Label } from "../../core/gui/Label";
|
|
import "./UnavailableView.css";
|
|
|
|
/**
|
|
* Used to show that a view exists but is unavailable at the moment.
|
|
*/
|
|
export class UnavailableView extends Widget {
|
|
readonly element = el.div({ class: "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();
|
|
}
|
|
}
|