Enable userlayouts in personal theme and morescreen, various small fixes
This commit is contained in:
parent
4a0970a71f
commit
328dc5577c
17 changed files with 164 additions and 150 deletions
|
@ -36,8 +36,7 @@ export interface TagRenderingConfigJson {
|
||||||
}
|
}
|
||||||
|
|
||||||
export interface LayerConfigJson {
|
export interface LayerConfigJson {
|
||||||
|
name: string;
|
||||||
id: string;
|
|
||||||
title: string | any | TagRenderingConfigJson;
|
title: string | any | TagRenderingConfigJson;
|
||||||
description: string | any;
|
description: string | any;
|
||||||
minzoom: number | string,
|
minzoom: number | string,
|
||||||
|
@ -238,16 +237,15 @@ export class CustomLayoutFromJSON {
|
||||||
const tr = CustomLayoutFromJSON.TagRenderingFromJson;
|
const tr = CustomLayoutFromJSON.TagRenderingFromJson;
|
||||||
const tags = CustomLayoutFromJSON.TagsFromJson(json.overpassTags);
|
const tags = CustomLayoutFromJSON.TagsFromJson(json.overpassTags);
|
||||||
// We run the icon rendering with the bare minimum of tags (the overpass tags) to get the actual icon
|
// We run the icon rendering with the bare minimum of tags (the overpass tags) to get the actual icon
|
||||||
const icon = CustomLayoutFromJSON.TagRenderingFromJson(json.icon).construct({
|
const icon = CustomLayoutFromJSON.TagRenderingFromJson(json.icon).GetContent({id:"node/-1"});
|
||||||
tags: new UIEventSource<any>({})
|
|
||||||
}).InnerRender();
|
|
||||||
|
|
||||||
|
|
||||||
|
// @ts-ignore
|
||||||
|
const id = json.name?.replace(/[^a-zA-Z0-9_-]/g,'') ?? json.id;
|
||||||
return new LayerDefinition(
|
return new LayerDefinition(
|
||||||
json.id,
|
id,
|
||||||
{
|
{
|
||||||
description: t(json.description),
|
description: t(json.description),
|
||||||
name: Translations.WT(t(json.title.render)).txt.replace(/[^a-zA-Z0-9-_]/g, ''),
|
name: Translations.WT(t(json.name)),
|
||||||
icon: icon,
|
icon: icon,
|
||||||
minzoom: parseInt(""+json.minzoom),
|
minzoom: parseInt(""+json.minzoom),
|
||||||
title: tr(json.title),
|
title: tr(json.title),
|
||||||
|
|
|
@ -32,7 +32,7 @@ export class LayerUpdater {
|
||||||
state.layoutToUse.addCallback(() => {
|
state.layoutToUse.addCallback(() => {
|
||||||
self.update(state)
|
self.update(state)
|
||||||
});
|
});
|
||||||
|
|
||||||
self.update(state);
|
self.update(state);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -41,11 +41,13 @@ export class LayerUpdater {
|
||||||
state = state ?? State.state;
|
state = state ?? State.state;
|
||||||
for (const layer of state.layoutToUse.data.layers) {
|
for (const layer of state.layoutToUse.data.layers) {
|
||||||
if (state.locationControl.data.zoom < layer.minzoom) {
|
if (state.locationControl.data.zoom < layer.minzoom) {
|
||||||
return undefined;
|
console.log("Not loading layer ", layer.id, " as it needs at least ",layer.minzoom, "zoom")
|
||||||
|
continue;
|
||||||
}
|
}
|
||||||
filters.push(layer.overpassFilter);
|
filters.push(layer.overpassFilter);
|
||||||
}
|
}
|
||||||
if (filters.length === 0) {
|
if (filters.length === 0) {
|
||||||
|
console.log("No layers loaded at all")
|
||||||
return undefined;
|
return undefined;
|
||||||
}
|
}
|
||||||
return new Or(filters);
|
return new Or(filters);
|
||||||
|
@ -103,7 +105,6 @@ export class LayerUpdater {
|
||||||
|
|
||||||
this.sufficentlyZoomed.setData(filter !== undefined);
|
this.sufficentlyZoomed.setData(filter !== undefined);
|
||||||
if (filter === undefined) {
|
if (filter === undefined) {
|
||||||
console.log("Zoom insufficient to run query")
|
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -116,10 +117,10 @@ export class LayerUpdater {
|
||||||
|
|
||||||
const diff = state.layoutToUse.data.widenFactor;
|
const diff = state.layoutToUse.data.widenFactor;
|
||||||
|
|
||||||
const n = bounds.getNorth() + diff;
|
const n = Math.min(90, bounds.getNorth() + diff);
|
||||||
const e = bounds.getEast() + diff;
|
const e = Math.min( 180,bounds.getEast() + diff);
|
||||||
const s = bounds.getSouth() - diff;
|
const s = Math.max(-90, bounds.getSouth() - diff);
|
||||||
const w = bounds.getWest() - diff;
|
const w = Math.max(-180, bounds.getWest() - diff);
|
||||||
|
|
||||||
this.previousBounds = {north: n, east: e, south: s, west: w};
|
this.previousBounds = {north: n, east: e, south: s, west: w};
|
||||||
|
|
||||||
|
|
|
@ -76,8 +76,8 @@ export class Basemap {
|
||||||
location: UIEventSource<{ zoom: number, lat: number, lon: number }>,
|
location: UIEventSource<{ zoom: number, lat: number, lon: number }>,
|
||||||
extraAttribution: UIElement) {
|
extraAttribution: UIElement) {
|
||||||
this.map = L.map(leafletElementId, {
|
this.map = L.map(leafletElementId, {
|
||||||
center: [location.data.lat, location.data.lon],
|
center: [location.data.lat ?? 0, location.data.lon ?? 0],
|
||||||
zoom: location.data.zoom,
|
zoom: location.data.zoom ?? 2,
|
||||||
layers: [BaseLayers.defaultLayer.layer],
|
layers: [BaseLayers.defaultLayer.layer],
|
||||||
});
|
});
|
||||||
|
|
||||||
|
|
|
@ -18,6 +18,8 @@ export class OsmPreferences {
|
||||||
osmConnection.OnLoggedIn(() => self.UpdatePreferences());
|
osmConnection.OnLoggedIn(() => self.UpdatePreferences());
|
||||||
}
|
}
|
||||||
|
|
||||||
|
private longPreferences = {};
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* OSM preferences can be at most 255 chars
|
* OSM preferences can be at most 255 chars
|
||||||
* @param key
|
* @param key
|
||||||
|
@ -25,7 +27,15 @@ export class OsmPreferences {
|
||||||
* @constructor
|
* @constructor
|
||||||
*/
|
*/
|
||||||
public GetLongPreference(key: string, prefix: string = "mapcomplete-"): UIEventSource<string> {
|
public GetLongPreference(key: string, prefix: string = "mapcomplete-"): UIEventSource<string> {
|
||||||
|
|
||||||
|
if (this.longPreferences[prefix + key] !== undefined) {
|
||||||
|
return this.longPreferences[prefix + key];
|
||||||
|
}
|
||||||
|
|
||||||
const source = new UIEventSource<string>(undefined);
|
const source = new UIEventSource<string>(undefined);
|
||||||
|
this.longPreferences[prefix + key] = source;
|
||||||
|
|
||||||
|
console.log("Loading long pref", prefix + key);
|
||||||
|
|
||||||
const allStartWith = prefix + key + "-combined";
|
const allStartWith = prefix + key + "-combined";
|
||||||
// Gives the number of combined preferences
|
// Gives the number of combined preferences
|
||||||
|
@ -34,22 +44,23 @@ export class OsmPreferences {
|
||||||
console.log("Getting long pref " + prefix + key);
|
console.log("Getting long pref " + prefix + key);
|
||||||
const self = this;
|
const self = this;
|
||||||
source.addCallback(str => {
|
source.addCallback(str => {
|
||||||
if (str === undefined) {
|
if (str === undefined || str === "") {
|
||||||
for (const prefKey in self.preferenceSources) {
|
return
|
||||||
if (prefKey.startsWith(allStartWith)) {
|
|
||||||
self.GetPreference(prefKey, "").setData(undefined);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
return;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
let i = 0;
|
let i = 0;
|
||||||
while (str !== "") {
|
while (str !== "") {
|
||||||
|
if (str === undefined || str === "undefined") {
|
||||||
|
throw "Long pref became undefined?"
|
||||||
|
}
|
||||||
|
if (i > 100) {
|
||||||
|
throw "This long preference is getting very long... "
|
||||||
|
}
|
||||||
self.GetPreference(allStartWith + "-" + i, "").setData(str.substr(0, 255));
|
self.GetPreference(allStartWith + "-" + i, "").setData(str.substr(0, 255));
|
||||||
str = str.substr(255);
|
str = str.substr(255);
|
||||||
i++;
|
i++;
|
||||||
}
|
}
|
||||||
length.setData("" + i);
|
length.setData("" + i); // We use I, the number of preference fields used
|
||||||
});
|
});
|
||||||
|
|
||||||
|
|
||||||
|
@ -58,11 +69,17 @@ export class OsmPreferences {
|
||||||
source.setData(undefined);
|
source.setData(undefined);
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
const length = Number(l);
|
if (l > 25) {
|
||||||
|
throw "Length to long";
|
||||||
|
source.setData(undefined);
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
const prefsCount = Number(l);
|
||||||
let str = "";
|
let str = "";
|
||||||
for (let i = 0; i < length; i++) {
|
for (let i = 0; i < prefsCount; i++) {
|
||||||
str += self.GetPreference(allStartWith + "-" + i, "").data;
|
str += self.GetPreference(allStartWith + "-" + i, "").data;
|
||||||
}
|
}
|
||||||
|
|
||||||
source.setData(str);
|
source.setData(str);
|
||||||
source.ping();
|
source.ping();
|
||||||
console.log("Long preference ", key, " has ", str.length, " chars");
|
console.log("Long preference ", key, " has ", str.length, " chars");
|
||||||
|
@ -135,10 +152,7 @@ export class OsmPreferences {
|
||||||
}
|
}
|
||||||
console.log("Updating preference", k, " to ", Utils.EllipsesAfter(v, 15));
|
console.log("Updating preference", k, " to ", Utils.EllipsesAfter(v, 15));
|
||||||
|
|
||||||
this.preferences.data[k] = v;
|
if (v === undefined || v === "") {
|
||||||
this.preferences.ping();
|
|
||||||
|
|
||||||
if (v === "") {
|
|
||||||
this.auth.xhr({
|
this.auth.xhr({
|
||||||
method: 'DELETE',
|
method: 'DELETE',
|
||||||
path: '/api/0.6/user/preferences/' + k,
|
path: '/api/0.6/user/preferences/' + k,
|
||||||
|
|
|
@ -10,29 +10,35 @@ import {VerticalCombine} from "../UI/Base/VerticalCombine";
|
||||||
import {FixedUiElement} from "../UI/Base/FixedUiElement";
|
import {FixedUiElement} from "../UI/Base/FixedUiElement";
|
||||||
import {SubtleButton} from "../UI/Base/SubtleButton";
|
import {SubtleButton} from "../UI/Base/SubtleButton";
|
||||||
import {PersonalLayout} from "./PersonalLayout";
|
import {PersonalLayout} from "./PersonalLayout";
|
||||||
|
import {All} from "../Customizations/Layouts/All";
|
||||||
|
import {Layout} from "../Customizations/Layout";
|
||||||
|
import {TagDependantUIElement} from "../Customizations/UIElementConstructor";
|
||||||
|
import {TagRendering} from "../Customizations/TagRendering";
|
||||||
|
|
||||||
export class PersonalLayersPanel extends UIElement {
|
export class PersonalLayersPanel extends UIElement {
|
||||||
private checkboxes: UIElement[] = [];
|
private checkboxes: UIElement[] = [];
|
||||||
|
|
||||||
private updateButton: UIElement;
|
|
||||||
|
|
||||||
constructor() {
|
constructor() {
|
||||||
super(State.state.favouriteLayers);
|
super(State.state.favouriteLayers);
|
||||||
|
|
||||||
this.ListenTo(State.state.osmConnection.userDetails);
|
this.ListenTo(State.state.osmConnection.userDetails);
|
||||||
|
|
||||||
|
|
||||||
const t = Translations.t.favourite;
|
const t = Translations.t.favourite;
|
||||||
const favs = State.state.favouriteLayers.data ?? [];
|
|
||||||
|
|
||||||
this.updateButton = new SubtleButton("./assets/reload.svg", t.reload)
|
|
||||||
.onClick(() => {
|
|
||||||
State.state.layerUpdater.ForceRefresh();
|
|
||||||
State.state.layoutToUse.ping();
|
|
||||||
})
|
|
||||||
|
|
||||||
|
this.UpdateView([]);
|
||||||
|
const self = this;
|
||||||
|
State.state.installedThemes.addCallback(extraThemes => {
|
||||||
|
self.UpdateView(extraThemes.map(layout => layout.layout));
|
||||||
|
self.Update();
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
private UpdateView(extraThemes: Layout[]) {
|
||||||
|
this.checkboxes = [];
|
||||||
|
const favs = State.state.favouriteLayers.data ?? [];
|
||||||
const controls = new Map<string, UIEventSource<boolean>>();
|
const controls = new Map<string, UIEventSource<boolean>>();
|
||||||
for (const layout of AllKnownLayouts.layoutsList) {
|
const allLayouts = AllKnownLayouts.layoutsList.concat(extraThemes);
|
||||||
|
for (const layout of allLayouts) {
|
||||||
|
|
||||||
if (layout.name === PersonalLayout.NAME) {
|
if (layout.name === PersonalLayout.NAME) {
|
||||||
continue;
|
continue;
|
||||||
|
@ -41,7 +47,7 @@ export class PersonalLayersPanel extends UIElement {
|
||||||
State.state.osmConnection.userDetails.data.name !== "Pieter Vander Vennet") {
|
State.state.osmConnection.userDetails.data.name !== "Pieter Vander Vennet") {
|
||||||
continue
|
continue
|
||||||
}
|
}
|
||||||
|
|
||||||
const header =
|
const header =
|
||||||
new Combine([
|
new Combine([
|
||||||
`<div class="custom-layer-panel-header-img"><img src='${layout.icon}'></div>`,
|
`<div class="custom-layer-panel-header-img"><img src='${layout.icon}'></div>`,
|
||||||
|
@ -54,14 +60,22 @@ export class PersonalLayersPanel extends UIElement {
|
||||||
this.checkboxes.push(header);
|
this.checkboxes.push(header);
|
||||||
|
|
||||||
for (const layer of layout.layers) {
|
for (const layer of layout.layers) {
|
||||||
|
|
||||||
|
let icon = layer.icon;
|
||||||
|
if (icon !== undefined && typeof (icon) !== "string") {
|
||||||
|
icon = icon.GetContent({"id": "node/-1"}) ?? "./assets/bug.svg";
|
||||||
|
}
|
||||||
const image = (layer.icon ? `<img src='${layer.icon}'>` : Img.checkmark);
|
const image = (layer.icon ? `<img src='${layer.icon}'>` : Img.checkmark);
|
||||||
const noimage = (layer.icon ? `<img src='${layer.icon}'>` : Img.no_checkmark);
|
const noimage = (layer.icon ? `<img src='${layer.icon}'>` : Img.no_checkmark);
|
||||||
|
|
||||||
let name = layer.name;
|
let name = layer.name ?? layer.id;
|
||||||
if(typeof (name) !== "string"){
|
if (name === undefined) {
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
if (typeof (name) !== "string") {
|
||||||
name = name.InnerRender();
|
name = name.InnerRender();
|
||||||
}
|
}
|
||||||
|
|
||||||
const content = new Combine([
|
const content = new Combine([
|
||||||
"<span>",
|
"<span>",
|
||||||
"<b>", name ?? "", "</b> ",
|
"<b>", name ?? "", "</b> ",
|
||||||
|
@ -73,7 +87,7 @@ export class PersonalLayersPanel extends UIElement {
|
||||||
]),
|
]),
|
||||||
new Combine([
|
new Combine([
|
||||||
"<span style='opacity: 0.1'>",
|
"<span style='opacity: 0.1'>",
|
||||||
noimage, "</span>",
|
noimage, "</span>",
|
||||||
"<del>",
|
"<del>",
|
||||||
content,
|
content,
|
||||||
"</del>"
|
"</del>"
|
||||||
|
@ -115,7 +129,6 @@ export class PersonalLayersPanel extends UIElement {
|
||||||
|
|
||||||
return new Combine([
|
return new Combine([
|
||||||
t.panelIntro,
|
t.panelIntro,
|
||||||
this.updateButton,
|
|
||||||
...this.checkboxes
|
...this.checkboxes
|
||||||
], "custom-layer-panel").Render();
|
], "custom-layer-panel").Render();
|
||||||
}
|
}
|
||||||
|
|
|
@ -166,7 +166,6 @@ export class Tag extends TagsFilter {
|
||||||
`<a href='https://wiki.openstreetmap.org/wiki/Tag:${this.key}%3D${this.value}' target='_blank'>${v}</a>`
|
`<a href='https://wiki.openstreetmap.org/wiki/Tag:${this.key}%3D${this.value}' target='_blank'>${v}</a>`
|
||||||
}
|
}
|
||||||
|
|
||||||
console.log("Humanizing", this)
|
|
||||||
if (typeof (this.value) === "string") {
|
if (typeof (this.value) === "string") {
|
||||||
return this.key + (this.invertValue ? "!=": "=") + v;
|
return this.key + (this.invertValue ? "!=": "=") + v;
|
||||||
}else{
|
}else{
|
||||||
|
|
32
State.ts
32
State.ts
|
@ -13,6 +13,7 @@ import {LayerUpdater} from "./Logic/LayerUpdater";
|
||||||
import {UIEventSource} from "./Logic/UIEventSource";
|
import {UIEventSource} from "./Logic/UIEventSource";
|
||||||
import {LocalStorageSource} from "./Logic/Web/LocalStorageSource";
|
import {LocalStorageSource} from "./Logic/Web/LocalStorageSource";
|
||||||
import {QueryParameters} from "./Logic/Web/QueryParameters";
|
import {QueryParameters} from "./Logic/Web/QueryParameters";
|
||||||
|
import {CustomLayoutFromJSON} from "./Customizations/JSON/CustomLayoutFromJSON";
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Contains the global state: a bunch of UI-event sources
|
* Contains the global state: a bunch of UI-event sources
|
||||||
|
@ -23,7 +24,7 @@ export class State {
|
||||||
// The singleton of the global state
|
// The singleton of the global state
|
||||||
public static state: State;
|
public static state: State;
|
||||||
|
|
||||||
public static vNumber = "0.0.6d";
|
public static vNumber = "0.0.6f";
|
||||||
|
|
||||||
// The user journey states thresholds when a new feature gets unlocked
|
// The user journey states thresholds when a new feature gets unlocked
|
||||||
public static userJourney = {
|
public static userJourney = {
|
||||||
|
@ -121,6 +122,7 @@ export class State {
|
||||||
*/
|
*/
|
||||||
public readonly saveTimeout = new UIEventSource<number>(30 * 1000);
|
public readonly saveTimeout = new UIEventSource<number>(30 * 1000);
|
||||||
public layoutDefinition: string;
|
public layoutDefinition: string;
|
||||||
|
public installedThemes: UIEventSource<{ layout: Layout; definition: string }[]>;
|
||||||
|
|
||||||
|
|
||||||
constructor(layoutToUse: Layout) {
|
constructor(layoutToUse: Layout) {
|
||||||
|
@ -180,6 +182,34 @@ export class State {
|
||||||
[], layers => Utils.Dedup(layers)?.join(";")
|
[], layers => Utils.Dedup(layers)?.join(";")
|
||||||
);
|
);
|
||||||
|
|
||||||
|
this.installedThemes = this.osmConnection._preferencesHandler.preferences.map<{ layout: Layout, definition: string }[]>(allPreferences => {
|
||||||
|
const installedThemes: { layout: Layout, definition: string }[] = [];
|
||||||
|
if (allPreferences === undefined) {
|
||||||
|
return installedThemes;
|
||||||
|
}
|
||||||
|
for (const allPreferencesKey in allPreferences) {
|
||||||
|
const themename = allPreferencesKey.match(/^mapcomplete-installed-theme-(.*)-combined-length$/);
|
||||||
|
if (themename && themename[1] !== "") {
|
||||||
|
const customLayout = State.state.osmConnection.GetLongPreference("installed-theme-" + themename[1]);
|
||||||
|
if(customLayout.data === undefined){
|
||||||
|
console.log("No data defined for ", themename[1]);
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
try {
|
||||||
|
installedThemes.push({
|
||||||
|
layout: CustomLayoutFromJSON.FromQueryParam(customLayout.data),
|
||||||
|
definition: customLayout.data
|
||||||
|
});
|
||||||
|
} catch (e) {
|
||||||
|
console.warn("Could not parse custom layout from preferences: ", allPreferencesKey, e, customLayout.data);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
return installedThemes;
|
||||||
|
|
||||||
|
});
|
||||||
|
|
||||||
Locale.language.syncWith(this.osmConnection.GetPreference("language"));
|
Locale.language.syncWith(this.osmConnection.GetPreference("language"));
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -308,7 +308,7 @@ class LayerGenerator extends UIElement {
|
||||||
|
|
||||||
new FixedUiElement("<p>A layer is a collection of related objects which have the same or very similar tags renderings. In general, all objects of one layer have the same icon (or at least very similar icons)</p>"),
|
new FixedUiElement("<p>A layer is a collection of related objects which have the same or very similar tags renderings. In general, all objects of one layer have the same icon (or at least very similar icons)</p>"),
|
||||||
|
|
||||||
createFieldUI("Name", "id", layerConfig, {description: "The name of this layer"}),
|
createFieldUI("Name", "name", layerConfig, {description: "The name of this layer"}),
|
||||||
createFieldUI("A description of objects for this layer", "description", layerConfig, {description: "The description of this layer"}),
|
createFieldUI("A description of objects for this layer", "description", layerConfig, {description: "The description of this layer"}),
|
||||||
createFieldUI("Minimum zoom level", "minzoom", layerConfig, {
|
createFieldUI("Minimum zoom level", "minzoom", layerConfig, {
|
||||||
type: "nat",
|
type: "nat",
|
||||||
|
|
|
@ -18,7 +18,7 @@ export class MoreScreen extends UIElement {
|
||||||
constructor() {
|
constructor() {
|
||||||
super(State.state.locationControl);
|
super(State.state.locationControl);
|
||||||
this.ListenTo(State.state.osmConnection.userDetails);
|
this.ListenTo(State.state.osmConnection.userDetails);
|
||||||
this.ListenTo(State.state.osmConnection._preferencesHandler.preferences);
|
this.ListenTo(State.state.installedThemes);
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -30,10 +30,6 @@ export class MoreScreen extends UIElement {
|
||||||
return undefined;
|
return undefined;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (layout.name === PersonalLayout.NAME) {
|
|
||||||
return undefined;
|
|
||||||
}
|
|
||||||
|
|
||||||
const currentLocation = State.state.locationControl.data;
|
const currentLocation = State.state.locationControl.data;
|
||||||
let linkText =
|
let linkText =
|
||||||
`./${layout.name}.html?z=${currentLocation.zoom}&lat=${currentLocation.lat}&lon=${currentLocation.lon}`
|
`./${layout.name}.html?z=${currentLocation.zoom}&lat=${currentLocation.lat}&lon=${currentLocation.lon}`
|
||||||
|
@ -80,63 +76,28 @@ export class MoreScreen extends UIElement {
|
||||||
})
|
})
|
||||||
));
|
));
|
||||||
|
|
||||||
els.push(new VariableUiElement(
|
|
||||||
State.state.osmConnection.userDetails.map(userDetails => {
|
|
||||||
if (userDetails.csCount < State.userJourney.customLayoutUnlock) {
|
|
||||||
return "";
|
|
||||||
}
|
|
||||||
return new SubtleButton("./assets/star.svg",
|
|
||||||
new Combine([
|
|
||||||
"<b>",
|
|
||||||
Translations.t.favourite.title,
|
|
||||||
"</b>",
|
|
||||||
"<br>", Translations.t.favourite.description]), {
|
|
||||||
url: "https://pietervdvn.github.io/MapComplete/personal.html",
|
|
||||||
newTab: false
|
|
||||||
}).Render();
|
|
||||||
})
|
|
||||||
));
|
|
||||||
|
|
||||||
|
|
||||||
for (const k in AllKnownLayouts.allSets) {
|
for (const k in AllKnownLayouts.allSets) {
|
||||||
|
|
||||||
|
|
||||||
|
if (k === PersonalLayout.NAME) {
|
||||||
|
if (State.state.osmConnection.userDetails.data.csCount < State.userJourney.customLayoutUnlock) {
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
els.push(this.createLinkButton(AllKnownLayouts.allSets[k]));
|
els.push(this.createLinkButton(AllKnownLayouts.allSets[k]));
|
||||||
}
|
}
|
||||||
|
|
||||||
const installedThemes = State.state.osmConnection._preferencesHandler.preferences.map(allPreferences => {
|
|
||||||
const installedThemes = [];
|
|
||||||
if(allPreferences === undefined){
|
|
||||||
return installedThemes;
|
|
||||||
}
|
|
||||||
|
|
||||||
for (const allPreferencesKey in allPreferences) {
|
const customThemesNames = State.state.installedThemes.data ?? [];
|
||||||
"mapcomplete-installed-theme-Superficie-combined-length"
|
|
||||||
const themename = allPreferencesKey.match(/^mapcomplete-installed-theme-(.*)-combined-length$/);
|
|
||||||
if(themename){
|
|
||||||
installedThemes.push(themename[1]);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
return installedThemes;
|
|
||||||
|
|
||||||
})
|
|
||||||
const customThemesNames = installedThemes.data ?? [];
|
|
||||||
if (customThemesNames !== []) {
|
if (customThemesNames !== []) {
|
||||||
els.push(Translations.t.general.customThemeIntro)
|
els.push(Translations.t.general.customThemeIntro)
|
||||||
}
|
}
|
||||||
|
|
||||||
console.log(customThemesNames);
|
for (const installed of State.state.installedThemes.data) {
|
||||||
for (const installedThemeName of customThemesNames) {
|
els.push(this.createLinkButton(installed.layout, installed.definition));
|
||||||
if(installedThemeName === ""){
|
|
||||||
continue;
|
|
||||||
}
|
|
||||||
const customThemeDefinition = State.state.osmConnection.GetLongPreference("installed-theme-" + installedThemeName);
|
|
||||||
try {
|
|
||||||
const layout = CustomLayoutFromJSON.FromQueryParam(customThemeDefinition.data);
|
|
||||||
els.push(this.createLinkButton(layout, customThemeDefinition.data));
|
|
||||||
} catch (e) {
|
|
||||||
console.log(customThemeDefinition.data);
|
|
||||||
console.warn("Could not parse custom layout from preferences: ", installedThemeName, e);
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -135,8 +135,7 @@ export class ShareScreen extends UIElement {
|
||||||
|
|
||||||
let literalText = "https://pietervdvn.github.io/MapComplete/" + layout.name + ".html"
|
let literalText = "https://pietervdvn.github.io/MapComplete/" + layout.name + ".html"
|
||||||
|
|
||||||
const parts =
|
const parts = Utils.NoEmpty(Utils.NoNull(optionParts.map((eventSource) => eventSource.data)));
|
||||||
Utils.NoEmpty(Utils.NoNull(optionParts.map((eventSource) => eventSource.data)));
|
|
||||||
|
|
||||||
let hash = "";
|
let hash = "";
|
||||||
if (State.state.layoutDefinition !== undefined) {
|
if (State.state.layoutDefinition !== undefined) {
|
||||||
|
@ -161,11 +160,7 @@ export class ShareScreen extends UIElement {
|
||||||
);
|
);
|
||||||
|
|
||||||
|
|
||||||
this._link = new VariableUiElement(
|
|
||||||
url.map((url) => {
|
|
||||||
return `<input type="text" value=" ${url}" id="code-link--copyable" style="width:90%"readonly>`
|
|
||||||
})
|
|
||||||
);
|
|
||||||
|
|
||||||
this._editLayout = new FixedUiElement("");
|
this._editLayout = new FixedUiElement("");
|
||||||
if ((State.state.layoutDefinition !== undefined)) {
|
if ((State.state.layoutDefinition !== undefined)) {
|
||||||
|
@ -177,7 +172,7 @@ export class ShareScreen extends UIElement {
|
||||||
return "";
|
return "";
|
||||||
}
|
}
|
||||||
return `<h3>Edit this theme</h3>` +
|
return `<h3>Edit this theme</h3>` +
|
||||||
`<a target='_blank' href='https://pietervdvn.github.io/MapComplete/customGenerator.html#${State.state.layoutDefinition}'>Click here to edit</a>`
|
`<a target='_blank' href='./customGenerator.html#${State.state.layoutDefinition}'>Click here to edit</a>`
|
||||||
|
|
||||||
}
|
}
|
||||||
));
|
));
|
||||||
|
@ -187,11 +182,15 @@ export class ShareScreen extends UIElement {
|
||||||
const status = new UIEventSource(" ");
|
const status = new UIEventSource(" ");
|
||||||
this._linkStatus = new VariableUiElement(status);
|
this._linkStatus = new VariableUiElement(status);
|
||||||
const self = this;
|
const self = this;
|
||||||
this._link.onClick(async () => {
|
this._link = new VariableUiElement(
|
||||||
|
url.map((url) => {
|
||||||
|
return `<input type="text" value=" ${url}" id="code-link--copyable" style="width:90%"readonly>`
|
||||||
|
})
|
||||||
|
).onClick(async () => {
|
||||||
|
|
||||||
const shareData = {
|
const shareData = {
|
||||||
title: Translations.W(layout.name).InnerRender(),
|
title: Translations.W(layout.name)?.InnerRender() ?? "",
|
||||||
text: Translations.W(layout.description).InnerRender(),
|
text: Translations.W(layout.description)?.InnerRender() ?? "",
|
||||||
url: self._link.data,
|
url: self._link.data,
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -9,7 +9,7 @@
|
||||||
"maintainer": "Pieter Vander Vennet",
|
"maintainer": "Pieter Vander Vennet",
|
||||||
"layers": [
|
"layers": [
|
||||||
{
|
{
|
||||||
"id": "Defibrillator",
|
"name": "Defibrillator",
|
||||||
"title": {
|
"title": {
|
||||||
"key": "*",
|
"key": "*",
|
||||||
"render": {
|
"render": {
|
||||||
|
|
|
@ -20,7 +20,7 @@
|
||||||
},
|
},
|
||||||
"layers": [
|
"layers": [
|
||||||
{
|
{
|
||||||
"id": "Artwork",
|
"name": "Artwork",
|
||||||
"title": {
|
"title": {
|
||||||
"key": "*",
|
"key": "*",
|
||||||
"render": {
|
"render": {
|
||||||
|
|
|
@ -20,7 +20,7 @@
|
||||||
],
|
],
|
||||||
"layers": [
|
"layers": [
|
||||||
{
|
{
|
||||||
"id": "Bookcases",
|
"name": "Bookcases",
|
||||||
"title": {
|
"title": {
|
||||||
"key": "*",
|
"key": "*",
|
||||||
"render": {
|
"render": {
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
{
|
{
|
||||||
"layers": [
|
"layers": [
|
||||||
{
|
{
|
||||||
"id": "Toilet",
|
"name": "Toilet",
|
||||||
"title": {
|
"title": {
|
||||||
"key": "*",
|
"key": "*",
|
||||||
"render": "Toilet"
|
"render": "Toilet"
|
||||||
|
|
|
@ -1276,7 +1276,7 @@ form {
|
||||||
|
|
||||||
|
|
||||||
.subtle-button img{
|
.subtle-button img{
|
||||||
width: 3em;
|
max-width: 3em;
|
||||||
max-height: 3em;
|
max-height: 3em;
|
||||||
margin-right: 0.5em;
|
margin-right: 0.5em;
|
||||||
padding: 0.5em;
|
padding: 0.5em;
|
||||||
|
@ -1313,7 +1313,6 @@ form {
|
||||||
|
|
||||||
.custom-layer-panel-header-img img {
|
.custom-layer-panel-header-img img {
|
||||||
max-width: 3em;
|
max-width: 3em;
|
||||||
width: 100%;
|
|
||||||
max-height: 3em;
|
max-height: 3em;
|
||||||
padding: 0.5em;
|
padding: 0.5em;
|
||||||
}
|
}
|
||||||
|
|
43
index.ts
43
index.ts
|
@ -138,7 +138,6 @@ function setupAllLayerElements() {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
if (presetCount == 0) {
|
if (presetCount == 0) {
|
||||||
console.log("No presets defined - not creating the StrayClickHandler");
|
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -155,20 +154,35 @@ function setupAllLayerElements() {
|
||||||
|
|
||||||
setupAllLayerElements();
|
setupAllLayerElements();
|
||||||
|
|
||||||
if (layoutToUse === AllKnownLayouts.allSets[PersonalLayout.NAME]) {
|
|
||||||
State.state.favouriteLayers.addCallback((favs: string[]) => {
|
|
||||||
layoutToUse.layers = [];
|
|
||||||
for (const fav of favs) {
|
|
||||||
const layer = AllKnownLayouts.allLayers[fav];
|
|
||||||
if (!!layer) {
|
|
||||||
layoutToUse.layers.push(layer);
|
|
||||||
}
|
|
||||||
setupAllLayerElements();
|
|
||||||
}
|
|
||||||
;
|
|
||||||
State.state.locationControl.ping();
|
|
||||||
|
|
||||||
})
|
function updateFavs() {
|
||||||
|
const favs = State.state.favouriteLayers.data ?? [];
|
||||||
|
|
||||||
|
layoutToUse.layers = [];
|
||||||
|
for (const fav of favs) {
|
||||||
|
const layer = AllKnownLayouts.allLayers[fav];
|
||||||
|
if (!!layer) {
|
||||||
|
layoutToUse.layers.push(layer);
|
||||||
|
}
|
||||||
|
|
||||||
|
for (const layouts of State.state.installedThemes.data) {
|
||||||
|
for (const layer of layouts.layout.layers) {
|
||||||
|
if (layer.id === fav) {
|
||||||
|
layoutToUse.layers.push(layer);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
setupAllLayerElements();
|
||||||
|
State.state.layerUpdater.ForceRefresh();
|
||||||
|
State.state.locationControl.ping();
|
||||||
|
}
|
||||||
|
|
||||||
|
if (layoutToUse === AllKnownLayouts.allSets[PersonalLayout.NAME]) {
|
||||||
|
|
||||||
|
State.state.favouriteLayers.addCallback(updateFavs);
|
||||||
|
State.state.installedThemes.addCallback(updateFavs);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
@ -229,3 +243,4 @@ if ((window != window.top && !State.state.featureSwitchWelcomeMessage.data) || S
|
||||||
|
|
||||||
|
|
||||||
new GeoLocationHandler().AttachTo("geolocate-button");
|
new GeoLocationHandler().AttachTo("geolocate-button");
|
||||||
|
State.state.locationControl.ping();
|
15
test.ts
15
test.ts
|
@ -1,15 +0,0 @@
|
||||||
import {OsmConnection} from "./Logic/Osm/OsmConnection";
|
|
||||||
import {UIEventSource} from "./Logic/UIEventSource";
|
|
||||||
|
|
||||||
const conn = new OsmConnection(true, new UIEventSource<string>(undefined));
|
|
||||||
conn.AttemptLogin();
|
|
||||||
|
|
||||||
conn.userDetails.addCallback(userDetails => {
|
|
||||||
if (!userDetails.loggedIn) {
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
const str = "01234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789";
|
|
||||||
console.log(str.length);
|
|
||||||
conn.GetLongPreference("test").setData(str);
|
|
||||||
// console.log(got.length)
|
|
||||||
});
|
|
Loading…
Reference in a new issue