2020-07-29 16:46:45 +02:00
|
|
|
import Translations from "../i18n/Translations";
|
|
|
|
import Combine from "./Combine";
|
2021-06-10 01:36:20 +02:00
|
|
|
import BaseUIElement from "../BaseUIElement";
|
|
|
|
import Link from "./Link";
|
|
|
|
import Img from "./Img";
|
|
|
|
import {UIEventSource} from "../../Logic/UIEventSource";
|
2020-07-29 16:46:45 +02:00
|
|
|
|
|
|
|
|
2021-05-30 00:17:31 +02:00
|
|
|
export class SubtleButton extends Combine {
|
2020-07-29 16:46:45 +02:00
|
|
|
|
2021-06-10 01:36:20 +02:00
|
|
|
constructor(imageUrl: string | BaseUIElement, message: string | BaseUIElement, linkTo: { url: string | UIEventSource<string>, newTab?: boolean } = undefined) {
|
2021-05-30 00:17:31 +02:00
|
|
|
super(SubtleButton.generateContent(imageUrl, message, linkTo));
|
|
|
|
|
|
|
|
this.SetClass("block flex p-3 my-2 bg-blue-100 rounded-lg hover:shadow-xl hover:bg-blue-200 link-no-underline")
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2021-06-10 01:36:20 +02:00
|
|
|
private static generateContent(imageUrl: string | BaseUIElement, messageT: string | BaseUIElement, linkTo: { url: string | UIEventSource<string>, newTab?: boolean } = undefined): (BaseUIElement )[] {
|
2021-05-30 00:17:31 +02:00
|
|
|
const message = Translations.W(messageT);
|
2021-01-18 19:36:19 +01:00
|
|
|
let img;
|
2020-09-15 02:29:31 +02:00
|
|
|
if ((imageUrl ?? "") === "") {
|
2021-06-10 01:36:20 +02:00
|
|
|
img = undefined;
|
2020-09-15 02:29:31 +02:00
|
|
|
} else if (typeof (imageUrl) === "string") {
|
2021-06-10 01:36:20 +02:00
|
|
|
img = new Img(imageUrl).SetClass("w-full")
|
2020-09-15 02:29:31 +02:00
|
|
|
} else {
|
2021-01-18 19:36:19 +01:00
|
|
|
img = imageUrl;
|
2020-09-15 02:29:31 +02:00
|
|
|
}
|
2021-06-10 01:36:20 +02:00
|
|
|
img?.SetClass("block flex items-center justify-center h-11 w-11 flex-shrink0")
|
2021-05-30 00:17:31 +02:00
|
|
|
const image = new Combine([img])
|
2021-01-25 03:12:09 +01:00
|
|
|
.SetClass("flex-shrink-0");
|
2021-06-10 01:36:20 +02:00
|
|
|
|
|
|
|
if (linkTo == undefined) {
|
2021-05-30 00:17:31 +02:00
|
|
|
return [
|
|
|
|
image,
|
|
|
|
message,
|
|
|
|
];
|
2020-07-29 19:02:36 +02:00
|
|
|
}
|
2021-06-10 01:36:20 +02:00
|
|
|
|
|
|
|
|
2021-05-30 00:17:31 +02:00
|
|
|
return [
|
2021-06-10 01:36:20 +02:00
|
|
|
new Link(
|
|
|
|
new Combine([
|
|
|
|
image,
|
|
|
|
message?.SetClass("block ml-4 overflow-ellipsis")
|
|
|
|
]).SetClass("flex group"),
|
|
|
|
linkTo.url,
|
|
|
|
linkTo.newTab ?? false
|
|
|
|
)
|
2021-05-30 00:17:31 +02:00
|
|
|
];
|
|
|
|
|
2020-07-29 16:46:45 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
}
|