| 
									
										
										
										
											2021-07-28 16:48:59 +02:00
										 |  |  | import Combine from "../Base/Combine" | 
					
						
							|  |  |  | import ScrollableFullScreen from "../Base/ScrollableFullScreen" | 
					
						
							|  |  |  | import Translations from "../i18n/Translations" | 
					
						
							|  |  |  | import Toggle from "../Input/Toggle" | 
					
						
							|  |  |  | import MapControlButton from "../MapControlButton" | 
					
						
							|  |  |  | import Svg from "../../Svg" | 
					
						
							|  |  |  | import AllDownloads from "./AllDownloads" | 
					
						
							|  |  |  | import FilterView from "./FilterView" | 
					
						
							| 
									
										
										
										
											2022-06-19 13:55:33 +02:00
										 |  |  | import { Store, UIEventSource } from "../../Logic/UIEventSource" | 
					
						
							| 
									
										
										
										
											2021-11-21 02:44:35 +01:00
										 |  |  | import BackgroundMapSwitch from "./BackgroundMapSwitch" | 
					
						
							| 
									
										
										
										
											2021-12-10 17:30:50 +01:00
										 |  |  | import Lazy from "../Base/Lazy" | 
					
						
							|  |  |  | import { VariableUiElement } from "../Base/VariableUIElement" | 
					
						
							|  |  |  | import FeatureInfoBox from "../Popup/FeatureInfoBox" | 
					
						
							| 
									
										
										
										
											2021-12-14 03:12:10 +01:00
										 |  |  | import CopyrightPanel from "./CopyrightPanel" | 
					
						
							| 
									
										
										
										
											2022-01-19 20:34:04 +01:00
										 |  |  | import FeaturePipelineState from "../../Logic/State/FeaturePipelineState" | 
					
						
							| 
									
										
										
										
											2022-12-24 03:44:21 +01:00
										 |  |  | import Hotkeys from "../Base/Hotkeys" | 
					
						
							| 
									
										
										
										
											2023-01-06 03:44:04 +01:00
										 |  |  | import { DefaultGuiState } from "../DefaultGuiState" | 
					
						
							| 
									
										
										
										
											2021-07-28 16:48:59 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | export default class LeftControls extends Combine { | 
					
						
							| 
									
										
										
										
											2023-01-06 03:44:04 +01:00
										 |  |  |     constructor(state: FeaturePipelineState, guiState: DefaultGuiState) { | 
					
						
							| 
									
										
										
										
											2021-12-10 17:30:50 +01:00
										 |  |  |         const currentViewFL = state.currentView?.layer | 
					
						
							|  |  |  |         const currentViewAction = new Toggle( | 
					
						
							|  |  |  |             new Lazy(() => { | 
					
						
							| 
									
										
										
										
											2022-06-19 13:55:33 +02:00
										 |  |  |                 const feature: Store<any> = state.currentView.features.map((ffs) => ffs[0]?.feature) | 
					
						
							| 
									
										
										
										
											2021-12-10 17:30:50 +01:00
										 |  |  |                 const icon = new VariableUiElement( | 
					
						
							|  |  |  |                     feature.map((feature) => { | 
					
						
							|  |  |  |                         const defaultIcon = Svg.checkbox_empty_svg() | 
					
						
							|  |  |  |                         if (feature === undefined) { | 
					
						
							|  |  |  |                             return defaultIcon | 
					
						
							|  |  |  |                         } | 
					
						
							|  |  |  |                         const tags = { ...feature.properties, button: "yes" } | 
					
						
							| 
									
										
										
										
											2022-02-01 04:14:54 +01:00
										 |  |  |                         const elem = currentViewFL.layerDef.mapRendering[0]?.GetSimpleIcon( | 
					
						
							|  |  |  |                             new UIEventSource(tags) | 
					
						
							| 
									
										
										
										
											2022-09-08 21:40:48 +02:00
										 |  |  |                         ) | 
					
						
							| 
									
										
										
										
											2021-12-14 03:12:10 +01:00
										 |  |  |                         if (elem === undefined) { | 
					
						
							| 
									
										
										
										
											2021-12-10 17:30:50 +01:00
										 |  |  |                             return defaultIcon | 
					
						
							|  |  |  |                         } | 
					
						
							|  |  |  |                         return elem | 
					
						
							| 
									
										
										
										
											2021-12-11 02:19:28 +01:00
										 |  |  |                     }) | 
					
						
							|  |  |  |                 ).SetClass("inline-block w-full h-full") | 
					
						
							| 
									
										
										
										
											2022-09-08 21:40:48 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-12-08 02:56:49 +01:00
										 |  |  |                 feature.map((feature) => { | 
					
						
							|  |  |  |                     if (feature === undefined) { | 
					
						
							|  |  |  |                         return undefined | 
					
						
							|  |  |  |                     } | 
					
						
							| 
									
										
										
										
											2022-12-16 13:45:07 +01:00
										 |  |  |                     const tagsSource = state.allElements.getEventSourceById(feature.properties.id) | 
					
						
							| 
									
										
										
										
											2022-12-08 02:56:49 +01:00
										 |  |  |                     return new FeatureInfoBox(tagsSource, currentViewFL.layerDef, state, { | 
					
						
							|  |  |  |                         hashToShow: "currentview", | 
					
						
							|  |  |  |                         isShown: guiState.currentViewControlIsOpened, | 
					
						
							| 
									
										
										
										
											2021-12-10 17:30:50 +01:00
										 |  |  |                     }) | 
					
						
							| 
									
										
										
										
											2022-12-08 02:56:49 +01:00
										 |  |  |                 }) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |                 return new MapControlButton(icon) | 
					
						
							| 
									
										
										
										
											2021-12-11 02:19:28 +01:00
										 |  |  |             }).onClick(() => { | 
					
						
							| 
									
										
										
										
											2021-12-10 17:30:50 +01:00
										 |  |  |                 guiState.currentViewControlIsOpened.setData(true) | 
					
						
							|  |  |  |             }), | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |             undefined, | 
					
						
							|  |  |  |             new UIEventSource<boolean>( | 
					
						
							|  |  |  |                 currentViewFL !== undefined && currentViewFL?.layerDef?.tagRenderings !== null | 
					
						
							|  |  |  |             ) | 
					
						
							|  |  |  |         ) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-12-08 02:56:49 +01:00
										 |  |  |         new AllDownloads(guiState.downloadControlIsOpened, state) | 
					
						
							|  |  |  |         const toggledDownload = new MapControlButton(Svg.download_svg()).onClick(() => | 
					
						
							|  |  |  |             guiState.downloadControlIsOpened.setData(true) | 
					
						
							| 
									
										
										
										
											2021-07-28 18:20:59 +02:00
										 |  |  |         ) | 
					
						
							| 
									
										
										
										
											2021-07-28 16:48:59 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-12-24 03:44:21 +01:00
										 |  |  |         const downloadButton = new Toggle( | 
					
						
							| 
									
										
										
										
											2021-07-28 16:48:59 +02:00
										 |  |  |             toggledDownload, | 
					
						
							|  |  |  |             undefined, | 
					
						
							| 
									
										
										
										
											2021-10-15 05:20:02 +02:00
										 |  |  |             state.featureSwitchEnableExport.map( | 
					
						
							|  |  |  |                 (downloadEnabled) => downloadEnabled || state.featureSwitchExportAsPdf.data, | 
					
						
							|  |  |  |                 [state.featureSwitchExportAsPdf] | 
					
						
							| 
									
										
										
										
											2021-07-28 16:48:59 +02:00
										 |  |  |             ) | 
					
						
							| 
									
										
										
										
											2022-09-08 21:40:48 +02:00
										 |  |  |         ) | 
					
						
							| 
									
										
										
										
											2021-07-28 16:48:59 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-12-08 02:56:49 +01:00
										 |  |  |         new ScrollableFullScreen( | 
					
						
							|  |  |  |             () => Translations.t.general.layerSelection.title.Clone(), | 
					
						
							|  |  |  |             () => | 
					
						
							|  |  |  |                 new FilterView(state.filteredLayers, state.overlayToggles, state).SetClass( | 
					
						
							|  |  |  |                     "block p-1" | 
					
						
							|  |  |  |                 ), | 
					
						
							|  |  |  |             "filters", | 
					
						
							| 
									
										
										
										
											2021-10-15 05:20:02 +02:00
										 |  |  |             guiState.filterViewIsOpened | 
					
						
							| 
									
										
										
										
											2021-07-28 18:20:59 +02:00
										 |  |  |         ) | 
					
						
							| 
									
										
										
										
											2022-12-08 02:56:49 +01:00
										 |  |  |         const toggledFilter = new MapControlButton(Svg.layers_svg()).onClick(() => | 
					
						
							| 
									
										
										
										
											2022-12-16 13:45:07 +01:00
										 |  |  |             guiState.filterViewIsOpened.setData(true) | 
					
						
							|  |  |  |         ) | 
					
						
							| 
									
										
										
										
											2022-12-24 03:44:21 +01:00
										 |  |  |         state.featureSwitchFilter.addCallbackAndRun((f) => { | 
					
						
							|  |  |  |             Hotkeys.RegisterHotkey( | 
					
						
							|  |  |  |                 { nomod: "B" }, | 
					
						
							| 
									
										
										
										
											2022-12-28 00:37:48 +01:00
										 |  |  |                 Translations.t.hotkeyDocumentation.openLayersPanel, | 
					
						
							| 
									
										
										
										
											2022-12-24 03:44:21 +01:00
										 |  |  |                 () => { | 
					
						
							|  |  |  |                     guiState.filterViewIsOpened.setData(!guiState.filterViewIsOpened.data) | 
					
						
							|  |  |  |                 } | 
					
						
							|  |  |  |             ) | 
					
						
							|  |  |  |         }) | 
					
						
							| 
									
										
										
										
											2021-07-28 16:48:59 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  |         const filterButton = new Toggle(toggledFilter, undefined, state.featureSwitchFilter) | 
					
						
							| 
									
										
										
										
											2021-12-10 17:30:50 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-12-04 12:20:24 +01:00
										 |  |  |         const mapSwitch = new Toggle( | 
					
						
							| 
									
										
										
										
											2022-12-24 03:44:21 +01:00
										 |  |  |             new BackgroundMapSwitch(state, state.backgroundLayer, { enableHotkeys: true }), | 
					
						
							| 
									
										
										
										
											2021-12-04 12:20:24 +01:00
										 |  |  |             undefined, | 
					
						
							|  |  |  |             state.featureSwitchBackgroundSelection | 
					
						
							|  |  |  |         ) | 
					
						
							| 
									
										
										
										
											2021-07-28 16:48:59 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-02-06 22:43:34 +01:00
										 |  |  |         super([currentViewAction, filterButton, downloadButton, mapSwitch]) | 
					
						
							| 
									
										
										
										
											2021-09-09 00:05:51 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-07-28 16:48:59 +02:00
										 |  |  |         this.SetClass("flex flex-col") | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | } |