mapcomplete/UI/Base/SubtleButton.ts

40 lines
1.1 KiB
TypeScript
Raw Normal View History

import {UIElement} from "../UIElement";
import Translations from "../i18n/Translations";
import Combine from "./Combine";
2020-07-29 17:02:36 +00:00
import {link} from "fs";
export class SubtleButton extends UIElement{
private imageUrl: string;
private message: UIElement;
2020-07-29 17:02:36 +00:00
private linkTo: string = undefined;
2020-07-29 17:02:36 +00:00
constructor(imageUrl: string, message: string | UIElement, linkTo : string = undefined) {
super(undefined);
2020-07-29 17:02:36 +00:00
this.linkTo = linkTo;
this.message = Translations.W(message);
this.imageUrl = imageUrl;
}
InnerRender(): string {
2020-07-29 17:02:36 +00:00
if(this.linkTo != undefined){
return new Combine([
`<a class="subtle-button" href="${this.linkTo}" target="_blank">`,
this.imageUrl !== undefined ? `<img src='${this.imageUrl}'>` : "",
this.message,
'</a>'
]).Render();
}
return new Combine([
'<span class="subtle-button">',
this.imageUrl !== undefined ? `<img src='${this.imageUrl}'>` : "",
this.message,
'</span>'
]).Render();
}
}