mapcomplete/Customizations/Questions/NameInline.ts

19 lines
641 B
TypeScript
Raw Normal View History

2020-09-09 16:42:13 +00:00
import {RegexTag, Tag} from "../../Logic/Tags";
import Translations from "../../UI/i18n/Translations";
2020-07-31 15:38:03 +00:00
import {TagRenderingOptions} from "../TagRenderingOptions";
2020-08-22 01:15:42 +00:00
import Translation from "../../UI/i18n/Translation";
2020-07-05 16:59:47 +00:00
export class NameInline extends TagRenderingOptions{
2020-08-22 01:15:42 +00:00
constructor(category: string | Translation ) {
2020-07-05 16:59:47 +00:00
super({
mappings: [
2020-09-09 16:42:13 +00:00
{k: new Tag("noname", "yes"), txt: Translations.t.general.noNameCategory.Subs({category: category})},
{k: new RegexTag("name", /.+/), txt: "{name}"},
{k:new Tag("name",""), txt: category}
2020-07-05 16:59:47 +00:00
]
});
}
}