2020-07-29 16:46:45 +02:00
|
|
|
import {UIElement} from "../UIElement";
|
|
|
|
import Translations from "../i18n/Translations";
|
|
|
|
import Combine from "./Combine";
|
2020-09-15 02:29:31 +02:00
|
|
|
import {FixedUiElement} from "./FixedUiElement";
|
2020-07-29 16:46:45 +02:00
|
|
|
|
|
|
|
|
|
|
|
export class SubtleButton extends UIElement{
|
2020-09-15 02:29:31 +02:00
|
|
|
private readonly image: UIElement;
|
2020-09-02 11:37:34 +02:00
|
|
|
private readonly message: UIElement;
|
|
|
|
private readonly linkTo: { url: string, newTab?: boolean } = undefined;
|
2020-07-29 16:46:45 +02:00
|
|
|
|
2020-09-15 02:29:31 +02:00
|
|
|
constructor(imageUrl: string | UIElement, message: string | UIElement, linkTo: { url: string, newTab?: boolean } = undefined) {
|
2020-07-29 16:46:45 +02:00
|
|
|
super(undefined);
|
2020-07-29 19:02:36 +02:00
|
|
|
this.linkTo = linkTo;
|
2020-07-29 16:46:45 +02:00
|
|
|
this.message = Translations.W(message);
|
2020-09-15 02:29:31 +02:00
|
|
|
if(this.message !== null){
|
2021-01-17 21:04:37 +01:00
|
|
|
this.message.dumbMode = false;
|
2020-09-15 02:29:31 +02:00
|
|
|
}
|
|
|
|
if ((imageUrl ?? "") === "") {
|
|
|
|
this.image = new FixedUiElement("");
|
|
|
|
} else if (typeof (imageUrl) === "string") {
|
2020-09-17 13:13:02 +02:00
|
|
|
this.image = new FixedUiElement(`<img style="height:3em" src="${imageUrl}">`);
|
2020-09-15 02:29:31 +02:00
|
|
|
} else {
|
|
|
|
this.image = imageUrl;
|
|
|
|
}
|
2020-07-29 21:32:51 +02:00
|
|
|
|
2021-01-17 21:05:20 +01:00
|
|
|
// Reset the loading message once things are loaded
|
|
|
|
document.getElementById('centermessage').innerText = '';
|
2020-07-29 16:46:45 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
InnerRender(): string {
|
2021-01-17 21:04:37 +01:00
|
|
|
|
2020-09-02 11:37:34 +02:00
|
|
|
if(this.message !== null && this.message.IsEmpty()){
|
2020-09-15 02:29:31 +02:00
|
|
|
// Message == null: special case to force empty text
|
2020-08-31 02:59:47 +02:00
|
|
|
return "";
|
|
|
|
}
|
2020-07-29 19:02:36 +02:00
|
|
|
|
|
|
|
if(this.linkTo != undefined){
|
|
|
|
return new Combine([
|
2020-07-29 21:32:51 +02:00
|
|
|
`<a class="subtle-button" href="${this.linkTo.url}" ${this.linkTo.newTab ? 'target="_blank"' : ""}>`,
|
2020-09-15 02:29:31 +02:00
|
|
|
this.image,
|
|
|
|
this.message,
|
2020-07-29 19:02:36 +02:00
|
|
|
'</a>'
|
|
|
|
]).Render();
|
|
|
|
}
|
2021-01-17 21:04:37 +01:00
|
|
|
|
2020-07-29 16:46:45 +02:00
|
|
|
return new Combine([
|
|
|
|
'<span class="subtle-button">',
|
2020-09-15 02:29:31 +02:00
|
|
|
this.image,
|
|
|
|
this.message,
|
2020-07-29 16:46:45 +02:00
|
|
|
'</span>'
|
|
|
|
]).Render();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
}
|