mapcomplete/UI/Input/CheckBox.ts

32 lines
1.1 KiB
TypeScript
Raw Normal View History

2020-07-20 11:30:58 +00:00
import {UIElement} from "../UIElement";
2020-07-22 09:49:01 +00:00
import Translations from "../../UI/i18n/Translations";
import {UIEventSource} from "../../Logic/UIEventSource";
2020-07-20 11:30:58 +00:00
export default class CheckBox extends UIElement{
2020-07-29 13:05:19 +00:00
public readonly isEnabled: UIEventSource<boolean>;
2020-09-12 21:15:17 +00:00
private readonly _showEnabled: UIElement;
private readonly _showDisabled: UIElement;
2020-07-22 09:01:25 +00:00
2020-07-23 23:12:57 +00:00
constructor(showEnabled: string | UIElement, showDisabled: string | UIElement, data: UIEventSource<boolean> | boolean = false) {
2020-07-22 10:17:06 +00:00
super(undefined);
2020-07-29 13:05:19 +00:00
this.isEnabled =
2020-07-23 23:12:57 +00:00
data instanceof UIEventSource ? data : new UIEventSource(data ?? false);
2020-07-29 13:05:19 +00:00
this.ListenTo(this.isEnabled);
2020-09-12 21:15:17 +00:00
this._showEnabled = Translations.W(showEnabled);
this._showDisabled =Translations.W(showDisabled);
2020-07-22 10:05:29 +00:00
const self = this;
2020-07-22 09:01:25 +00:00
this.onClick(() => {
2020-07-29 13:05:19 +00:00
self.isEnabled.setData(!self.isEnabled.data);
2020-07-22 09:01:25 +00:00
})
2020-07-23 23:12:57 +00:00
2020-07-20 11:30:58 +00:00
}
2020-07-22 09:05:04 +00:00
InnerRender(): string {
2020-07-29 13:05:19 +00:00
if (this.isEnabled.data) {
2020-07-22 09:49:01 +00:00
return Translations.W(this._showEnabled).Render();
2020-07-22 09:01:25 +00:00
} else {
2020-07-22 09:49:01 +00:00
return Translations.W(this._showDisabled).Render();
2020-07-22 09:01:25 +00:00
}
2020-07-20 11:30:58 +00:00
}
}