2020-07-16 15:29:50 +02:00
|
|
|
import {TagRenderingOptions} from "../../TagRendering";
|
|
|
|
import {Tag} from "../../../Logic/TagsFilter";
|
2020-07-16 14:21:06 +02:00
|
|
|
|
2020-07-16 15:29:50 +02:00
|
|
|
|
|
|
|
export default class PumpOperationalStatus extends TagRenderingOptions{
|
2020-07-16 14:21:06 +02:00
|
|
|
constructor() {
|
|
|
|
super({
|
|
|
|
question: "Is the bicycle pump still operational?",
|
|
|
|
mappings: [
|
|
|
|
{k: new Tag("service:bicycle:pump:operational_status","broken"), txt: "This pump is broken"},
|
|
|
|
{k: new Tag("service:bicycle:pump:operational_status",""), txt: "This pump is operational"}
|
|
|
|
]
|
|
|
|
});
|
|
|
|
}
|
2020-07-16 15:29:50 +02:00
|
|
|
}
|