1
0
Fork 0
spacetac/src/ui/common/UIConfirmDialog.ts

43 lines
1.5 KiB
TypeScript

module TK.SpaceTac.UI {
/**
* Dialog asking for a confirmation
*/
export class UIConfirmDialog extends UIDialog {
private result: Promise<boolean>
private result_resolver?: (confirmed: boolean) => void
constructor(view: BaseView, message: string) {
super(view);
this.addText(this.width * 0.5, this.height * 0.3, message, "#90FEE3", 32);
this.result = new Promise((resolve, reject) => {
this.result_resolver = resolve;
this.addButton(this.width * 0.4, this.height * 0.6, () => resolve(false), "common-button-cancel");
this.addButton(this.width * 0.6, this.height * 0.6, () => resolve(true), "common-button-ok");
});
}
/**
* Force the result (simulate clicking the appropriate button)
*/
async forceResult(confirmed: boolean): Promise<void> {
if (this.result_resolver) {
this.result_resolver(confirmed);
await this.result;
}
}
/**
* Convenient function to ask for a confirmation, and have a promise of result
*/
static ask(view: BaseView, message: string): Promise<boolean> {
let dlg = new UIConfirmDialog(view, message);
let result = dlg.result;
return result.then(confirmed => {
dlg.close();
return confirmed;
});
}
}
}