mapcomplete/Customizations/TagRendering.ts

473 lines
15 KiB
TypeScript
Raw Normal View History

2020-07-05 16:59:47 +00:00
import {UIElement} from "../UI/UIElement";
import {UIEventSource} from "../Logic/UIEventSource";
2020-07-05 16:59:47 +00:00
import {And, Tag, TagsFilter, TagUtils} from "../Logic/TagsFilter";
import {FixedUiElement} from "../UI/Base/FixedUiElement";
import {SaveButton} from "../UI/SaveButton";
import {VariableUiElement} from "../UI/Base/VariableUIElement";
2020-07-31 15:38:03 +00:00
import {TagDependantUIElement} from "./UIElementConstructor";
import {TextField, ValidatedTextField} from "../UI/Input/TextField";
2020-07-20 13:54:50 +00:00
import {InputElement} from "../UI/Input/InputElement";
import {InputElementWrapper} from "../UI/Input/InputElementWrapper";
import {FixedInputElement} from "../UI/Input/FixedInputElement";
import {RadioButton} from "../UI/Input/RadioButton";
2020-07-20 22:07:04 +00:00
import Translations from "../UI/i18n/Translations";
import Locale from "../UI/i18n/Locale";
import {State} from "../State";
2020-07-31 15:38:03 +00:00
import {TagRenderingOptions} from "./TagRenderingOptions";
import Translation from "../UI/i18n/Translation";
import {SubtleButton} from "../UI/Base/SubtleButton";
import Combine from "../UI/Base/Combine";
2020-07-31 15:38:03 +00:00
export class TagRendering extends UIElement implements TagDependantUIElement {
2020-07-05 16:59:47 +00:00
2020-07-20 13:54:50 +00:00
private _priority: number;
2020-07-05 16:59:47 +00:00
private _question: string | Translation;
private _mapping: { k: TagsFilter, txt: string | UIElement, priority?: number }[];
2020-07-08 14:24:12 +00:00
private currentTags : UIEventSource<any> ;
2020-07-05 16:59:47 +00:00
private _freeform: {
key: string,
template: string | UIElement,
renderTemplate: string | Translation,
placeholder?: string | UIElement,
2020-07-05 16:59:47 +00:00
extraTags?: TagsFilter
};
2020-07-20 13:54:50 +00:00
private readonly _questionElement: InputElement<TagsFilter>;
2020-07-05 16:59:47 +00:00
private readonly _saveButton: UIElement;
private readonly _friendlyLogin: UIElement;
2020-07-05 16:59:47 +00:00
private readonly _skipButton: UIElement;
private readonly _editButton: UIElement;
private readonly _appliedTags: UIElement;
2020-07-05 16:59:47 +00:00
private readonly _questionSkipped: UIEventSource<boolean> = new UIEventSource<boolean>(false);
private readonly _editMode: UIEventSource<boolean> = new UIEventSource<boolean>(false);
private static injected = TagRendering.injectFunction();
2020-07-31 15:38:03 +00:00
static injectFunction() {
// This is a workaround as not to import tagrendering into TagREnderingOptions
TagRenderingOptions.tagRendering = (tags, options) => new TagRendering(tags, options);
return true;
}
constructor(tags: UIEventSource<any>, options: {
2020-07-05 16:59:47 +00:00
priority?: number
question?: string | Translation,
2020-07-05 16:59:47 +00:00
freeform?: {
2020-07-31 15:38:03 +00:00
key: string,
template: string | Translation,
renderTemplate: string | Translation,
placeholder?: string | Translation,
2020-07-05 16:59:47 +00:00
extraTags?: TagsFilter,
},
tagsPreprocessor?: ((tags: any) => any),
mappings?: { k: TagsFilter, txt: string | Translation, priority?: number, substitute?: boolean }[]
2020-07-05 16:59:47 +00:00
}) {
super(tags);
this.ListenTo(Locale.language);
2020-07-05 16:59:47 +00:00
this.ListenTo(this._questionSkipped);
this.ListenTo(this._editMode);
this.ListenTo(State.state?.osmConnection?.userDetails);
2020-07-05 16:59:47 +00:00
const self = this;
2020-07-26 23:19:38 +00:00
2020-07-12 21:19:05 +00:00
this._priority = options.priority ?? 0;
this.currentTags = this._source.map(tags =>
{
if (options.tagsPreprocessor === undefined) {
return tags;
}
// we clone the tags...
let newTags = {};
for (const k in tags) {
newTags[k] = tags[k];
}
// ... in order to safely edit them here
options.tagsPreprocessor(newTags);
return newTags;
}
);
2020-07-26 23:19:38 +00:00
if (options.question !== undefined) {
this._question = options.question;
2020-07-26 23:19:38 +00:00
}
2020-07-05 16:59:47 +00:00
this._mapping = [];
this._freeform = options.freeform;
2020-07-08 14:07:16 +00:00
2020-07-05 16:59:47 +00:00
for (const choice of options.mappings ?? []) {
2020-07-20 22:07:04 +00:00
let choiceSubbed = {
k: choice.k.substituteValues(this.currentTags.data),
2020-07-21 21:31:41 +00:00
txt: choice.txt,
2020-07-20 22:07:04 +00:00
priority: choice.priority
2020-07-05 16:59:47 +00:00
}
2020-07-08 09:23:36 +00:00
2020-07-20 22:07:04 +00:00
this._mapping.push({
k: choiceSubbed.k,
txt: choiceSubbed.txt
});
2020-07-05 16:59:47 +00:00
}
// Prepare the actual input element -> pick an appropriate implementation
2020-07-20 13:54:50 +00:00
this._questionElement = this.InputElementFor(options);
2020-07-05 16:59:47 +00:00
const save = () => {
2020-07-20 13:54:50 +00:00
const selection = self._questionElement.GetValue().data;
2020-07-05 16:59:47 +00:00
if (selection) {
State.state.changes.addTag(tags.data.id, selection);
2020-07-05 16:59:47 +00:00
}
self._editMode.setData(false);
}
this._appliedTags = new VariableUiElement(
self._questionElement.GetValue().map(
(tags: TagsFilter) => {
if (tags === undefined) {
2020-08-25 22:21:34 +00:00
return Translations.t.general.noTagsSelected.SetClass("subtle").Render();
}
const csCount = State.state.osmConnection.userDetails.data.csCount;
if (csCount < State.userJourney.tagsVisibleAt) {
return "";
}
if (csCount < State.userJourney.tagsVisibleAndWikiLinked) {
2020-08-25 22:21:34 +00:00
const tagsStr = tags.asHumanString(false);
return new FixedUiElement(tagsStr).SetClass("subtle").Render();
}
return tags.asHumanString(true);
}
)
);
2020-07-05 16:59:47 +00:00
const cancel = () => {
self._questionSkipped.setData(true);
self._editMode.setData(false);
2020-07-08 14:07:16 +00:00
self._source.ping(); // Send a ping upstream to render the next question
2020-07-05 16:59:47 +00:00
}
// Setup the save button and it's action
2020-07-20 13:54:50 +00:00
this._saveButton = new SaveButton(this._questionElement.GetValue())
2020-07-05 16:59:47 +00:00
.onClick(save);
this._friendlyLogin = Translations.t.general.loginToStart
.onClick(() => State.state.osmConnection.AttemptLogin())
2020-07-20 13:54:50 +00:00
this._editButton = new FixedUiElement("");
2020-07-05 16:59:47 +00:00
if (this._question !== undefined) {
this._editButton = new FixedUiElement("<img class='editbutton' src='./assets/pencil.svg' alt='edit'>")
.onClick(() => {
self._editMode.setData(true);
2020-07-20 19:39:07 +00:00
self._questionElement.GetValue().setData(self.CurrentValue());
2020-07-05 16:59:47 +00:00
});
}
const cancelContents = this._editMode.map((isEditing) => {
if (isEditing) {
return "<span class='skip-button'>"+Translations.t.general.cancel.R()+"</span>";
2020-07-05 16:59:47 +00:00
} else {
return "<span class='skip-button'>"+Translations.t.general.skip.R()+"</span>";
2020-07-05 16:59:47 +00:00
}
}, [Locale.language]);
2020-07-05 16:59:47 +00:00
// And at last, set up the skip button
this._skipButton = new VariableUiElement(cancelContents).onClick(cancel) ;
2020-07-20 13:54:50 +00:00
}
2020-07-05 16:59:47 +00:00
2020-07-20 13:54:50 +00:00
private InputElementFor(options: {
freeform?: {
2020-07-21 21:31:41 +00:00
key: string,
template: string | Translation,
renderTemplate: string | Translation,
placeholder?: string | Translation,
2020-07-20 13:54:50 +00:00
extraTags?: TagsFilter,
},
mappings?: { k: TagsFilter, txt: string | Translation, priority?: number, substitute?: boolean }[]
2020-07-20 13:54:50 +00:00
}):
InputElement<TagsFilter> {
const elements = [];
if (options.mappings !== undefined) {
2020-07-20 16:24:00 +00:00
const previousTexts= [];
2020-07-20 13:54:50 +00:00
for (const mapping of options.mappings) {
2020-07-20 16:24:00 +00:00
if(mapping.k === null){
continue;
}
if(previousTexts.indexOf(mapping.txt) >= 0){
continue;
}
previousTexts.push(this.ApplyTemplate(mapping.txt));
2020-07-20 16:24:00 +00:00
2020-07-20 13:54:50 +00:00
elements.push(this.InputElementForMapping(mapping));
}
}
if (options.freeform !== undefined) {
elements.push(this.InputForFreeForm(options.freeform));
}
if (elements.length == 0) {
2020-07-20 22:07:04 +00:00
return new FixedInputElement("This should not happen: no tag renderings defined", undefined);
2020-07-20 13:54:50 +00:00
}
if (elements.length == 1) {
return elements[0];
}
return new RadioButton(elements, false);
2020-07-05 16:59:47 +00:00
}
2020-07-20 13:54:50 +00:00
private InputElementForMapping(mapping: { k: TagsFilter, txt: string | Translation }) {
return new FixedInputElement(this.ApplyTemplate(mapping.txt),
mapping.k.substituteValues(this.currentTags.data)
);
2020-07-20 13:54:50 +00:00
}
private InputForFreeForm(freeform): InputElement<TagsFilter> {
if (freeform === undefined) {
return undefined;
}
2020-07-29 18:19:29 +00:00
const prepost = Translations.W(freeform.template).InnerRender()
.replace("$$$", "$string$")
2020-07-29 18:19:29 +00:00
.split("$");
2020-07-23 15:32:18 +00:00
const type = prepost[1];
let isValid = ValidatedTextField.inputValidation[type];
if (isValid === undefined) {
isValid = (str) => true;
}
let formatter = ValidatedTextField.formatting[type] ?? ((str) => str);
2020-07-20 13:54:50 +00:00
const pickString =
2020-07-23 15:32:18 +00:00
(string: any) => {
2020-07-20 13:54:50 +00:00
if (string === "" || string === undefined) {
return undefined;
}
if (!isValid(string, this._source.data._country)) {
2020-07-23 15:32:18 +00:00
return undefined;
}
const tag = new Tag(freeform.key, formatter(string, this._source.data._country));
2020-07-23 15:32:18 +00:00
2020-07-20 13:54:50 +00:00
if (freeform.extraTags === undefined) {
return tag;
}
return new And([
tag,
freeform.extraTags
2020-07-20 13:54:50 +00:00
]
);
};
const toString =
(tag) => {
if (tag instanceof And) {
return toString(tag.and[0])
} else if (tag instanceof Tag) {
return tag.value
}
return undefined;
}
let inputElement: InputElement<TagsFilter>;
const textField = new TextField({
placeholder: this._freeform.placeholder,
fromString: pickString,
toString: toString
});
const pre = prepost[0] !== undefined ? this.ApplyTemplate(prepost[0]) : "";
const post = prepost[2] !== undefined ? this.ApplyTemplate(prepost[2]) : "";
return new InputElementWrapper(pre, textField, post);
2020-07-05 16:59:47 +00:00
}
2020-07-20 13:54:50 +00:00
2020-07-05 16:59:47 +00:00
IsKnown(): boolean {
const tags = TagUtils.proprtiesToKV(this._source.data);
2020-07-21 21:31:41 +00:00
for (const oneOnOneElement of this._mapping) {
2020-07-05 16:59:47 +00:00
if (oneOnOneElement.k === null || oneOnOneElement.k.matches(tags)) {
return true;
}
}
2020-07-20 13:54:50 +00:00
2020-07-05 16:59:47 +00:00
return this._freeform !== undefined && this._source.data[this._freeform.key] !== undefined;
}
2020-07-24 23:07:02 +00:00
IsSkipped(): boolean {
return this._questionSkipped.data;
}
2020-07-20 13:54:50 +00:00
private CurrentValue(): TagsFilter {
const tags = TagUtils.proprtiesToKV(this._source.data);
2020-07-21 21:31:41 +00:00
for (const oneOnOneElement of this._mapping) {
if (oneOnOneElement.k !== null && oneOnOneElement.k.matches(tags)) {
2020-07-20 13:54:50 +00:00
return oneOnOneElement.k;
}
}
if (this._freeform === undefined) {
return undefined;
}
return new Tag(this._freeform.key, this._source.data[this._freeform.key]);
}
2020-07-05 16:59:47 +00:00
IsQuestioning(): boolean {
if (this.IsKnown()) {
return false;
}
if (this._question === undefined) {
// We don't ask this question in the first place
return false;
}
if (this._questionSkipped.data) {
// We don't ask for this question anymore, skipped by user
return false;
}
return true;
}
private RenderAnswer(): UIElement {
2020-07-05 16:59:47 +00:00
const tags = TagUtils.proprtiesToKV(this._source.data);
2020-07-20 22:07:04 +00:00
let freeform: UIElement = new FixedUiElement("");
2020-07-05 16:59:47 +00:00
let freeformScore = -10;
if (this._freeform !== undefined && this._source.data[this._freeform.key] !== undefined) {
freeform = this.ApplyTemplate(this._freeform.renderTemplate);
freeformScore = 0;
}
2020-07-20 22:07:04 +00:00
let highestScore = -100;
let highestTemplate = undefined;
2020-07-21 21:31:41 +00:00
for (const oneOnOneElement of this._mapping) {
2020-07-20 22:07:04 +00:00
if (oneOnOneElement.k == null ||
oneOnOneElement.k.matches(tags)) {
// We have found a matching key -> we use the template, but only if it scores better
let score = oneOnOneElement.priority ??
(oneOnOneElement.k === null ? -1 : 0);
if (score > highestScore) {
highestScore = score;
highestTemplate = oneOnOneElement.txt
2020-07-05 16:59:47 +00:00
}
}
2020-07-20 22:07:04 +00:00
}
2020-07-05 16:59:47 +00:00
2020-07-20 22:07:04 +00:00
if (freeformScore > highestScore) {
return freeform;
}
if (highestTemplate !== undefined) {
// we render the found template
return this.ApplyTemplate(highestTemplate);
}
2020-07-05 16:59:47 +00:00
}
2020-07-20 16:24:00 +00:00
InnerRender(): string {
2020-08-22 23:49:19 +00:00
if (this.IsQuestioning() && !State.state?.osmConnection?.userDetails?.data?.loggedIn) {
const question =
this.ApplyTemplate(this._question).SetClass('question-text');
return "<div class='question'>" +
new Combine([
question,
"<br/>",
this._questionElement.Render(),
"<span class='login-button-friendly'>" + this._friendlyLogin.Render() + "</span>",
]).Render() + "</div>";
}
2020-07-05 16:59:47 +00:00
if (this.IsQuestioning() || this._editMode.data) {
// Not yet known or questioning, we have to ask a question
return "<div class='question'>" +
2020-08-25 22:21:34 +00:00
new Combine([
"<span class='question-text'>",
this.ApplyTemplate(this._question),
"</span>",
"<br/>",
"<div>", this._questionElement , "</div>",
this._skipButton,
this._saveButton,
"<br/>",
this._appliedTags
]).Render() +
2020-07-05 16:59:47 +00:00
"</div>"
}
if (this.IsKnown()) {
const html = this.RenderAnswer().Render();
if (html === "") {
2020-07-05 16:59:47 +00:00
return "";
}
let editButton = "";
if (State.state?.osmConnection?.userDetails?.data?.loggedIn && this._question !== undefined) {
editButton = this._editButton.Render();
}
2020-07-20 13:54:50 +00:00
2020-07-05 16:59:47 +00:00
return "<span class='answer'>" +
"<span class='answer-text'>" + html + "</span>" +
editButton +
2020-07-05 16:59:47 +00:00
"</span>";
}
return "";
}
2020-07-20 13:54:50 +00:00
Priority(): number {
return this._priority;
}
private ApplyTemplate(template: string | Translation): UIElement {
2020-07-26 23:19:38 +00:00
if (template === undefined || template === null) {
2020-07-21 21:31:41 +00:00
throw "Trying to apply a template, but the template is null/undefined"
2020-07-20 22:07:04 +00:00
}
const self = this;
return new VariableUiElement(this.currentTags.map(tags => {
const tr = Translations.WT(template);
if (tr.Subs === undefined) {
// This is a weird edge case
return tr.InnerRender();
}
return tr.Subs(tags).InnerRender()
}));
2020-07-05 16:59:47 +00:00
}
2020-07-20 22:07:04 +00:00
2020-07-26 23:19:38 +00:00
2020-07-05 16:59:47 +00:00
}