// We HAVE to mark this while importing import {Utils} from "../Utils"; Utils.runningFromConsole = true; import LayoutConfig from "../Customizations/JSON/LayoutConfig"; import {existsSync, mkdirSync, readFileSync, writeFile, writeFileSync} from "fs"; import Locale from "../UI/i18n/Locale"; import Translations from "../UI/i18n/Translations"; import {Translation} from "../UI/i18n/Translation"; import Constants from "../Models/Constants"; import * as all_known_layouts from "../assets/generated/known_layers_and_themes.json" import {LayoutConfigJson} from "../Customizations/JSON/LayoutConfigJson"; const sharp = require('sharp'); function enc(str: string): string { return encodeURIComponent(str.toLowerCase()); } const alreadyWritten = [] async function createIcon(iconPath: string, size: number) { let name = iconPath.split(".").slice(0, -1).join("."); if (name.startsWith("./")) { name = name.substr(2) } const newname = `${name}${size}.png` .replace(/\//g, "_") .replace("assets_", "assets/generated/"); if (alreadyWritten.indexOf(newname) >= 0) { return newname; } alreadyWritten.push(newname); try { readFileSync(newname); return newname; // File already exists - nothing to do } catch (e) { // Errors are normal here if this file exists } try { // We already read to file, in order to crash here if the file is not found readFileSync(iconPath); let img = await sharp(iconPath) let resized = await img.resize(size) await resized.toFile(newname) } catch (e) { console.error("Could not read icon", iconPath, "due to", e) } return newname; } async function createManifest(layout: LayoutConfig, relativePath: string) { const name = layout.id; Translation.forcedLanguage = "en" const icons = []; let icon = layout.icon; if (icon.endsWith(".svg") || icon.startsWith(""; } catch (e) { customCss = `` } } const og = ` ` let icon = layout.icon; if (icon.startsWith("`) } let themeSpecific = [ `${ogTitle}`, ``, og, customCss, ``, ``, ...apple_icons ].join("\n") let output = template .replace("Loading MapComplete, hang on...", `Loading MapComplete theme ${ogTitle}...`) .replace(/.*/s, themeSpecific); try { output = output .replace(/.*/s, ``) .replace(/.*/s, ``); } catch (e) { console.warn("Error while applying logo: ", e) } return output; } const generatedDir = "./assets/generated"; if (!existsSync(generatedDir)) { mkdirSync(generatedDir) } const blacklist = ["", "test", ".", "..", "manifest", "index", "land", "preferences", "account", "openstreetmap", "custom"] // @ts-ignore const all : LayoutConfigJson[] = all_known_layouts.themes; for (const i in all) { const layoutConfigJson : LayoutConfigJson = all[i] const layout = new LayoutConfig(layoutConfigJson, true, "generating layouts") const layoutName = layout.id if (blacklist.indexOf(layoutName.toLowerCase()) >= 0) { console.log(`Skipping a layout with name${layoutName}, it is on the blacklist`); continue; } const err = err => { if (err !== null) { console.log("Could not write manifest for ", layoutName, " because ", err) } }; createManifest(layout, "").then(manifObj => { const manif = JSON.stringify(manifObj, undefined, 2); const manifestLocation = encodeURIComponent(layout.id.toLowerCase()) + ".webmanifest"; writeFile(manifestLocation, manif, err); // Create a landing page for the given theme createLandingPage(layout, manifObj).then(landing => { writeFile(enc(layout.id) + ".html", landing, err) }); }) } createManifest(new LayoutConfig({ icon: "./assets/svg/mapcomplete_logo.svg", id: "index", language: "en", layers: [], maintainer: "Pieter Vander Vennet", startLat: 0, startLon: 0, startZoom: 0, title: "MapComplete", version: Constants.vNumber, description: "MapComplete as a map viewer and editor which show thematic POI based on OpenStreetMap" }), "").then(manifObj => { const manif = JSON.stringify(manifObj, undefined, 2); writeFileSync("index.manifest", manif) }) console.log("Counting all translations") Translations.CountTranslations(); console.log("All done!");