| 
									
										
										
										
											2020-08-08 21:17:17 +02:00
										 |  |  | import {OsmConnection, UserDetails} from "./Logic/Osm/OsmConnection"; | 
					
						
							|  |  |  | import {VariableUiElement} from "./UI/Base/VariableUIElement"; | 
					
						
							| 
									
										
										
										
											2020-08-17 17:23:15 +02:00
										 |  |  | import {UIEventSource} from "./Logic/UIEventSource"; | 
					
						
							|  |  |  | import {ThemeGenerator} from "./UI/CustomThemeGenerator/ThemeGenerator"; | 
					
						
							|  |  |  | import {Preview} from "./UI/CustomThemeGenerator/Preview"; | 
					
						
							| 
									
										
										
										
											2020-08-22 02:12:46 +02:00
										 |  |  | import {LocalStorageSource} from "./Logic/Web/LocalStorageSource"; | 
					
						
							|  |  |  | import {createHash} from "crypto"; | 
					
						
							|  |  |  | import Combine from "./UI/Base/Combine"; | 
					
						
							|  |  |  | import {Button} from "./UI/Base/Button"; | 
					
						
							| 
									
										
										
										
											2020-08-22 16:00:33 +02:00
										 |  |  | import {FixedUiElement} from "./UI/Base/FixedUiElement"; | 
					
						
							|  |  |  | import {State} from "./State"; | 
					
						
							| 
									
										
										
										
											2020-08-23 01:49:19 +02:00
										 |  |  | import {TextField} from "./UI/Input/TextField"; | 
					
						
							| 
									
										
										
										
											2020-08-08 21:17:17 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | const connection = new OsmConnection(true, new UIEventSource<string>(undefined), false); | 
					
						
							|  |  |  | connection.AttemptLogin(); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-08-22 02:12:46 +02:00
										 |  |  | let hash = window.location.hash?.substr(1); | 
					
						
							|  |  |  | const localStorage = LocalStorageSource.Get("last-custom-save"); | 
					
						
							|  |  |  | console.log("hash", hash) | 
					
						
							|  |  |  | console.log("Saved: ", localStorage.data) | 
					
						
							| 
									
										
										
										
											2020-08-08 21:17:17 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-08-22 16:00:33 +02:00
										 |  |  | if (hash === undefined || hash === "" && localStorage.data !== undefined) { | 
					
						
							| 
									
										
										
										
											2020-08-22 02:12:46 +02:00
										 |  |  |     const previous = localStorage.data.split("#"); | 
					
						
							|  |  |  |     hash = previous[1]; | 
					
						
							|  |  |  |     console.log("Using previously saved data ", hash) | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2020-08-08 21:17:17 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-08-22 02:12:46 +02:00
										 |  |  | const themeGenerator = new ThemeGenerator(connection, hash); | 
					
						
							|  |  |  | themeGenerator.AttachTo("layoutCreator"); | 
					
						
							|  |  |  | themeGenerator.url.syncWith(localStorage); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-08-23 01:49:19 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | function setDefault() { | 
					
						
							|  |  |  |     themeGenerator.themeObject.data.title = undefined; | 
					
						
							|  |  |  |     themeGenerator.themeObject.data.description = undefined; | 
					
						
							|  |  |  |     themeGenerator.themeObject.data.icon = undefined; | 
					
						
							|  |  |  |     themeGenerator.themeObject.data.language = ["en"]; | 
					
						
							|  |  |  |     themeGenerator.themeObject.data.name = undefined; | 
					
						
							|  |  |  |     themeGenerator.themeObject.data.startLat = 0; | 
					
						
							|  |  |  |     themeGenerator.themeObject.data.startLon = 0; | 
					
						
							|  |  |  |     themeGenerator.themeObject.data.startZoom = 12; | 
					
						
							|  |  |  |     themeGenerator.themeObject.data.maintainer = connection.userDetails.data.name; | 
					
						
							|  |  |  |     themeGenerator.themeObject.data.layers = []; | 
					
						
							|  |  |  |     themeGenerator.themeObject.data.widenFactor = 0.07; | 
					
						
							|  |  |  |     themeGenerator.themeObject.ping(); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | var loadFrom = new TextField<string>( | 
					
						
							|  |  |  |     { | 
					
						
							|  |  |  |         placeholder: "Load from a previous JSON (paste the value here)", | 
					
						
							|  |  |  |         toString: str => str, | 
					
						
							|  |  |  |         fromString: str => str, | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | ); | 
					
						
							|  |  |  | loadFrom.GetValue().setData(""); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | const loadFromTextField = new Button("Load", () => { | 
					
						
							|  |  |  |     const parsed = JSON.parse(loadFrom.GetValue().data); | 
					
						
							|  |  |  |     setDefault(); | 
					
						
							|  |  |  |     for (const parsedKey in parsed) { | 
					
						
							|  |  |  |         themeGenerator.themeObject.data[parsedKey] = parsed[parsedKey]; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     themeGenerator.themeObject.ping(); | 
					
						
							|  |  |  |     loadFrom.GetValue().setData(""); | 
					
						
							|  |  |  | }); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-08-22 02:12:46 +02:00
										 |  |  | new Combine([ | 
					
						
							|  |  |  |     new Preview(themeGenerator.url, themeGenerator.themeObject), | 
					
						
							|  |  |  |     "<h2>Danger zone</h2>", | 
					
						
							| 
									
										
										
										
											2020-08-23 01:49:19 +02:00
										 |  |  |     loadFrom, | 
					
						
							|  |  |  |     loadFromTextField, | 
					
						
							|  |  |  |     "<span class='alert'>Loading from the text field will erase the current theme</span>", | 
					
						
							|  |  |  |     | 
					
						
							|  |  |  |     "<br/>", | 
					
						
							|  |  |  |     new Button("Clear theme", setDefault), | 
					
						
							| 
									
										
										
										
											2020-08-22 16:00:33 +02:00
										 |  |  |     "<br/>", | 
					
						
							|  |  |  |     "Version: ", | 
					
						
							|  |  |  |     State.vNumber | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | ]).AttachTo("preview"); |