2020-07-31 01:45:54 +02:00
|
|
|
import {UIElement} from "../UI/UIElement";
|
|
|
|
import Locale from "../UI/i18n/Locale";
|
|
|
|
import {State} from "../State";
|
|
|
|
import {Layout} from "../Customizations/Layout";
|
|
|
|
import Translations from "./i18n/Translations";
|
2020-07-31 04:58:58 +02:00
|
|
|
import {Utils} from "../Utils";
|
2020-08-27 18:44:16 +02:00
|
|
|
import Combine from "./Base/Combine";
|
2020-08-17 17:23:15 +02:00
|
|
|
|
2020-07-31 01:45:54 +02:00
|
|
|
|
|
|
|
export class WelcomeMessage extends UIElement {
|
|
|
|
private languagePicker: UIElement;
|
|
|
|
|
|
|
|
private readonly description: UIElement;
|
|
|
|
private readonly plzLogIn: UIElement;
|
|
|
|
private readonly welcomeBack: UIElement;
|
|
|
|
private readonly tail: UIElement;
|
|
|
|
|
|
|
|
|
|
|
|
constructor() {
|
|
|
|
super(State.state.osmConnection.userDetails);
|
|
|
|
this.ListenTo(Locale.language);
|
2020-08-26 15:36:04 +02:00
|
|
|
this.languagePicker = Utils.CreateLanguagePicker(Translations.t.general.pickLanguage);
|
2020-07-31 01:45:54 +02:00
|
|
|
|
|
|
|
function fromLayout(f: (layout: Layout) => (string | UIElement)): UIElement {
|
2020-08-26 15:36:04 +02:00
|
|
|
return Translations.W(f(State.state.layoutToUse.data));
|
2020-07-31 01:45:54 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
this.description = fromLayout((layout) => layout.welcomeMessage);
|
2020-08-27 18:44:16 +02:00
|
|
|
this.plzLogIn =
|
|
|
|
fromLayout((layout) => layout.gettingStartedPlzLogin
|
|
|
|
.onClick(() => {State.state.osmConnection.AttemptLogin()})
|
|
|
|
);
|
2020-07-31 01:45:54 +02:00
|
|
|
this.welcomeBack = fromLayout((layout) => layout.welcomeBackMessage);
|
|
|
|
this.tail = fromLayout((layout) => layout.welcomeTail);
|
|
|
|
}
|
|
|
|
|
2020-08-27 18:44:16 +02:00
|
|
|
protected InnerUpdate(htmlElement: HTMLElement) {
|
|
|
|
super.InnerUpdate(htmlElement);
|
|
|
|
console.log("Innerupdating welcome message")
|
|
|
|
this.plzLogIn.Update();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2020-07-31 01:45:54 +02:00
|
|
|
InnerRender(): string {
|
|
|
|
|
2020-08-27 18:44:16 +02:00
|
|
|
let loginStatus = undefined;
|
2020-07-31 01:45:54 +02:00
|
|
|
if (State.state.featureSwitchUserbadge.data) {
|
2020-08-27 18:44:16 +02:00
|
|
|
loginStatus = (State.state.osmConnection.userDetails.data.loggedIn ? this.welcomeBack :
|
|
|
|
this.plzLogIn);
|
2020-07-31 01:45:54 +02:00
|
|
|
}
|
|
|
|
|
2020-08-27 18:44:16 +02:00
|
|
|
return new Combine([
|
|
|
|
this.description,
|
|
|
|
"<br/></br>",
|
|
|
|
// TODO this button is broken - figure out why loginStatus,
|
|
|
|
this.tail,
|
|
|
|
"<br/>",
|
|
|
|
this.languagePicker
|
|
|
|
]).Render()
|
2020-07-31 01:45:54 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
}
|