2019-08-28 06:50:38 +08:00
|
|
|
import { Widget } from "../../core/gui/Widget";
|
2019-08-27 20:50:16 +08:00
|
|
|
import { el } from "../../core/gui/dom";
|
|
|
|
import { Label } from "../../core/gui/Label";
|
2019-12-24 05:38:44 +08:00
|
|
|
import "./UnavailableView.css";
|
2019-08-27 20:50:16 +08:00
|
|
|
|
2019-12-24 05:38:44 +08:00
|
|
|
/**
|
|
|
|
* 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" });
|
2019-09-16 01:32:34 +08:00
|
|
|
|
2019-08-27 20:50:16 +08:00
|
|
|
private readonly label: Label;
|
|
|
|
|
2019-12-27 02:47:24 +08:00
|
|
|
constructor(message: string) {
|
2019-09-16 01:32:34 +08:00
|
|
|
super();
|
2019-08-27 20:50:16 +08:00
|
|
|
|
2019-12-27 02:47:24 +08:00
|
|
|
this.label = this.disposable(new Label(message, { enabled: false }));
|
2019-08-27 20:50:16 +08:00
|
|
|
|
|
|
|
this.element.append(this.label.element);
|
2019-09-14 21:20:36 +08:00
|
|
|
|
2019-12-20 01:54:01 +08:00
|
|
|
this.finalize_construction();
|
2019-08-27 20:50:16 +08:00
|
|
|
}
|
|
|
|
}
|