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 {
|
||||
|
||||
id: string;
|
||||
name: string;
|
||||
title: string | any | TagRenderingConfigJson;
|
||||
description: string | any;
|
||||
minzoom: number | string,
|
||||
|
@ -238,16 +237,15 @@ export class CustomLayoutFromJSON {
|
|||
const tr = CustomLayoutFromJSON.TagRenderingFromJson;
|
||||
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
|
||||
const icon = CustomLayoutFromJSON.TagRenderingFromJson(json.icon).construct({
|
||||
tags: new UIEventSource<any>({})
|
||||
}).InnerRender();
|
||||
|
||||
const icon = CustomLayoutFromJSON.TagRenderingFromJson(json.icon).GetContent({id:"node/-1"});
|
||||
|
||||
// @ts-ignore
|
||||
const id = json.name?.replace(/[^a-zA-Z0-9_-]/g,'') ?? json.id;
|
||||
return new LayerDefinition(
|
||||
json.id,
|
||||
id,
|
||||
{
|
||||
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,
|
||||
minzoom: parseInt(""+json.minzoom),
|
||||
title: tr(json.title),
|
||||
|
|
|
@ -41,11 +41,13 @@ export class LayerUpdater {
|
|||
state = state ?? State.state;
|
||||
for (const layer of state.layoutToUse.data.layers) {
|
||||
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);
|
||||
}
|
||||
if (filters.length === 0) {
|
||||
console.log("No layers loaded at all")
|
||||
return undefined;
|
||||
}
|
||||
return new Or(filters);
|
||||
|
@ -103,7 +105,6 @@ export class LayerUpdater {
|
|||
|
||||
this.sufficentlyZoomed.setData(filter !== undefined);
|
||||
if (filter === undefined) {
|
||||
console.log("Zoom insufficient to run query")
|
||||
return;
|
||||
}
|
||||
|
||||
|
@ -116,10 +117,10 @@ export class LayerUpdater {
|
|||
|
||||
const diff = state.layoutToUse.data.widenFactor;
|
||||
|
||||
const n = bounds.getNorth() + diff;
|
||||
const e = bounds.getEast() + diff;
|
||||
const s = bounds.getSouth() - diff;
|
||||
const w = bounds.getWest() - diff;
|
||||
const n = Math.min(90, bounds.getNorth() + diff);
|
||||
const e = Math.min( 180,bounds.getEast() + diff);
|
||||
const s = Math.max(-90, bounds.getSouth() - diff);
|
||||
const w = Math.max(-180, bounds.getWest() - diff);
|
||||
|
||||
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 }>,
|
||||
extraAttribution: UIElement) {
|
||||
this.map = L.map(leafletElementId, {
|
||||
center: [location.data.lat, location.data.lon],
|
||||
zoom: location.data.zoom,
|
||||
center: [location.data.lat ?? 0, location.data.lon ?? 0],
|
||||
zoom: location.data.zoom ?? 2,
|
||||
layers: [BaseLayers.defaultLayer.layer],
|
||||
});
|
||||
|
||||
|
|
|
@ -18,6 +18,8 @@ export class OsmPreferences {
|
|||
osmConnection.OnLoggedIn(() => self.UpdatePreferences());
|
||||
}
|
||||
|
||||
private longPreferences = {};
|
||||
|
||||
/**
|
||||
* OSM preferences can be at most 255 chars
|
||||
* @param key
|
||||
|
@ -25,7 +27,15 @@ export class OsmPreferences {
|
|||
* @constructor
|
||||
*/
|
||||
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);
|
||||
this.longPreferences[prefix + key] = source;
|
||||
|
||||
console.log("Loading long pref", prefix + key);
|
||||
|
||||
const allStartWith = prefix + key + "-combined";
|
||||
// Gives the number of combined preferences
|
||||
|
@ -34,22 +44,23 @@ export class OsmPreferences {
|
|||
console.log("Getting long pref " + prefix + key);
|
||||
const self = this;
|
||||
source.addCallback(str => {
|
||||
if (str === undefined) {
|
||||
for (const prefKey in self.preferenceSources) {
|
||||
if (prefKey.startsWith(allStartWith)) {
|
||||
self.GetPreference(prefKey, "").setData(undefined);
|
||||
}
|
||||
}
|
||||
return;
|
||||
if (str === undefined || str === "") {
|
||||
return
|
||||
}
|
||||
|
||||
let i = 0;
|
||||
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));
|
||||
str = str.substr(255);
|
||||
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);
|
||||
return;
|
||||
}
|
||||
const length = Number(l);
|
||||
if (l > 25) {
|
||||
throw "Length to long";
|
||||
source.setData(undefined);
|
||||
return;
|
||||
}
|
||||
const prefsCount = Number(l);
|
||||
let str = "";
|
||||
for (let i = 0; i < length; i++) {
|
||||
for (let i = 0; i < prefsCount; i++) {
|
||||
str += self.GetPreference(allStartWith + "-" + i, "").data;
|
||||
}
|
||||
|
||||
source.setData(str);
|
||||
source.ping();
|
||||
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));
|
||||
|
||||
this.preferences.data[k] = v;
|
||||
this.preferences.ping();
|
||||
|
||||
if (v === "") {
|
||||
if (v === undefined || v === "") {
|
||||
this.auth.xhr({
|
||||
method: 'DELETE',
|
||||
path: '/api/0.6/user/preferences/' + k,
|
||||
|
|
|
@ -10,29 +10,35 @@ import {VerticalCombine} from "../UI/Base/VerticalCombine";
|
|||
import {FixedUiElement} from "../UI/Base/FixedUiElement";
|
||||
import {SubtleButton} from "../UI/Base/SubtleButton";
|
||||
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 {
|
||||
private checkboxes: UIElement[] = [];
|
||||
|
||||
private updateButton: UIElement;
|
||||
|
||||
constructor() {
|
||||
super(State.state.favouriteLayers);
|
||||
|
||||
this.ListenTo(State.state.osmConnection.userDetails);
|
||||
|
||||
|
||||
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>>();
|
||||
for (const layout of AllKnownLayouts.layoutsList) {
|
||||
const allLayouts = AllKnownLayouts.layoutsList.concat(extraThemes);
|
||||
for (const layout of allLayouts) {
|
||||
|
||||
if (layout.name === PersonalLayout.NAME) {
|
||||
continue;
|
||||
|
@ -54,10 +60,18 @@ export class PersonalLayersPanel extends UIElement {
|
|||
this.checkboxes.push(header);
|
||||
|
||||
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 noimage = (layer.icon ? `<img src='${layer.icon}'>` : Img.no_checkmark);
|
||||
|
||||
let name = layer.name;
|
||||
let name = layer.name ?? layer.id;
|
||||
if (name === undefined) {
|
||||
continue;
|
||||
}
|
||||
if (typeof (name) !== "string") {
|
||||
name = name.InnerRender();
|
||||
}
|
||||
|
@ -115,7 +129,6 @@ export class PersonalLayersPanel extends UIElement {
|
|||
|
||||
return new Combine([
|
||||
t.panelIntro,
|
||||
this.updateButton,
|
||||
...this.checkboxes
|
||||
], "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>`
|
||||
}
|
||||
|
||||
console.log("Humanizing", this)
|
||||
if (typeof (this.value) === "string") {
|
||||
return this.key + (this.invertValue ? "!=": "=") + v;
|
||||
}else{
|
||||
|
|
32
State.ts
32
State.ts
|
@ -13,6 +13,7 @@ import {LayerUpdater} from "./Logic/LayerUpdater";
|
|||
import {UIEventSource} from "./Logic/UIEventSource";
|
||||
import {LocalStorageSource} from "./Logic/Web/LocalStorageSource";
|
||||
import {QueryParameters} from "./Logic/Web/QueryParameters";
|
||||
import {CustomLayoutFromJSON} from "./Customizations/JSON/CustomLayoutFromJSON";
|
||||
|
||||
/**
|
||||
* Contains the global state: a bunch of UI-event sources
|
||||
|
@ -23,7 +24,7 @@ export class State {
|
|||
// The singleton of the global 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
|
||||
public static userJourney = {
|
||||
|
@ -121,6 +122,7 @@ export class State {
|
|||
*/
|
||||
public readonly saveTimeout = new UIEventSource<number>(30 * 1000);
|
||||
public layoutDefinition: string;
|
||||
public installedThemes: UIEventSource<{ layout: Layout; definition: string }[]>;
|
||||
|
||||
|
||||
constructor(layoutToUse: Layout) {
|
||||
|
@ -180,6 +182,34 @@ export class State {
|
|||
[], 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"));
|
||||
|
||||
|
||||
|
|
|
@ -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>"),
|
||||
|
||||
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("Minimum zoom level", "minzoom", layerConfig, {
|
||||
type: "nat",
|
||||
|
|
|
@ -18,7 +18,7 @@ export class MoreScreen extends UIElement {
|
|||
constructor() {
|
||||
super(State.state.locationControl);
|
||||
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;
|
||||
}
|
||||
|
||||
if (layout.name === PersonalLayout.NAME) {
|
||||
return undefined;
|
||||
}
|
||||
|
||||
const currentLocation = State.state.locationControl.data;
|
||||
let linkText =
|
||||
`./${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) {
|
||||
|
||||
|
||||
if (k === PersonalLayout.NAME) {
|
||||
if (State.state.osmConnection.userDetails.data.csCount < State.userJourney.customLayoutUnlock) {
|
||||
continue;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
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) {
|
||||
"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 ?? [];
|
||||
const customThemesNames = State.state.installedThemes.data ?? [];
|
||||
if (customThemesNames !== []) {
|
||||
els.push(Translations.t.general.customThemeIntro)
|
||||
}
|
||||
|
||||
console.log(customThemesNames);
|
||||
for (const installedThemeName of customThemesNames) {
|
||||
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);
|
||||
}
|
||||
for (const installed of State.state.installedThemes.data) {
|
||||
els.push(this.createLinkButton(installed.layout, installed.definition));
|
||||
}
|
||||
|
||||
|
||||
|
|
|
@ -135,8 +135,7 @@ export class ShareScreen extends UIElement {
|
|||
|
||||
let literalText = "https://pietervdvn.github.io/MapComplete/" + layout.name + ".html"
|
||||
|
||||
const parts =
|
||||
Utils.NoEmpty(Utils.NoNull(optionParts.map((eventSource) => eventSource.data)));
|
||||
const parts = Utils.NoEmpty(Utils.NoNull(optionParts.map((eventSource) => eventSource.data)));
|
||||
|
||||
let hash = "";
|
||||
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("");
|
||||
if ((State.state.layoutDefinition !== undefined)) {
|
||||
|
@ -177,7 +172,7 @@ export class ShareScreen extends UIElement {
|
|||
return "";
|
||||
}
|
||||
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(" ");
|
||||
this._linkStatus = new VariableUiElement(status);
|
||||
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 = {
|
||||
title: Translations.W(layout.name).InnerRender(),
|
||||
text: Translations.W(layout.description).InnerRender(),
|
||||
title: Translations.W(layout.name)?.InnerRender() ?? "",
|
||||
text: Translations.W(layout.description)?.InnerRender() ?? "",
|
||||
url: self._link.data,
|
||||
}
|
||||
|
||||
|
|
|
@ -9,7 +9,7 @@
|
|||
"maintainer": "Pieter Vander Vennet",
|
||||
"layers": [
|
||||
{
|
||||
"id": "Defibrillator",
|
||||
"name": "Defibrillator",
|
||||
"title": {
|
||||
"key": "*",
|
||||
"render": {
|
||||
|
|
|
@ -20,7 +20,7 @@
|
|||
},
|
||||
"layers": [
|
||||
{
|
||||
"id": "Artwork",
|
||||
"name": "Artwork",
|
||||
"title": {
|
||||
"key": "*",
|
||||
"render": {
|
||||
|
|
|
@ -20,7 +20,7 @@
|
|||
],
|
||||
"layers": [
|
||||
{
|
||||
"id": "Bookcases",
|
||||
"name": "Bookcases",
|
||||
"title": {
|
||||
"key": "*",
|
||||
"render": {
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
{
|
||||
"layers": [
|
||||
{
|
||||
"id": "Toilet",
|
||||
"name": "Toilet",
|
||||
"title": {
|
||||
"key": "*",
|
||||
"render": "Toilet"
|
||||
|
|
|
@ -1276,7 +1276,7 @@ form {
|
|||
|
||||
|
||||
.subtle-button img{
|
||||
width: 3em;
|
||||
max-width: 3em;
|
||||
max-height: 3em;
|
||||
margin-right: 0.5em;
|
||||
padding: 0.5em;
|
||||
|
@ -1313,7 +1313,6 @@ form {
|
|||
|
||||
.custom-layer-panel-header-img img {
|
||||
max-width: 3em;
|
||||
width: 100%;
|
||||
max-height: 3em;
|
||||
padding: 0.5em;
|
||||
}
|
||||
|
|
31
index.ts
31
index.ts
|
@ -138,7 +138,6 @@ function setupAllLayerElements() {
|
|||
}
|
||||
}
|
||||
if (presetCount == 0) {
|
||||
console.log("No presets defined - not creating the StrayClickHandler");
|
||||
return;
|
||||
}
|
||||
|
||||
|
@ -155,20 +154,35 @@ function setupAllLayerElements() {
|
|||
|
||||
setupAllLayerElements();
|
||||
|
||||
if (layoutToUse === AllKnownLayouts.allSets[PersonalLayout.NAME]) {
|
||||
State.state.favouriteLayers.addCallback((favs: string[]) => {
|
||||
|
||||
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);
|
||||
}
|
||||
setupAllLayerElements();
|
||||
}
|
||||
;
|
||||
State.state.locationControl.ping();
|
||||
|
||||
})
|
||||
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");
|
||||
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