mapcomplete/Customizations/Questions/NameInline.ts

27 lines
854 B
TypeScript
Raw Normal View History

2020-07-05 16:59:47 +00:00
import {TagRenderingOptions} from "../TagRendering";
import {And, Tag} from "../../Logic/TagsFilter";
import {UIElement} from "../../UI/UIElement";
import Translations from "../../UI/i18n/Translations";
2020-07-05 16:59:47 +00:00
export class NameInline extends TagRenderingOptions{
constructor(category: string | UIElement ) {
2020-07-05 16:59:47 +00:00
super({
question: "",
freeform: {
renderTemplate: "{name}",
template: Translations.t.general.nameInlineQuestion.Subs({category: category}),
2020-07-05 16:59:47 +00:00
key: "name",
extraTags: new Tag("noname", "") // Remove 'noname=yes'
},
mappings: [
{k: new Tag("noname","yes"), txt: Translations.t.general.noNameCategory.Subs({category: category})},
{k: null, txt: category}
2020-07-05 16:59:47 +00:00
]
});
}
}