| 
									
										
										
										
											2020-06-24 00:35:19 +02:00
										 |  |  | import {UIEventSource} from "../UIEventSource"; | 
					
						
							|  |  |  | import {UIElement} from "../UIElement"; | 
					
						
							|  |  |  | import {LicenseInfo, Wikimedia} from "../../Logic/Wikimedia"; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | export class WikimediaImage extends UIElement { | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-06-27 03:06:51 +02:00
										 |  |  |     static allLicenseInfos: any = {}; | 
					
						
							|  |  |  |     private _imageMeta: UIEventSource<LicenseInfo>; | 
					
						
							|  |  |  |     private _imageLocation : string; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     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'>" + | 
					
						
							|  |  |  |             "<img class='wikimedia-link' src='./assets/wikimedia-commons-white.svg' alt='Wikimedia Commons Logo'/>" + | 
					
						
							|  |  |  |             "</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>"; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | } |