2020-06-24 00:35:19 +02:00
|
|
|
import {UIElement} from "../UIElement";
|
2020-08-17 17:23:15 +02:00
|
|
|
import {LicenseInfo, Wikimedia} from "../../Logic/Web/Wikimedia";
|
|
|
|
import {UIEventSource} from "../../Logic/UIEventSource";
|
2020-06-24 00:35:19 +02:00
|
|
|
|
|
|
|
|
|
|
|
export class WikimediaImage extends UIElement {
|
|
|
|
|
|
|
|
|
2020-06-27 03:06:51 +02:00
|
|
|
static allLicenseInfos: any = {};
|
2020-09-10 19:33:06 +02:00
|
|
|
private readonly _imageMeta: UIEventSource<LicenseInfo>;
|
|
|
|
private readonly _imageLocation : string;
|
2020-06-27 03:06:51 +02:00
|
|
|
|
|
|
|
constructor(source: string) {
|
|
|
|
super(undefined)
|
|
|
|
this._imageLocation = source;
|
|
|
|
if (WikimediaImage.allLicenseInfos[source] !== undefined) {
|
|
|
|
this._imageMeta = WikimediaImage.allLicenseInfos[source];
|
|
|
|
} else {
|
|
|
|
this._imageMeta = new UIEventSource<LicenseInfo>(new LicenseInfo());
|
|
|
|
WikimediaImage.allLicenseInfos[source] = this._imageMeta;
|
2020-07-08 15:09:34 +02:00
|
|
|
const self = this;
|
|
|
|
Wikimedia.LicenseData(source, (info) => {
|
|
|
|
self._imageMeta.setData(info);
|
|
|
|
})
|
2020-06-27 03:06:51 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
this.ListenTo(this._imageMeta);
|
|
|
|
|
2020-07-08 15:09:34 +02:00
|
|
|
|
2020-06-24 00:35:19 +02:00
|
|
|
}
|
|
|
|
|
2020-07-26 02:01:34 +02:00
|
|
|
InnerRender(): string {
|
2020-06-27 03:06:51 +02:00
|
|
|
let url = Wikimedia.ImageNameToUrl(this._imageLocation, 500, 400);
|
2020-06-24 00:35:19 +02:00
|
|
|
url = url.replace(/'/g, '%27');
|
2020-06-27 03:06:51 +02:00
|
|
|
|
|
|
|
const wikimediaLink =
|
|
|
|
"<a href='https://commons.wikimedia.org/wiki/" + this._imageLocation + "' target='_blank'>" +
|
2020-09-13 03:29:44 +02:00
|
|
|
"<img style='width:2em;height: 2em' class='wikimedia-link' src='./assets/wikimedia-commons-white.svg' alt='Wikimedia Commons Logo'/>" +
|
2020-06-27 03:06:51 +02:00
|
|
|
"</a> ";
|
|
|
|
|
|
|
|
const attribution =
|
|
|
|
"<span class='attribution-author'>" + (this._imageMeta.data.artist ?? "") + "</span>" + " <span class='license'>" + (this._imageMeta.data.licenseShortName ?? "") + "</span>";
|
|
|
|
const image = "<img src='" + url + "' " + "alt='" + this._imageMeta.data.description + "' >";
|
|
|
|
|
|
|
|
return "<div class='imgWithAttr'>" +
|
|
|
|
image +
|
|
|
|
"<div class='attribution'>" +
|
|
|
|
wikimediaLink +
|
|
|
|
attribution +
|
|
|
|
"</div>" +
|
2020-06-24 00:35:19 +02:00
|
|
|
"</div>";
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
}
|