diff --git a/Customizations/AllKnownLayouts.ts b/Customizations/AllKnownLayouts.ts index e5255018a..12c27223c 100644 --- a/Customizations/AllKnownLayouts.ts +++ b/Customizations/AllKnownLayouts.ts @@ -1,298 +1,52 @@ -import known_themes from "../assets/generated/known_layers_and_themes.json" +import known_themes from "../assets/generated/known_themes.json" import LayoutConfig from "../Models/ThemeConfig/LayoutConfig" -import LayerConfig from "../Models/ThemeConfig/LayerConfig" -import BaseUIElement from "../UI/BaseUIElement" -import Combine from "../UI/Base/Combine" -import Title from "../UI/Base/Title" -import List from "../UI/Base/List" -import DependencyCalculator from "../Models/ThemeConfig/DependencyCalculator" -import Constants from "../Models/Constants" -import { Utils } from "../Utils" -import Link from "../UI/Base/Link" import { LayoutConfigJson } from "../Models/ThemeConfig/Json/LayoutConfigJson" -import { LayerConfigJson } from "../Models/ThemeConfig/Json/LayerConfigJson" -export class AllKnownLayouts { - public static allKnownLayouts: Map = AllKnownLayouts.AllLayouts() - public static layoutsList: LayoutConfig[] = AllKnownLayouts.GenerateOrderedList( - AllKnownLayouts.allKnownLayouts - ) - // Must be below the list... - private static sharedLayers: Map = AllKnownLayouts.getSharedLayers() - - public static AllPublicLayers(options?: { - includeInlineLayers: true | boolean - }): LayerConfig[] { - const allLayers: LayerConfig[] = [] - const seendIds = new Set() - AllKnownLayouts.sharedLayers.forEach((layer, key) => { - seendIds.add(key) - allLayers.push(layer) - }) - if (options?.includeInlineLayers ?? true) { - const publicLayouts = AllKnownLayouts.layoutsList.filter((l) => !l.hideFromOverview) - for (const layout of publicLayouts) { - if (layout.hideFromOverview) { - continue - } - for (const layer of layout.layers) { - if (seendIds.has(layer.id)) { - continue - } - seendIds.add(layer.id) - allLayers.push(layer) - } - } - } - - return allLayers - } - - /** - * Returns all themes which use the given layer, reverse sorted by minzoom. This sort maximizes the chances that the layer is prominently featured on the first theme - */ - public static themesUsingLayer(id: string, publicOnly = true): LayoutConfig[] { - const themes = AllKnownLayouts.layoutsList - .filter((l) => !(publicOnly && l.hideFromOverview) && l.id !== "personal") - .map((theme) => ({ - theme, - minzoom: theme.layers.find((layer) => layer.id === id)?.minzoom, - })) - .filter((obj) => obj.minzoom !== undefined) - themes.sort((th0, th1) => th1.minzoom - th0.minzoom) - return themes.map((th) => th.theme) - } - - /** - * Generates documentation for the layers. - * Inline layers are included (if the theme is public) - * @param callback - * @constructor - */ - public static GenOverviewsForSingleLayer( - callback: (layer: LayerConfig, element: BaseUIElement, inlineSource: string) => void - ): void { - const allLayers: LayerConfig[] = Array.from(AllKnownLayouts.sharedLayers.values()).filter( - (layer) => Constants.priviliged_layers.indexOf(layer.id) < 0 - ) - const builtinLayerIds: Set = new Set() - allLayers.forEach((l) => builtinLayerIds.add(l.id)) - const inlineLayers = new Map() - - for (const layout of Array.from(AllKnownLayouts.allKnownLayouts.values())) { - if (layout.hideFromOverview) { - continue - } - - for (const layer of layout.layers) { - if (Constants.priviliged_layers.indexOf(layer.id) >= 0) { - continue - } - if (builtinLayerIds.has(layer.id)) { - continue - } - if (layer.source.geojsonSource !== undefined) { - // Not an OSM-source - continue - } - allLayers.push(layer) - builtinLayerIds.add(layer.id) - inlineLayers.set(layer.id, layout.id) - } - } - - const themesPerLayer = new Map() - - for (const layout of Array.from(AllKnownLayouts.allKnownLayouts.values())) { - if (layout.hideFromOverview) { - continue - } - for (const layer of layout.layers) { - if (!builtinLayerIds.has(layer.id)) { - // This is an inline layer - continue - } - if (!themesPerLayer.has(layer.id)) { - themesPerLayer.set(layer.id, []) - } - themesPerLayer.get(layer.id).push(layout.id) - } - } - - // Determine the cross-dependencies - const layerIsNeededBy: Map = new Map() - - for (const layer of allLayers) { - for (const dep of DependencyCalculator.getLayerDependencies(layer)) { - const dependency = dep.neededLayer - if (!layerIsNeededBy.has(dependency)) { - layerIsNeededBy.set(dependency, []) - } - layerIsNeededBy.get(dependency).push(layer.id) - } - } - - allLayers.forEach((layer) => { - const element = layer.GenerateDocumentation( - themesPerLayer.get(layer.id), - layerIsNeededBy, - DependencyCalculator.getLayerDependencies(layer) - ) - callback(layer, element, inlineLayers.get(layer.id)) - }) - } - - /** - * Generates the documentation for the layers overview page - * @constructor - */ - public static GenLayerOverviewText(): BaseUIElement { - for (const id of Constants.priviliged_layers) { - if (!AllKnownLayouts.sharedLayers.has(id)) { - throw "Priviliged layer definition not found: " + id - } - } - - const allLayers: LayerConfig[] = Array.from(AllKnownLayouts.sharedLayers.values()).filter( - (layer) => Constants.priviliged_layers.indexOf(layer.id) < 0 - ) - - const builtinLayerIds: Set = new Set() - allLayers.forEach((l) => builtinLayerIds.add(l.id)) - - const themesPerLayer = new Map() - - for (const layout of Array.from(AllKnownLayouts.allKnownLayouts.values())) { - for (const layer of layout.layers) { - if (!builtinLayerIds.has(layer.id)) { - continue - } - if (!themesPerLayer.has(layer.id)) { - themesPerLayer.set(layer.id, []) - } - themesPerLayer.get(layer.id).push(layout.id) - } - } - - // Determine the cross-dependencies - const layerIsNeededBy: Map = new Map() - - for (const layer of allLayers) { - for (const dep of DependencyCalculator.getLayerDependencies(layer)) { - const dependency = dep.neededLayer - if (!layerIsNeededBy.has(dependency)) { - layerIsNeededBy.set(dependency, []) - } - layerIsNeededBy.get(dependency).push(layer.id) - } - } - - return new Combine([ - new Title("Special and other useful layers", 1), - "MapComplete has a few data layers available in the theme which have special properties through builtin-hooks. Furthermore, there are some normal layers (which are built from normal Theme-config files) but are so general that they get a mention here.", - new Title("Priviliged layers", 1), - new List(Constants.priviliged_layers.map((id) => "[" + id + "](#" + id + ")")), - ...Constants.priviliged_layers - .map((id) => AllKnownLayouts.sharedLayers.get(id)) - .map((l) => - l.GenerateDocumentation( - themesPerLayer.get(l.id), - layerIsNeededBy, - DependencyCalculator.getLayerDependencies(l), - Constants.added_by_default.indexOf(l.id) >= 0, - Constants.no_include.indexOf(l.id) < 0 - ) - ), - new Title("Normal layers", 1), - "The following layers are included in MapComplete:", - new List( - Array.from(AllKnownLayouts.sharedLayers.keys()).map( - (id) => new Link(id, "./Layers/" + id + ".md") - ) - ), - ]) - } - - public static GenerateDocumentationForTheme(theme: LayoutConfig): BaseUIElement { - return new Combine([ - new Title( - new Combine([ - theme.title, - "(", - new Link(theme.id, "https://mapcomplete.osm.be/" + theme.id), - ")", - ]), - 2 - ), - theme.description, - "This theme contains the following layers:", - new List( - theme.layers - .filter((l) => !l.id.startsWith("note_import_")) - .map((l) => new Link(l.id, "../Layers/" + l.id + ".md")) - ), - "Available languages:", - new List(theme.language.filter((ln) => ln !== "_context")), - ]).SetClass("flex flex-col") - } - - public static getSharedLayers(): Map { - const sharedLayers = new Map() - for (const layer of known_themes["layers"]) { - try { - // @ts-ignore - const parsed = new LayerConfig(layer, "shared_layers") - sharedLayers.set(layer.id, parsed) - } catch (e) { - if (!Utils.runningFromConsole) { - console.error( - "CRITICAL: Could not parse a layer configuration!", - layer.id, - " due to", - e - ) - } - } - } - - return sharedLayers - } - - public static getSharedLayersConfigs(): Map { - const sharedLayers = new Map() - for (const layer of known_themes["layers"]) { - // @ts-ignore - sharedLayers.set(layer.id, layer) - } - - return sharedLayers - } - - private static GenerateOrderedList(allKnownLayouts: Map): LayoutConfig[] { - const list = [] - allKnownLayouts.forEach((layout) => { - list.push(layout) - }) - return list - } - - private static AllLayouts(): Map { - const dict: Map = new Map() +/** + * Somewhat of a dictionary, which lazily parses needed themes + */ +export class AllKnownLayoutsLazy { + private readonly dict: Map LayoutConfig }> = + new Map() + constructor() { for (const layoutConfigJson of known_themes["themes"]) { - const layout = new LayoutConfig(layoutConfigJson, true) - dict.set(layout.id, layout) - for (let i = 0; i < layout.layers.length; i++) { - let layer = layout.layers[i] - if (typeof layer === "string") { - layer = AllKnownLayouts.sharedLayers.get(layer) - layout.layers[i] = layer - if (layer === undefined) { - console.log("Defined layers are ", AllKnownLayouts.sharedLayers.keys()) - throw `Layer ${layer} was not found or defined - probably a type was made` + this.dict.set(layoutConfigJson.id, { + func: () => { + const layout = new LayoutConfig(layoutConfigJson, true) + for (let i = 0; i < layout.layers.length; i++) { + let layer = layout.layers[i] + if (typeof layer === "string") { + throw "Layer " + layer + " was not expanded in " + layout.id + } } - } - } + return layout + }, + }) } - return dict + } + + public get(key: string): LayoutConfig { + const thunk = this.dict.get(key) + if (thunk === undefined) { + return undefined + } + if (thunk["data"]) { + return thunk["data"] + } + const layout = thunk["func"]() + this.dict.set(key, { data: layout }) + return layout + } + + public keys() { + return this.dict.keys() + } + + public values() { + return Array.from(this.keys()).map((k) => this.get(k)) } } + +export class AllKnownLayouts { + public static allKnownLayouts: AllKnownLayoutsLazy = new AllKnownLayoutsLazy() +} diff --git a/Customizations/AllSharedLayers.ts b/Customizations/AllSharedLayers.ts new file mode 100644 index 000000000..7e4cf71a1 --- /dev/null +++ b/Customizations/AllSharedLayers.ts @@ -0,0 +1,69 @@ +import LayerConfig from "../Models/ThemeConfig/LayerConfig" +import { Utils } from "../Utils" +import known_themes from "../assets/generated/known_layers.json" +import { LayerConfigJson } from "../Models/ThemeConfig/Json/LayerConfigJson" +import { ALL } from "dns" +import { AllKnownLayouts } from "./AllKnownLayouts" +export class AllSharedLayers { + public static sharedLayers: Map = AllSharedLayers.getSharedLayers() + public static getSharedLayersConfigs(): Map { + const sharedLayers = new Map() + for (const layer of known_themes.layers) { + // @ts-ignore + sharedLayers.set(layer.id, layer) + } + + return sharedLayers + } + private static getSharedLayers(): Map { + const sharedLayers = new Map() + for (const layer of known_themes.layers) { + try { + // @ts-ignore + const parsed = new LayerConfig(layer, "shared_layers") + sharedLayers.set(layer.id, parsed) + } catch (e) { + if (!Utils.runningFromConsole) { + console.error( + "CRITICAL: Could not parse a layer configuration!", + layer.id, + " due to", + e + ) + } + } + } + + return sharedLayers + } + + public static AllPublicLayers(options?: { + includeInlineLayers: true | boolean + }): LayerConfig[] { + const allLayers: LayerConfig[] = [] + const seendIds = new Set() + AllSharedLayers.sharedLayers.forEach((layer, key) => { + seendIds.add(key) + allLayers.push(layer) + }) + if (options?.includeInlineLayers ?? true) { + const publicLayouts = Array.from(AllKnownLayouts.allKnownLayouts.values()).filter( + (l) => !l.hideFromOverview + ) + for (const layout of publicLayouts) { + if (layout.hideFromOverview) { + continue + } + for (const layer of layout.layers) { + if (seendIds.has(layer.id)) { + continue + } + seendIds.add(layer.id) + allLayers.push(layer) + } + } + } + + return allLayers + } +} diff --git a/Logic/DetermineLayout.ts b/Logic/DetermineLayout.ts index 072581d46..d0d166ab8 100644 --- a/Logic/DetermineLayout.ts +++ b/Logic/DetermineLayout.ts @@ -30,7 +30,7 @@ export default class DetermineLayout { /** * Gets the correct layout for this website */ - public static async GetLayout(): Promise { + public static async GetLayout(): Promise { const loadCustomThemeParam = QueryParameters.GetQueryParameter( "userlayout", "false", diff --git a/Models/Constants.ts b/Models/Constants.ts index a24c53628..4043b75d2 100644 --- a/Models/Constants.ts +++ b/Models/Constants.ts @@ -1,7 +1,7 @@ import { Utils } from "../Utils" export default class Constants { - public static vNumber = "0.26.1" + public static vNumber = "0.26.2" public static ImgurApiKey = "7070e7167f0a25a" public static readonly mapillary_client_token_v4 = diff --git a/UI/AllThemesGui.ts b/UI/AllThemesGui.ts index 0724aecb7..b71df1389 100644 --- a/UI/AllThemesGui.ts +++ b/UI/AllThemesGui.ts @@ -35,7 +35,7 @@ export default class AllThemesGui { ]) .SetClass("block m-5 lg:w-3/4 lg:ml-40") .SetStyle("pointer-events: all;") - .AttachTo("topleft-tools") + .AttachTo("top-left") } catch (e) { console.error(">>>> CRITICAL", e) new FixedUiElement( diff --git a/UI/BigComponents/MoreScreen.ts b/UI/BigComponents/MoreScreen.ts index 05775dd47..77d0b6af1 100644 --- a/UI/BigComponents/MoreScreen.ts +++ b/UI/BigComponents/MoreScreen.ts @@ -3,7 +3,6 @@ import Svg from "../../Svg" import Combine from "../Base/Combine" import { SubtleButton } from "../Base/SubtleButton" import Translations from "../i18n/Translations" -import personal from "../../assets/themes/personal/personal.json" import Constants from "../../Models/Constants" import BaseUIElement from "../BaseUIElement" import LayoutConfig from "../../Models/ThemeConfig/LayoutConfig" @@ -382,7 +381,7 @@ export default class MoreScreen extends Combine { return undefined } const button = MoreScreen.createLinkButton(state, layout)?.SetClass(buttonClass) - if (layout.id === personal.id) { + if (layout.id === "personal") { const element = new VariableUiElement( state.osmConnection.userDetails .map((userdetails) => userdetails.csCount) diff --git a/UI/ImportFlow/SelectTheme.ts b/UI/ImportFlow/SelectTheme.ts index 766a23688..e750c0293 100644 --- a/UI/ImportFlow/SelectTheme.ts +++ b/UI/ImportFlow/SelectTheme.ts @@ -37,7 +37,7 @@ export default class SelectTheme constructor(params: { features: any[]; layer: LayerConfig; bbox: BBox }) { const t = Translations.t.importHelper.selectTheme - let options: InputElement[] = AllKnownLayouts.layoutsList + let options: InputElement[] = Array.from(AllKnownLayouts.allKnownLayouts.values()) .filter((th) => th.layers.some((l) => l.id === params.layer.id)) .filter((th) => th.id !== "personal") .map( @@ -60,7 +60,7 @@ export default class SelectTheme return [] } // we get the layer with the correct ID via the actual theme config, as the actual theme might have different presets due to overrides - const themeConfig = AllKnownLayouts.layoutsList.find((th) => th.id === theme) + const themeConfig = AllKnownLayouts.allKnownLayouts.get(theme) const layer = themeConfig.layers.find((l) => l.id === params.layer.id) return layer.presets }) diff --git a/UI/StatisticsGUI.ts b/UI/StatisticsGUI.ts index 2c070c797..4bd947ebd 100644 --- a/UI/StatisticsGUI.ts +++ b/UI/StatisticsGUI.ts @@ -8,17 +8,17 @@ import { Utils } from "../Utils" import Combine from "./Base/Combine" import { StackedRenderingChart } from "./BigComponents/TagRenderingChart" import { LayerFilterPanel } from "./BigComponents/FilterView" -import { AllKnownLayouts } from "../Customizations/AllKnownLayouts" import MapState from "../Logic/State/MapState" import BaseUIElement from "./BaseUIElement" import Title from "./Base/Title" import { FixedUiElement } from "./Base/FixedUiElement" import List from "./Base/List" - +import LayoutConfig from "../Models/ThemeConfig/LayoutConfig" +import mcChanges from "../assets/generated/themes/mapcomplete-changes.json" class StatisticsForOverviewFile extends Combine { constructor(homeUrl: string, paths: string[]) { paths = paths.filter((p) => !p.endsWith("file-overview.json")) - const layer = AllKnownLayouts.allKnownLayouts.get("mapcomplete-changes").layers[0] + const layer = new LayoutConfig(mcChanges, true).layers[0] const filteredLayer = MapState.InitializeFilteredLayers( { id: "statistics-view", layers: [layer] }, undefined diff --git a/index.html b/index.html index 1c286477f..16a018c38 100644 --- a/index.html +++ b/index.html @@ -58,12 +58,7 @@ -
-
- -
-
+
./assets/generated/known_layers_and_themes.json && echo {\\\"layers\\\": []} > ./assets/generated/known_layers.json && rm -f ./assets/generated/layers/*.json && rm -f ./assets/generated/themes/*.json && npm run generate:layeroverview && ts-node scripts/generateLayerOverview.ts --force", + "reset:layeroverview": "echo {\\\"themes\\\":[]} > ./assets/generated/known_themes.json && echo {\\\"layers\\\": []} > ./assets/generated/known_layers.json && rm -f ./assets/generated/layers/*.json && rm -f ./assets/generated/themes/*.json && npm run generate:layeroverview && ts-node scripts/generateLayerOverview.ts --force", "generate": "mkdir -p ./assets/generated; npm run generate:licenses; npm run generate:images; npm run generate:charging-stations; npm run generate:translations; npm run reset:layeroverview; npm run generate:service-worker", "generate:charging-stations": "cd ./assets/layers/charging_station && ts-node csvToJson.ts && cd -", "prepare-deploy": "npm run generate:service-worker && ./scripts/build.sh", diff --git a/scripts/generateCache.ts b/scripts/generateCache.ts index 104498895..573a6b90d 100644 --- a/scripts/generateCache.ts +++ b/scripts/generateCache.ts @@ -539,10 +539,7 @@ export async function main(args: string[]) { const theme = AllKnownLayouts.allKnownLayouts.get(themeName) if (theme === undefined) { - const keys = [] - AllKnownLayouts.allKnownLayouts.forEach((_, key) => { - keys.push(key) - }) + const keys = Array.from(AllKnownLayouts.allKnownLayouts.keys()) console.error("The theme " + theme + " was not found; try one of ", keys) return } diff --git a/scripts/generateDocs.ts b/scripts/generateDocs.ts index a66cf8e3d..94f80a5e2 100644 --- a/scripts/generateDocs.ts +++ b/scripts/generateDocs.ts @@ -24,6 +24,11 @@ import { DefaultGuiState } from "../UI/DefaultGuiState" import fakedom from "fake-dom" import Hotkeys from "../UI/Base/Hotkeys" import { QueryParameters } from "../Logic/Web/QueryParameters" +import Link from "../UI/Base/Link" +import Constants from "../Models/Constants" +import LayerConfig from "../Models/ThemeConfig/LayerConfig" +import DependencyCalculator from "../Models/ThemeConfig/DependencyCalculator" +import { AllSharedLayers } from "../Customizations/AllSharedLayers" function WriteFile( filename, html: BaseUIElement, @@ -74,6 +79,179 @@ function WriteFile( writeFileSync(filename, warnAutomated + md) } +function GenerateDocumentationForTheme(theme: LayoutConfig): BaseUIElement { + return new Combine([ + new Title( + new Combine([ + theme.title, + "(", + new Link(theme.id, "https://mapcomplete.osm.be/" + theme.id), + ")", + ]), + 2 + ), + theme.description, + "This theme contains the following layers:", + new List( + theme.layers + .filter((l) => !l.id.startsWith("note_import_")) + .map((l) => new Link(l.id, "../Layers/" + l.id + ".md")) + ), + "Available languages:", + new List(theme.language.filter((ln) => ln !== "_context")), + ]).SetClass("flex flex-col") +} + +/** + * Generates the documentation for the layers overview page + * @constructor + */ +function GenLayerOverviewText(): BaseUIElement { + for (const id of Constants.priviliged_layers) { + if (!AllSharedLayers.sharedLayers.has(id)) { + throw "Priviliged layer definition not found: " + id + } + } + + const allLayers: LayerConfig[] = Array.from(AllSharedLayers.sharedLayers.values()).filter( + (layer) => Constants.priviliged_layers.indexOf(layer.id) < 0 + ) + + const builtinLayerIds: Set = new Set() + allLayers.forEach((l) => builtinLayerIds.add(l.id)) + + const themesPerLayer = new Map() + + for (const layout of Array.from(AllKnownLayouts.allKnownLayouts.values())) { + for (const layer of layout.layers) { + if (!builtinLayerIds.has(layer.id)) { + continue + } + if (!themesPerLayer.has(layer.id)) { + themesPerLayer.set(layer.id, []) + } + themesPerLayer.get(layer.id).push(layout.id) + } + } + + // Determine the cross-dependencies + const layerIsNeededBy: Map = new Map() + + for (const layer of allLayers) { + for (const dep of DependencyCalculator.getLayerDependencies(layer)) { + const dependency = dep.neededLayer + if (!layerIsNeededBy.has(dependency)) { + layerIsNeededBy.set(dependency, []) + } + layerIsNeededBy.get(dependency).push(layer.id) + } + } + + return new Combine([ + new Title("Special and other useful layers", 1), + "MapComplete has a few data layers available in the theme which have special properties through builtin-hooks. Furthermore, there are some normal layers (which are built from normal Theme-config files) but are so general that they get a mention here.", + new Title("Priviliged layers", 1), + new List(Constants.priviliged_layers.map((id) => "[" + id + "](#" + id + ")")), + ...Constants.priviliged_layers + .map((id) => AllSharedLayers.sharedLayers.get(id)) + .map((l) => + l.GenerateDocumentation( + themesPerLayer.get(l.id), + layerIsNeededBy, + DependencyCalculator.getLayerDependencies(l), + Constants.added_by_default.indexOf(l.id) >= 0, + Constants.no_include.indexOf(l.id) < 0 + ) + ), + new Title("Normal layers", 1), + "The following layers are included in MapComplete:", + new List( + Array.from(AllSharedLayers.sharedLayers.keys()).map( + (id) => new Link(id, "./Layers/" + id + ".md") + ) + ), + ]) +} + +/** + * Generates documentation for the layers. + * Inline layers are included (if the theme is public) + * @param callback + * @constructor + */ +function GenOverviewsForSingleLayer( + callback: (layer: LayerConfig, element: BaseUIElement, inlineSource: string) => void +): void { + const allLayers: LayerConfig[] = Array.from(AllSharedLayers.sharedLayers.values()).filter( + (layer) => Constants.priviliged_layers.indexOf(layer.id) < 0 + ) + const builtinLayerIds: Set = new Set() + allLayers.forEach((l) => builtinLayerIds.add(l.id)) + const inlineLayers = new Map() + + for (const layout of Array.from(AllKnownLayouts.allKnownLayouts.values())) { + if (layout.hideFromOverview) { + continue + } + + for (const layer of layout.layers) { + if (Constants.priviliged_layers.indexOf(layer.id) >= 0) { + continue + } + if (builtinLayerIds.has(layer.id)) { + continue + } + if (layer.source.geojsonSource !== undefined) { + // Not an OSM-source + continue + } + allLayers.push(layer) + builtinLayerIds.add(layer.id) + inlineLayers.set(layer.id, layout.id) + } + } + + const themesPerLayer = new Map() + + for (const layout of Array.from(AllKnownLayouts.allKnownLayouts.values())) { + if (layout.hideFromOverview) { + continue + } + for (const layer of layout.layers) { + if (!builtinLayerIds.has(layer.id)) { + // This is an inline layer + continue + } + if (!themesPerLayer.has(layer.id)) { + themesPerLayer.set(layer.id, []) + } + themesPerLayer.get(layer.id).push(layout.id) + } + } + + // Determine the cross-dependencies + const layerIsNeededBy: Map = new Map() + + for (const layer of allLayers) { + for (const dep of DependencyCalculator.getLayerDependencies(layer)) { + const dependency = dep.neededLayer + if (!layerIsNeededBy.has(dependency)) { + layerIsNeededBy.set(dependency, []) + } + layerIsNeededBy.get(dependency).push(layer.id) + } + } + + allLayers.forEach((layer) => { + const element = layer.GenerateDocumentation( + themesPerLayer.get(layer.id), + layerIsNeededBy, + DependencyCalculator.getLayerDependencies(layer) + ) + callback(layer, element, inlineLayers.get(layer.id)) + }) +} + /** * The wikitable is updated as some tools show an overview of apps based on the wiki. */ @@ -131,7 +309,7 @@ console.log("Starting documentation generation...") ScriptUtils.fixUtils() generateWikipage() -AllKnownLayouts.GenOverviewsForSingleLayer((layer, element, inlineSource) => { +GenOverviewsForSingleLayer((layer, element, inlineSource) => { console.log("Exporting ", layer.id) if (!existsSync("./Docs/Layers")) { mkdirSync("./Docs/Layers") @@ -144,7 +322,7 @@ AllKnownLayouts.GenOverviewsForSingleLayer((layer, element, inlineSource) => { }) Array.from(AllKnownLayouts.allKnownLayouts.values()).map((theme) => { - const docs = AllKnownLayouts.GenerateDocumentationForTheme(theme) + const docs = GenerateDocumentationForTheme(theme) WriteFile( "./Docs/Themes/" + theme.id + ".md", docs, @@ -167,9 +345,7 @@ WriteFile( WriteFile("./Docs/SpecialInputElements.md", ValidatedTextField.HelpText(), [ "UI/Input/ValidatedTextField.ts", ]) -WriteFile("./Docs/BuiltinLayers.md", AllKnownLayouts.GenLayerOverviewText(), [ - "Customizations/AllKnownLayouts.ts", -]) +WriteFile("./Docs/BuiltinLayers.md", GenLayerOverviewText(), ["Customizations/AllKnownLayouts.ts"]) WriteFile("./Docs/BuiltinQuestions.md", SharedTagRenderings.HelpText(), [ "Customizations/SharedTagRenderings.ts", "assets/tagRenderings/questions.json", diff --git a/scripts/generateLayerOverview.ts b/scripts/generateLayerOverview.ts index 38c4e34b7..7670167e0 100644 --- a/scripts/generateLayerOverview.ts +++ b/scripts/generateLayerOverview.ts @@ -21,8 +21,7 @@ import { PrepareLayer } from "../Models/ThemeConfig/Conversion/PrepareLayer" import { PrepareTheme } from "../Models/ThemeConfig/Conversion/PrepareTheme" import { DesugaringContext } from "../Models/ThemeConfig/Conversion/Conversion" import { Utils } from "../Utils" -import { AllKnownLayouts } from "../Customizations/AllKnownLayouts" -import { Script } from "vm" +import { AllSharedLayers } from "../Customizations/AllSharedLayers" // This scripts scans 'assets/layers/*.json' for layer definition files and 'assets/themes/*.json' for theme definition files. // It spits out an overview of those to be used to load them @@ -259,9 +258,8 @@ class LayerOverviewUtils { ) writeFileSync( - "./assets/generated/known_layers_and_themes.json", + "./assets/generated/known_themes.json", JSON.stringify({ - layers: Array.from(sharedLayers.values()), themes: Array.from(sharedThemes.values()), }) ) @@ -306,7 +304,7 @@ class LayerOverviewUtils { "GenerateLayerOverview:" ) - if (AllKnownLayouts.getSharedLayersConfigs().size == 0) { + if (AllSharedLayers.getSharedLayersConfigs().size == 0) { console.error("This was a bootstrapping-run. Run generate layeroverview again!") } else { const green = (s) => "\x1b[92m" + s + "\x1b[0m" @@ -325,7 +323,7 @@ class LayerOverviewUtils { const sharedTagRenderings = this.getSharedTagRenderings(doesImageExist) const state: DesugaringContext = { tagRenderings: sharedTagRenderings, - sharedLayers: AllKnownLayouts.getSharedLayersConfigs(), + sharedLayers: AllSharedLayers.getSharedLayersConfigs(), } const sharedLayers = new Map() const prepLayer = new PrepareLayer(state) diff --git a/scripts/generateTaginfoProjectFiles.ts b/scripts/generateTaginfoProjectFiles.ts index 5e7f610a8..a76803bc8 100644 --- a/scripts/generateTaginfoProjectFiles.ts +++ b/scripts/generateTaginfoProjectFiles.ts @@ -205,7 +205,7 @@ function main() { const files = [] - for (const layout of AllKnownLayouts.layoutsList) { + for (const layout of AllKnownLayouts.allKnownLayouts.values()) { if (layout.hideFromOverview) { continue }