import {UIElement} from "./UIElement"; import {UIEventSource} from "./UIEventSource"; import {QuestionPicker} from "./QuestionPicker"; import {OsmImageUploadHandler} from "../Logic/OsmImageUploadHandler"; import {ImageCarousel} from "./Image/ImageCarousel"; import {Changes} from "../Logic/Changes"; import {UserDetails} from "../Logic/OsmConnection"; import {VerticalCombine} from "./Base/VerticalCombine"; import {TagRendering, TagRenderingOptions} from "../Customizations/TagRendering"; import {OsmLink} from "../Customizations/Questions/OsmLink"; import {WikipediaLink} from "../Customizations/Questions/WikipediaLink"; import {And} from "../Logic/TagsFilter"; export class FeatureInfoBox extends UIElement { private _tagsES: UIEventSource; private _title: UIElement; private _osmLink: UIElement; private _questions: QuestionPicker; private _changes: Changes; private _userDetails: UIEventSource; private _imageElement: ImageCarousel; private _pictureUploader: UIElement; private _wikipedialink: UIElement; private _infoboxes: TagRendering[]; constructor( tagsES: UIEventSource, title: TagRenderingOptions, elementsToShow: TagRenderingOptions[], changes: Changes, userDetails: UIEventSource, preferedPictureLicense: UIEventSource ) { super(tagsES); this._tagsES = tagsES; this._changes = changes; this._userDetails = userDetails; this.ListenTo(userDetails); this._imageElement = new ImageCarousel(this._tagsES); this._infoboxes = []; for (const tagRenderingOption of elementsToShow) { if (tagRenderingOption.options === undefined) { throw "Tagrendering.options not defined" } this._infoboxes.push(new TagRendering(this._tagsES, this._changes, tagRenderingOption.options)) } title = title ?? new TagRenderingOptions( { mappings: [{k: new And([]), txt: ""}] } ) this._title = new TagRendering(this._tagsES, this._changes, title.options); this._osmLink = new TagRendering(this._tagsES, this._changes, new OsmLink().options); this._wikipedialink = new TagRendering(this._tagsES, this._changes, new WikipediaLink().options); this._pictureUploader = new OsmImageUploadHandler(tagsES, userDetails, preferedPictureLicense, changes, this._imageElement.slideshow).getUI(); } InnerRender(): string { const info = []; const questions = []; for (const infobox of this._infoboxes) { if (infobox.IsKnown()) { info.push(infobox); } else if (infobox.IsQuestioning()) { questions.push(infobox); } } let questionsHtml = ""; if (this._userDetails.data.loggedIn && questions.length > 0) { // We select the most important question and render that one let mostImportantQuestion; let score = -1000; for (const question of questions) { if (mostImportantQuestion === undefined || question.priority > score) { mostImportantQuestion = question; score = question.priority; } } questionsHtml = mostImportantQuestion.Render(); } return "
" + "
" + "" + this._title.Render() + "" + this._wikipedialink.Render() + this._osmLink.Render() + "
" + "
" + this._imageElement.Render() + this._pictureUploader.Render() + new VerticalCombine(info, "infobox-information ").Render() + questionsHtml + "
" + "" + "
"; } Activate() { super.Activate(); this._imageElement.Activate(); this._pictureUploader.Activate(); for (const infobox of this._infoboxes) { infobox.Activate(); } } Update() { super.Update(); this._imageElement.Update(); this._pictureUploader.Update(); this._title.Update(); for (const infobox of this._infoboxes) { infobox.Update(); } } }