| 
									
										
										
										
											2020-07-31 01:45:54 +02:00
										 |  |  | import {Layout} from "./Customizations/Layout"; | 
					
						
							| 
									
										
										
										
											2020-07-29 15:05:19 +02:00
										 |  |  | import Locale from "./UI/i18n/Locale"; | 
					
						
							|  |  |  | import Translations from "./UI/i18n/Translations"; | 
					
						
							|  |  |  | import {TabbedComponent} from "./UI/Base/TabbedComponent"; | 
					
						
							|  |  |  | import {ShareScreen} from "./UI/ShareScreen"; | 
					
						
							|  |  |  | import {FixedUiElement} from "./UI/Base/FixedUiElement"; | 
					
						
							|  |  |  | import {CheckBox} from "./UI/Input/CheckBox"; | 
					
						
							|  |  |  | import Combine from "./UI/Base/Combine"; | 
					
						
							|  |  |  | import {UIEventSource} from "./UI/UIEventSource"; | 
					
						
							|  |  |  | import {UIElement} from "./UI/UIElement"; | 
					
						
							| 
									
										
										
										
											2020-07-29 15:48:21 +02:00
										 |  |  | import {MoreScreen} from "./UI/MoreScreen"; | 
					
						
							| 
									
										
										
										
											2020-07-30 00:59:08 +02:00
										 |  |  | import {Tag} from "./Logic/TagsFilter"; | 
					
						
							|  |  |  | import {FilteredLayer} from "./Logic/FilteredLayer"; | 
					
						
							|  |  |  | import {FeatureInfoBox} from "./UI/FeatureInfoBox"; | 
					
						
							|  |  |  | import {ElementStorage} from "./Logic/ElementStorage"; | 
					
						
							|  |  |  | import {Changes} from "./Logic/Osm/Changes"; | 
					
						
							|  |  |  | import {OsmConnection} from "./Logic/Osm/OsmConnection"; | 
					
						
							| 
									
										
										
										
											2020-07-31 04:58:58 +02:00
										 |  |  | import {BaseLayers, Basemap} from "./Logic/Leaflet/Basemap"; | 
					
						
							| 
									
										
										
										
											2020-07-31 01:45:54 +02:00
										 |  |  | import {State} from "./State"; | 
					
						
							|  |  |  | import {WelcomeMessage} from "./UI/WelcomeMessage"; | 
					
						
							| 
									
										
										
										
											2020-07-31 04:58:58 +02:00
										 |  |  | import {Img} from "./UI/Img"; | 
					
						
							|  |  |  | import {DropDown} from "./UI/Input/DropDown"; | 
					
						
							|  |  |  | import {LayerSelection} from "./UI/LayerSelection"; | 
					
						
							|  |  |  | import {CustomLayersPanel} from "./Logic/CustomLayersPanel"; | 
					
						
							| 
									
										
										
										
											2020-07-31 16:17:16 +02:00
										 |  |  | import {CustomLayout} from "./Logic/CustomLayers"; | 
					
						
							|  |  |  | import {Preset} from "./Customizations/LayerDefinition"; | 
					
						
							| 
									
										
										
										
											2020-07-31 17:38:03 +02:00
										 |  |  | import {VariableUiElement} from "./UI/Base/VariableUIElement"; | 
					
						
							|  |  |  | import {LayerUpdater} from "./Logic/LayerUpdater"; | 
					
						
							| 
									
										
										
										
											2020-07-29 15:05:19 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | export class InitUiElements { | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-07-30 00:59:08 +02:00
										 |  |  |     static OnlyIf(featureSwitch: UIEventSource<boolean>, callback: () => void) { | 
					
						
							| 
									
										
										
										
											2020-07-29 15:05:19 +02:00
										 |  |  |         featureSwitch.addCallback(() => { | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-07-30 00:59:08 +02:00
										 |  |  |             if (featureSwitch.data) { | 
					
						
							|  |  |  |                 callback(); | 
					
						
							| 
									
										
										
										
											2020-07-29 15:05:19 +02:00
										 |  |  |             } | 
					
						
							|  |  |  |         }); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-07-30 00:59:08 +02:00
										 |  |  |         if (featureSwitch.data) { | 
					
						
							| 
									
										
										
										
											2020-07-29 15:05:19 +02:00
										 |  |  |             callback(); | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-07-31 01:45:54 +02:00
										 |  |  |     private static CreateWelcomePane() { | 
					
						
							| 
									
										
										
										
											2020-07-29 15:05:19 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-07-31 01:45:54 +02:00
										 |  |  |         const layoutToUse = State.state.layoutToUse.data; | 
					
						
							| 
									
										
										
										
											2020-07-31 16:17:16 +02:00
										 |  |  |         let welcome: UIElement = new WelcomeMessage(); | 
					
						
							|  |  |  |         if (layoutToUse.name === CustomLayout.NAME) { | 
					
						
							|  |  |  |             welcome = new CustomLayersPanel(); | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-07-29 15:05:19 +02:00
										 |  |  |         const fullOptions = new TabbedComponent([ | 
					
						
							|  |  |  |             {header: `<img src='${layoutToUse.icon}'>`, content: welcome}, | 
					
						
							|  |  |  |             {header: `<img src='${'./assets/osm-logo.svg'}'>`, content: Translations.t.general.openStreetMapIntro}, | 
					
						
							| 
									
										
										
										
											2020-07-31 01:45:54 +02:00
										 |  |  |             {header: `<img src='${'./assets/share.svg'}'>`, content: new ShareScreen()}, | 
					
						
							| 
									
										
										
										
											2020-07-31 04:58:58 +02:00
										 |  |  |             {header: `<img src='${'./assets/add.svg'}'>`, content: new MoreScreen()}, | 
					
						
							| 
									
										
										
										
											2020-07-29 15:05:19 +02:00
										 |  |  |         ]) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-07-29 15:48:21 +02:00
										 |  |  |         return fullOptions; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-07-31 01:45:54 +02:00
										 |  |  |     static InitWelcomeMessage() { | 
					
						
							| 
									
										
										
										
											2020-07-29 15:48:21 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-07-31 01:45:54 +02:00
										 |  |  |         const fullOptions = this.CreateWelcomePane(); | 
					
						
							| 
									
										
										
										
											2020-07-29 15:48:21 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-07-29 15:05:19 +02:00
										 |  |  |         const help = new FixedUiElement(`<div class='collapse-button-img'><img src='assets/help.svg'  alt='help'></div>`); | 
					
						
							|  |  |  |         const close = new FixedUiElement(`<div class='collapse-button-img'><img src='assets/close.svg'  alt='close'></div>`); | 
					
						
							| 
									
										
										
										
											2020-07-29 18:35:46 +02:00
										 |  |  |         const checkbox = new CheckBox( | 
					
						
							| 
									
										
										
										
											2020-07-29 15:05:19 +02:00
										 |  |  |             new Combine([ | 
					
						
							|  |  |  |                 "<span class='collapse-button'>", close, "</span>", | 
					
						
							|  |  |  |                 "<span id='welcomeMessage'>", fullOptions.onClick(() => { | 
					
						
							|  |  |  |                 }), "</span>"]), | 
					
						
							|  |  |  |             new Combine(["<span class='open-button'>", help, "</span>"]) | 
					
						
							|  |  |  |             , true | 
					
						
							|  |  |  |         ).AttachTo("messagesbox"); | 
					
						
							| 
									
										
										
										
											2020-07-29 18:35:46 +02:00
										 |  |  |         let dontCloseYet = true; | 
					
						
							| 
									
										
										
										
											2020-07-31 01:45:54 +02:00
										 |  |  |         const openedTime = new Date().getTime(); | 
					
						
							|  |  |  |         State.state.locationControl.addCallback(() => { | 
					
						
							|  |  |  |             if (new Date().getTime() - openedTime < 15 * 1000) { | 
					
						
							|  |  |  |                 // Don't autoclose the first 15 secs
 | 
					
						
							| 
									
										
										
										
											2020-07-29 18:35:46 +02:00
										 |  |  |                 return; | 
					
						
							|  |  |  |             } | 
					
						
							|  |  |  |             checkbox.isEnabled.setData(false); | 
					
						
							|  |  |  |         }) | 
					
						
							| 
									
										
										
										
											2020-07-29 15:05:19 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-07-31 01:45:54 +02:00
										 |  |  |         const fullOptions2 = this.CreateWelcomePane(); | 
					
						
							|  |  |  |         State.state.fullScreenMessage.setData(fullOptions2) | 
					
						
							| 
									
										
										
										
											2020-07-29 15:05:19 +02:00
										 |  |  |         new FixedUiElement(`<div class='collapse-button-img' class="shadow"><img src='assets/help.svg'  alt='help'></div>`).onClick(() => { | 
					
						
							| 
									
										
										
										
											2020-07-31 01:45:54 +02:00
										 |  |  |             State.state.fullScreenMessage.setData(fullOptions2) | 
					
						
							| 
									
										
										
										
											2020-07-29 15:05:19 +02:00
										 |  |  |         }).AttachTo("help-button-mobile"); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-07-30 00:59:08 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-07-31 16:17:16 +02:00
										 |  |  |     static InitLayerSelection() { | 
					
						
							| 
									
										
										
										
											2020-07-31 04:58:58 +02:00
										 |  |  |         const closedFilterButton = `<button id="filter__button" class="filter__button shadow">${Img.closedFilterButton}</button>`; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         const openFilterButton = `<button id="filter__button" class="filter__button">${Img.openFilterButton}</button>`; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         let baseLayerOptions = BaseLayers.baseLayers.map((layer) => { | 
					
						
							|  |  |  |             return {value: layer, shown: layer.name} | 
					
						
							|  |  |  |         }); | 
					
						
							|  |  |  |         const backgroundMapPicker = new Combine([new DropDown(`Background map`, baseLayerOptions, State.state.bm.CurrentLayer), openFilterButton]); | 
					
						
							| 
									
										
										
										
											2020-07-31 16:17:16 +02:00
										 |  |  |         const layerSelection = new Combine([`<p class="filter__label">Maplayers</p>`, new LayerSelection()]); | 
					
						
							| 
									
										
										
										
											2020-07-31 04:58:58 +02:00
										 |  |  |         let layerControl = backgroundMapPicker; | 
					
						
							| 
									
										
										
										
											2020-07-31 16:17:16 +02:00
										 |  |  |         if (State.state.filteredLayers.data.length > 1) { | 
					
						
							| 
									
										
										
										
											2020-07-31 04:58:58 +02:00
										 |  |  |             layerControl = new Combine([layerSelection, backgroundMapPicker]); | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         InitUiElements.OnlyIf(State.state.featureSwitchLayers, () => { | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |             const checkbox = new CheckBox(layerControl, closedFilterButton); | 
					
						
							|  |  |  |             checkbox.AttachTo("filter__selection"); | 
					
						
							|  |  |  |             State.state.bm.Location.addCallback(() => { | 
					
						
							|  |  |  |                 checkbox.isEnabled.setData(false); | 
					
						
							|  |  |  |             }); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         }); | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2020-07-31 17:38:03 +02:00
										 |  |  |      | 
					
						
							|  |  |  |     static InitBaseMap(){ | 
					
						
							|  |  |  |         State.state.bm = new Basemap("leafletDiv", State.state.locationControl, new VariableUiElement( | 
					
						
							|  |  |  |             State.state.locationControl.map((location) => { | 
					
						
							|  |  |  |                 const mapComplete = "<a href='https://github.com/pietervdvn/MapComplete' target='_blank'>Mapcomple</a> " + | 
					
						
							|  |  |  |                     " " + | 
					
						
							|  |  |  |                     "<a href='https://github.com/pietervdvn/MapComplete/issues' target='_blank'><img src='./assets/bug.svg' alt='Report bug'  class='small-userbadge-icon'></a>"; | 
					
						
							|  |  |  |                 let editHere = ""; | 
					
						
							|  |  |  |                 if (location !== undefined) { | 
					
						
							|  |  |  |                     editHere = " | " + | 
					
						
							|  |  |  |                         "<a href='https://www.openstreetmap.org/edit?editor=id#map=" + location.zoom + "/" + location.lat + "/" + location.lon + "' target='_blank'>" + | 
					
						
							|  |  |  |                         "<img src='./assets/pencil.svg' alt='edit here' class='small-userbadge-icon'>" + | 
					
						
							|  |  |  |                         "</a>" | 
					
						
							|  |  |  |                 } | 
					
						
							|  |  |  |                 return mapComplete + editHere; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |             }) | 
					
						
							|  |  |  |         )); | 
					
						
							|  |  |  |         State.state.layerUpdater = new LayerUpdater(State.state); | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2020-07-30 00:59:08 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-07-31 16:17:16 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  |     static InitLayers() { | 
					
						
							| 
									
										
										
										
											2020-07-30 00:59:08 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  |         const flayers: FilteredLayer[] = [] | 
					
						
							| 
									
										
										
										
											2020-07-31 16:17:16 +02:00
										 |  |  |         const presets: Preset[] = []; | 
					
						
							| 
									
										
										
										
											2020-07-30 00:59:08 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  |         let minZoom = 0; | 
					
						
							| 
									
										
										
										
											2020-07-31 01:45:54 +02:00
										 |  |  |         const state = State.state; | 
					
						
							|  |  |  |         for (const layer of state.layoutToUse.data.layers) { | 
					
						
							| 
									
										
										
										
											2020-07-30 00:59:08 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  |             const generateInfo = (tagsES, feature) => { | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |                 return new FeatureInfoBox( | 
					
						
							|  |  |  |                     feature, | 
					
						
							|  |  |  |                     tagsES, | 
					
						
							|  |  |  |                     layer.title, | 
					
						
							|  |  |  |                     layer.elementsToShow, | 
					
						
							|  |  |  |                 ) | 
					
						
							|  |  |  |             }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |             minZoom = Math.max(minZoom, layer.minzoom); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |             for (const preset of layer.presets ?? []) { | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |                 if (preset.icon === undefined) { | 
					
						
							|  |  |  |                     const tags = {}; | 
					
						
							|  |  |  |                     for (const tag of preset.tags) { | 
					
						
							|  |  |  |                         const k = tag.key; | 
					
						
							|  |  |  |                         if (typeof (k) === "string") { | 
					
						
							|  |  |  |                             tags[k] = tag.value; | 
					
						
							|  |  |  |                         } | 
					
						
							|  |  |  |                     } | 
					
						
							|  |  |  |                     preset.icon = layer.style(tags)?.icon?.iconUrl; | 
					
						
							|  |  |  |                 } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-07-31 16:17:16 +02:00
										 |  |  |                 presets.push(preset); | 
					
						
							| 
									
										
										
										
											2020-07-30 00:59:08 +02:00
										 |  |  |             } | 
					
						
							| 
									
										
										
										
											2020-07-31 16:17:16 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  |             const flayer: FilteredLayer = FilteredLayer.fromDefinition(layer, generateInfo); | 
					
						
							| 
									
										
										
										
											2020-07-30 00:59:08 +02:00
										 |  |  |             flayers.push(flayer); | 
					
						
							| 
									
										
										
										
											2020-07-31 16:17:16 +02:00
										 |  |  |             flayer.isDisplayed.setData(true) | 
					
						
							| 
									
										
										
										
											2020-07-30 00:59:08 +02:00
										 |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-07-31 16:17:16 +02:00
										 |  |  |         State.state.filteredLayers.setData(flayers); | 
					
						
							|  |  |  |         State.state.presets.setData(presets); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-07-29 15:05:19 +02:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | } |