Move wikipage-generation
This commit is contained in:
parent
1f8e56259e
commit
c83f1fc09f
3 changed files with 51 additions and 35 deletions
|
@ -4,6 +4,8 @@ export interface TagRenderingConfigJson {
|
||||||
/**
|
/**
|
||||||
* Renders this value. Note that "{key}"-parts are substituted by the corresponding values of the element.
|
* Renders this value. Note that "{key}"-parts are substituted by the corresponding values of the element.
|
||||||
* If neither 'textFieldQuestion' nor 'mappings' are defined, this text is simply shown as default value.
|
* If neither 'textFieldQuestion' nor 'mappings' are defined, this text is simply shown as default value.
|
||||||
|
*
|
||||||
|
* Note that this is a HTML-interpreted value, so you can add links as e.g. <a href='{website}'>{website}</a>
|
||||||
*/
|
*/
|
||||||
render?: string | any,
|
render?: string | any,
|
||||||
|
|
||||||
|
|
|
@ -75,29 +75,6 @@ function validate(layout: LayoutConfig) {
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
function generateWikiEntry(layout: LayoutConfig) {
|
|
||||||
if (layout.hideFromOverview) {
|
|
||||||
return "";
|
|
||||||
}
|
|
||||||
const languages = layout.language.map(ln => `{{#language:${ln}|en}}`).join(", ")
|
|
||||||
let auth = "Yes";
|
|
||||||
if (layout.maintainer !== "" && layout.maintainer !== "MapComplete") {
|
|
||||||
auth = `Yes, by ${layout.maintainer};`
|
|
||||||
}
|
|
||||||
return `{{service_item
|
|
||||||
|name= [https://mapcomplete.osm.be/${layout.id} ${layout.id}]
|
|
||||||
|region= Worldwide
|
|
||||||
|lang= ${languages}
|
|
||||||
|descr= A MapComplete theme: ${Translations.W(layout.description)
|
|
||||||
.InnerRender()
|
|
||||||
.replace("<a href='", "[[")
|
|
||||||
.replace(/'>.*<\/a>/, "]]")
|
|
||||||
}
|
|
||||||
|material= {{yes|[https://mapcomplete.osm.be/ ${auth}]}}
|
|
||||||
|image= MapComplete_Screenshot.png
|
|
||||||
|genre= POI, editor, ${layout.id}
|
|
||||||
}}`
|
|
||||||
}
|
|
||||||
|
|
||||||
const alreadyWritten = []
|
const alreadyWritten = []
|
||||||
|
|
||||||
|
@ -245,11 +222,6 @@ if (!existsSync(generatedDir)) {
|
||||||
const blacklist = ["", "test", ".", "..", "manifest", "index", "land", "preferences", "account", "openstreetmap", "custom"]
|
const blacklist = ["", "test", ".", "..", "manifest", "index", "land", "preferences", "account", "openstreetmap", "custom"]
|
||||||
const all = AllKnownLayouts.allSets;
|
const all = AllKnownLayouts.allSets;
|
||||||
|
|
||||||
let wikiPage = "{|class=\"wikitable sortable\"\n" +
|
|
||||||
"! Name, link !! Genre !! Covered region !! Language !! Description !! Free materials !! Image\n" +
|
|
||||||
"|-";
|
|
||||||
|
|
||||||
|
|
||||||
for (const layoutName in all) {
|
for (const layoutName in all) {
|
||||||
if (blacklist.indexOf(layoutName.toLowerCase()) >= 0) {
|
if (blacklist.indexOf(layoutName.toLowerCase()) >= 0) {
|
||||||
console.log(`Skipping a layout with name${layoutName}, it is on the blacklist`);
|
console.log(`Skipping a layout with name${layoutName}, it is on the blacklist`);
|
||||||
|
@ -270,16 +242,9 @@ for (const layoutName in all) {
|
||||||
// Create a landing page for the given theme
|
// Create a landing page for the given theme
|
||||||
createLandingPage(layout).then(landing => {
|
createLandingPage(layout).then(landing => {
|
||||||
writeFile(enc(layout.id) + ".html", landing, err)
|
writeFile(enc(layout.id) + ".html", landing, err)
|
||||||
wikiPage += "\n" + generateWikiEntry(layout);
|
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
wikiPage += "\n|}"
|
|
||||||
|
|
||||||
writeFile(generatedDir + "/wikiIndex", wikiPage, (err) => {
|
|
||||||
if (err !== null) {
|
|
||||||
console.log("Could not save wikiindex", err);
|
|
||||||
}
|
|
||||||
});
|
|
||||||
createManifest(new LayoutConfig({
|
createManifest(new LayoutConfig({
|
||||||
icon: "./assets/svg/mapcomplete_logo.svg",
|
icon: "./assets/svg/mapcomplete_logo.svg",
|
||||||
id: "index",
|
id: "index",
|
||||||
|
|
49
scripts/createWikiPage.ts
Normal file
49
scripts/createWikiPage.ts
Normal file
|
@ -0,0 +1,49 @@
|
||||||
|
import {Utils} from "../Utils";
|
||||||
|
Utils.runningFromConsole = true;
|
||||||
|
import {writeFile} from "fs";
|
||||||
|
import LayoutConfig from "../Customizations/JSON/LayoutConfig";
|
||||||
|
import Translations from "../UI/i18n/Translations";
|
||||||
|
import {AllKnownLayouts} from "../Customizations/AllKnownLayouts";
|
||||||
|
|
||||||
|
|
||||||
|
function generateWikiEntry(layout: LayoutConfig) {
|
||||||
|
if (layout.hideFromOverview) {
|
||||||
|
return "";
|
||||||
|
}
|
||||||
|
const languages = layout.language.map(ln => `{{#language:${ln}|en}}`).join(", ")
|
||||||
|
let auth = "Yes";
|
||||||
|
if (layout.maintainer !== "" && layout.maintainer !== "MapComplete") {
|
||||||
|
auth = `Yes, by ${layout.maintainer};`
|
||||||
|
}
|
||||||
|
return `{{service_item
|
||||||
|
|name= [https://mapcomplete.osm.be/${layout.id} ${layout.id}]
|
||||||
|
|region= Worldwide
|
||||||
|
|lang= ${languages}
|
||||||
|
|descr= A MapComplete theme: ${Translations.W(layout.description)
|
||||||
|
.InnerRender()
|
||||||
|
.replace("<a href='", "[[")
|
||||||
|
.replace(/'>.*<\/a>/, "]]")
|
||||||
|
}
|
||||||
|
|material= {{yes|[https://mapcomplete.osm.be/ ${auth}]}}
|
||||||
|
|image= MapComplete_Screenshot.png
|
||||||
|
|genre= POI, editor, ${layout.id}
|
||||||
|
}}`
|
||||||
|
}
|
||||||
|
let wikiPage = "{|class=\"wikitable sortable\"\n" +
|
||||||
|
"! Name, link !! Genre !! Covered region !! Language !! Description !! Free materials !! Image\n" +
|
||||||
|
"|-";
|
||||||
|
|
||||||
|
for (const layout of AllKnownLayouts.layoutsList) {
|
||||||
|
if(layout.hideFromOverview){
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
wikiPage += "\n" + generateWikiEntry(layout);
|
||||||
|
}
|
||||||
|
|
||||||
|
wikiPage += "\n|}"
|
||||||
|
|
||||||
|
writeFile("Docs/wikiIndex.txt", wikiPage, (err) => {
|
||||||
|
if (err !== null) {
|
||||||
|
console.log("Could not save wikiindex", err);
|
||||||
|
}
|
||||||
|
});
|
Loading…
Reference in a new issue