mapcomplete/UI/Image/ImageCarousel.ts

38 lines
1.3 KiB
TypeScript
Raw Normal View History

2020-06-24 00:35:19 +02:00
import {UIElement} from "../UIElement";
import {ImageSearcher} from "../../Logic/ImageSearcher";
2020-10-14 12:15:09 +02:00
import {SlideShow} from "./SlideShow";
import {UIEventSource} from "../../Logic/UIEventSource";
import Combine from "../Base/Combine";
import DeleteImage from "./DeleteImage";
2020-10-27 01:01:34 +01:00
export class ImageCarousel extends UIElement{
2020-06-24 00:35:19 +02:00
2020-11-02 18:59:21 +01:00
public readonly slideshow: UIElement;
2020-06-24 00:35:19 +02:00
constructor(tags: UIEventSource<any>, imagePrefix: string = "image", loadSpecial: boolean =true) {
2020-06-24 00:35:19 +02:00
super(tags);
const searcher : UIEventSource<{url:string}[]> = new ImageSearcher(tags, imagePrefix, loadSpecial);
const uiElements = searcher.map((imageURLS: {key: string, url:string}[]) => {
2020-06-24 00:35:19 +02:00
const uiElements: UIElement[] = [];
for (const url of imageURLS) {
let image = ImageSearcher.CreateImageElement(url.url);
if(url.key !== undefined){
image = new Combine([
image,
new DeleteImage(url.key, tags)
]);
}
2020-07-07 15:08:52 +02:00
uiElements.push(image);
2020-06-24 00:35:19 +02:00
}
return uiElements;
});
2020-07-07 15:08:52 +02:00
2020-09-13 00:53:24 +02:00
this.slideshow = new SlideShow(uiElements).HideOnEmpty(true);
2020-11-02 18:59:21 +01:00
2020-06-24 00:35:19 +02:00
}
2020-11-02 12:38:04 +01:00
2020-06-24 00:35:19 +02:00
InnerRender(): string {
2020-09-13 00:53:24 +02:00
return this.slideshow.Render();
2020-07-07 15:08:52 +02:00
}
2020-06-24 00:35:19 +02:00
}