forked from MapComplete/MapComplete
		
	
		
			
				
	
	
		
			27 lines
		
	
	
	
		
			1.1 KiB
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
			
		
		
	
	
			27 lines
		
	
	
	
		
			1.1 KiB
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
| import {TagRenderingOptions} from "../../TagRendering";
 | |
| import {Tag, And} from "../../../Logic/TagsFilter";
 | |
| import Translations from "../../../UI/i18n/Translations";
 | |
| 
 | |
| 
 | |
| export default class ParkingOperator extends TagRenderingOptions {
 | |
|     constructor() {
 | |
|         const to = Translations.t.cyclofix.parking.operator
 | |
|         super({
 | |
|             priority: 15,
 | |
|             question: to.question.Render(),
 | |
|             freeform: {
 | |
|                 key: "operator",
 | |
|                 template: to.template,
 | |
|                 renderTemplate: to.render,
 | |
|                 placeholder: Translations.t.cyclofix.freeFormPlaceholder
 | |
|             },
 | |
|             mappings: [
 | |
|                 {k: new Tag("operator", "KU Leuven"), txt: "KU Leuven"},
 | |
|                 {k: new Tag("operator", "Stad Halle"), txt: "Stad Halle"},
 | |
|                 {k: new Tag("operator", "Saint Gilles - Sint Gillis"), txt: "Saint Gilles - Sint Gillis"},
 | |
|                 {k: new Tag("operator", "Jette"), txt: "Jette"},
 | |
|                 {k: new And([new Tag("operator", ""), new Tag("operator:type", "private")]), txt: to.private.Render()}
 | |
|             ]
 | |
|         });
 | |
|     }
 | |
| }
 |