2020-10-14 12:15:09 +02:00
|
|
|
import {SlideShow} from "./SlideShow";
|
2020-08-17 17:23:15 +02:00
|
|
|
import {UIEventSource} from "../../Logic/UIEventSource";
|
2020-09-13 03:29:44 +02:00
|
|
|
import Combine from "../Base/Combine";
|
|
|
|
import DeleteImage from "./DeleteImage";
|
2021-06-18 01:25:13 +02:00
|
|
|
import {AttributedImage} from "./AttributedImage";
|
2021-06-11 22:51:45 +02:00
|
|
|
import BaseUIElement from "../BaseUIElement";
|
2021-06-14 19:21:33 +02:00
|
|
|
import Toggle from "../Input/Toggle";
|
2021-09-29 23:56:59 +02:00
|
|
|
import ImageProvider from "../../Logic/ImageProviders/ImageProvider";
|
2020-07-14 20:18:44 +02:00
|
|
|
|
2021-06-14 19:21:33 +02:00
|
|
|
export class ImageCarousel extends Toggle {
|
2020-06-24 00:35:19 +02:00
|
|
|
|
2021-11-07 16:34:51 +01:00
|
|
|
constructor(images: UIEventSource<{ key: string, url: string, provider: ImageProvider }[]>,
|
2021-10-20 00:19:03 +02:00
|
|
|
tags: UIEventSource<any>,
|
|
|
|
keys: string[]) {
|
2021-09-29 23:56:59 +02:00
|
|
|
const uiElements = images.map((imageURLS: { key: string, url: string, provider: ImageProvider }[]) => {
|
2021-06-11 22:51:45 +02:00
|
|
|
const uiElements: BaseUIElement[] = [];
|
2020-06-24 00:35:19 +02:00
|
|
|
for (const url of imageURLS) {
|
2021-09-29 23:56:59 +02:00
|
|
|
try {
|
|
|
|
let image = new AttributedImage(url)
|
|
|
|
|
|
|
|
if (url.key !== undefined) {
|
|
|
|
image = new Combine([
|
|
|
|
image,
|
|
|
|
new DeleteImage(url.key, tags).SetClass("delete-image-marker absolute top-0 left-0 pl-3")
|
|
|
|
]).SetClass("relative");
|
|
|
|
}
|
|
|
|
image
|
|
|
|
.SetClass("w-full block")
|
|
|
|
.SetStyle("min-width: 50px; background: grey;")
|
|
|
|
uiElements.push(image);
|
|
|
|
} catch (e) {
|
|
|
|
console.error("Could not generate image element for", url.url, "due to", e)
|
2020-09-13 03:29:44 +02:00
|
|
|
}
|
2021-09-29 23:56:59 +02:00
|
|
|
|
|
|
|
|
2020-06-24 00:35:19 +02:00
|
|
|
}
|
|
|
|
return uiElements;
|
|
|
|
});
|
2020-07-07 15:08:52 +02:00
|
|
|
|
2021-06-14 19:21:33 +02:00
|
|
|
super(
|
|
|
|
new SlideShow(uiElements).SetClass("w-full"),
|
|
|
|
undefined,
|
|
|
|
uiElements.map(els => els.length > 0)
|
|
|
|
)
|
2021-02-06 00:05:38 +01:00
|
|
|
this.SetClass("block w-full");
|
2020-06-24 00:35:19 +02:00
|
|
|
}
|
|
|
|
}
|