import {UIElement} from "../UIElement"; import {UIEventSource} from "../../Logic/UIEventSource"; import TagRenderingConfig from "../../Customizations/JSON/TagRenderingConfig"; import TagRenderingQuestion from "./TagRenderingQuestion"; import Translations from "../i18n/Translations"; import Combine from "../Base/Combine"; import TagRenderingAnswer from "./TagRenderingAnswer"; import State from "../../State"; import Svg from "../../Svg"; export default class EditableTagRendering extends UIElement { private readonly _tags: UIEventSource; private readonly _configuration: TagRenderingConfig; private _editMode: UIEventSource = new UIEventSource(false); private _editButton: UIElement; private _question: UIElement; private _answer: UIElement; constructor(tags: UIEventSource, configuration: TagRenderingConfig) { super(tags); this._tags = tags; this._configuration = configuration; this.ListenTo(this._editMode); this.ListenTo(State.state?.osmConnection?.userDetails) this._answer = new TagRenderingAnswer(tags, configuration); this._answer.SetClass("w-full") this._question = this.GenerateQuestion(); this.dumbMode = false; if (this._configuration.question !== undefined) { if (State.state?.featureSwitchUserbadge?.data) { // 2.3em total width const self = this; this._editButton = Svg.pencil_svg().SetClass("edit-button") .onClick(() => { self._editMode.setData(true); }); } } } InnerRender(): string { if (!this._configuration?.condition?.matchesProperties(this._tags.data)) { return ""; } if (this._editMode.data) { return this._question.Render(); } if(!this._configuration.IsKnown(this._tags.data)){ return "" } return new Combine([this._answer, (State.state?.osmConnection?.userDetails?.data?.loggedIn ?? true) ? this._editButton : undefined ]).SetClass("flex w-full break-word justify-between text-default landscape:w-1/2 landscape:p-2 pb-2 border-b border-gray-300 mb-2") .Render(); } private GenerateQuestion() { const self = this; if (this._configuration.question !== undefined) { // And at last, set up the skip button const cancelbutton = Translations.t.general.cancel.Clone() .SetClass("btn btn-secondary mr-3") .onClick(() => { self._editMode.setData(false) }); return new TagRenderingQuestion(this._tags, this._configuration, () => { self._editMode.setData(false) }, cancelbutton) } } }