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";
|
2021-12-21 18:35:31 +01:00
|
|
|
import {OsmConnection} from "../../Logic/Osm/OsmConnection";
|
|
|
|
import {Changes} from "../../Logic/Osm/Changes";
|
2022-01-14 01:41:19 +01:00
|
|
|
import LayoutConfig from "../../Models/ThemeConfig/LayoutConfig";
|
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
|
|
|
|
2022-01-26 21:40:38 +01:00
|
|
|
constructor(images: UIEventSource<{ key: string, url: string, provider: ImageProvider }[]>,
|
2021-10-20 00:19:03 +02:00
|
|
|
tags: UIEventSource<any>,
|
2022-01-26 21:40:38 +01:00
|
|
|
state: { osmConnection?: OsmConnection, changes?: Changes, layoutToUse: LayoutConfig }) {
|
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,
|
2021-12-21 18:35:31 +01:00
|
|
|
new DeleteImage(url.key, tags, state).SetClass("delete-image-marker absolute top-0 left-0 pl-3")
|
2021-09-29 23:56:59 +02:00
|
|
|
]).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
|
|
|
}
|
|
|
|
}
|