51 lines
No EOL
1.8 KiB
TypeScript
51 lines
No EOL
1.8 KiB
TypeScript
import {UIElement} from "../UIElement";
|
|
import {ImageSearcher} from "../../Logic/ImageSearcher";
|
|
import {UIEventSource} from "../UIEventSource";
|
|
import {SlideShow} from "../SlideShow";
|
|
import {FixedUiElement} from "../Base/FixedUiElement";
|
|
|
|
export class ImageCarousel extends UIElement {
|
|
/**
|
|
* There are multiple way to fetch images for an object
|
|
* 1) There is an image tag
|
|
* 2) There is an image tag, the image tag contains multiple ';'-seperated URLS
|
|
* 3) there are multiple image tags, e.g. 'image', 'image:0', 'image:1', and 'image_0', 'image_1' - however, these are pretty rare so we are gonna ignore them
|
|
* 4) There is a wikimedia_commons-tag, which either has a 'File': or a 'category:' containing images
|
|
* 5) There is a wikidata-tag, and the wikidata item either has an 'image' attribute or has 'a link to a wikimedia commons category'
|
|
* 6) There is a wikipedia article, from which we can deduct the wikidata item
|
|
*
|
|
* For some images, author and license should be shown
|
|
*/
|
|
private readonly searcher: ImageSearcher;
|
|
|
|
public readonly slideshow: SlideShow;
|
|
|
|
constructor(tags: UIEventSource<any>) {
|
|
super(tags);
|
|
|
|
this.searcher = new ImageSearcher(tags);
|
|
|
|
let uiElements = this.searcher.map((imageURLS: string[]) => {
|
|
const uiElements: UIElement[] = [];
|
|
for (const url of imageURLS) {
|
|
uiElements.push(ImageSearcher.CreateImageElement(url));
|
|
}
|
|
return uiElements;
|
|
});
|
|
|
|
this.slideshow = new SlideShow(
|
|
uiElements,
|
|
new FixedUiElement("")).HideOnEmpty(true);
|
|
}
|
|
|
|
InnerRender(): string {
|
|
return this.slideshow.Render();
|
|
}
|
|
|
|
|
|
Activate() {
|
|
super.Activate();
|
|
this.searcher.Activate();
|
|
}
|
|
|
|
} |