mapcomplete/Customizations/Layouts/Cyclofix.ts

43 lines
1.5 KiB
TypeScript
Raw Normal View History

2020-07-07 14:00:27 +00:00
import {Layout} from "../Layout";
2020-07-20 21:43:42 +00:00
import BikeShops from "../Layers/BikeShops";
2020-07-20 10:39:43 +00:00
import Translations from "../../UI/i18n/Translations";
2020-07-20 23:37:48 +00:00
import Combine from "../../UI/Base/Combine";
import BikeOtherShops from "../Layers/BikeOtherShops";
2020-07-07 14:00:27 +00:00
2020-07-08 15:12:23 +00:00
export default class Cyclofix extends Layout {
private static RememberTheDead(): boolean {
const now = new Date();
const m = now.getMonth() + 1;
const day = new Date().getDay() + 1;
const date = day + "/" + m;
return (date === "31/10" || date === "1/11" || date === "2/11");
}
2020-07-07 14:00:27 +00:00
constructor() {
super(
"cyclofix",
["en", "nl", "fr", "gl","de"],
Translations.t.cyclofix.title,
2020-09-11 00:42:22 +00:00
["bike_repair_station", "bike_cafes", new BikeShops(), "drinking_water", "bike_parking", new BikeOtherShops(),"bike_themed_object",
// The first of november, halloween and the second of november, we remember our dead
...(Cyclofix.RememberTheDead() ? ["ghost_bike"] : [])],
16,
50.8465573,
4.3516970,
2020-07-20 23:37:48 +00:00
new Combine([
"<h3>",
Translations.t.cyclofix.title,
"</h3><br/><p>",
Translations.t.cyclofix.description,
"</p>"
2020-07-23 10:03:44 +00:00
])
);
this.icon = "./assets/bike/logo.svg"
this.description = "Easily search and contribute bicycle data nearby";
this.socialImage = "./assets/bike/cyclofix.jpeg";
this.widenFactor = 0.05;
2020-07-07 14:00:27 +00:00
}
}