mapcomplete/UI/FullScreenMessageBoxHandler.ts

68 lines
1.7 KiB
TypeScript
Raw Normal View History

import {UIEventSource} from "./UIEventSource";
import {UIElement} from "./UIElement";
2020-06-29 01:12:44 +00:00
import {VariableUiElement} from "./Base/VariableUIElement";
import Translations from "./i18n/Translations";
/**
* Handles the full screen popup on mobile
*/
export class FullScreenMessageBoxHandler {
2020-07-20 22:07:04 +00:00
private _uielement: UIEventSource<UIElement>;
2020-07-20 22:07:04 +00:00
constructor(uielement: UIEventSource<UIElement>,
onClear: (() => void)) {
this._uielement = uielement;
this.listenTo(uielement);
this.update();
2020-07-25 16:00:08 +00:00
if (window !== undefined) {
window.onhashchange = function () {
if (location.hash === "") {
// No more element: back to the map!
uielement.setData(undefined);
onClear();
}
2020-06-29 01:12:44 +00:00
}
}
Translations.t.general.returnToTheMap
2020-07-20 22:07:04 +00:00
.onClick(() => {
uielement.setData(undefined);
onClear();
})
2020-07-25 16:00:08 +00:00
.AttachTo("to-the-map");
2020-06-29 01:12:44 +00:00
}
listenTo(uiEventSource: UIEventSource<any>) {
const self = this;
uiEventSource.addCallback(function () {
self.update();
})
}
2020-06-29 01:12:44 +00:00
update() {
const wrapper = document.getElementById("messagesboxmobilewrapper");
const gen = this._uielement.data;
if (gen === undefined) {
2020-06-29 01:12:44 +00:00
wrapper.classList.add("hidden")
if (location.hash !== "") {
location.hash = ""
}
return;
}
2020-06-29 01:12:44 +00:00
location.hash = "#element"
wrapper.classList.remove("hidden");
2020-07-20 22:07:04 +00:00
gen
?.HideOnEmpty(true)
?.AttachTo("messagesboxmobile")
?.Activate();
}
}