forked from MapComplete/MapComplete
		
	
		
			
				
	
	
		
			26 lines
		
	
	
	
		
			1 KiB
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
			
		
		
	
	
			26 lines
		
	
	
	
		
			1 KiB
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
| import {UIEventSource} from "./Logic/UIEventSource";
 | |
| import {GenerateEmpty} from "./UI/CustomGenerator/GenerateEmpty";
 | |
| import {TagRendering} from "./UI/TagRendering";
 | |
| import {LayoutConfigJson} from "./Customizations/JSON/LayoutConfigJson";
 | |
| import {OsmConnection} from "./Logic/Osm/OsmConnection";
 | |
| import CustomGeneratorPanel from "./UI/CustomGenerator/CustomGeneratorPanel";
 | |
| import {LocalStorageSource} from "./Logic/Web/LocalStorageSource";
 | |
| 
 | |
| let layout = GenerateEmpty.createEmptyLayout();
 | |
| if (window.location.hash.length > 10) {
 | |
|     layout = JSON.parse(atob(window.location.hash.substr(1))) as LayoutConfigJson;
 | |
| } else {
 | |
|     const hash = LocalStorageSource.Get("last-custom-theme").data
 | |
|     if (hash !== undefined) {
 | |
|         console.log("Using theme from local storage")
 | |
|         layout = JSON.parse(atob(hash)) as LayoutConfigJson;
 | |
|     }
 | |
| }
 | |
| 
 | |
| TagRendering.injectFunction();
 | |
| 
 | |
| const connection = new OsmConnection(false, new UIEventSource<string>(undefined), "customGenerator", false);
 | |
| 
 | |
| new CustomGeneratorPanel(connection, layout)
 | |
|     .AttachTo("maindiv");
 | |
| 
 |