| 
									
										
										
										
											2022-09-08 21:40:48 +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" | 
					
						
							|  |  |  | import { Store, UIEventSource } from "../../Logic/UIEventSource" | 
					
						
							|  |  |  | import BackgroundMapSwitch from "./BackgroundMapSwitch" | 
					
						
							|  |  |  | import Lazy from "../Base/Lazy" | 
					
						
							|  |  |  | import { VariableUiElement } from "../Base/VariableUIElement" | 
					
						
							|  |  |  | import FeatureInfoBox from "../Popup/FeatureInfoBox" | 
					
						
							|  |  |  | import CopyrightPanel from "./CopyrightPanel" | 
					
						
							|  |  |  | import FeaturePipelineState from "../../Logic/State/FeaturePipelineState" | 
					
						
							| 
									
										
										
										
											2021-07-28 16:48:59 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | export default class LeftControls extends Combine { | 
					
						
							| 
									
										
										
										
											2022-09-08 21:40:48 +02:00
										 |  |  |     constructor( | 
					
						
							|  |  |  |         state: FeaturePipelineState, | 
					
						
							|  |  |  |         guiState: { | 
					
						
							|  |  |  |             currentViewControlIsOpened: UIEventSource<boolean> | 
					
						
							|  |  |  |             downloadControlIsOpened: UIEventSource<boolean> | 
					
						
							|  |  |  |             filterViewIsOpened: UIEventSource<boolean> | 
					
						
							|  |  |  |             copyrightViewIsOpened: UIEventSource<boolean> | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |     ) { | 
					
						
							| 
									
										
										
										
											2021-12-10 17:30:50 +01:00
										 |  |  |         const currentViewFL = state.currentView?.layer | 
					
						
							|  |  |  |         const currentViewAction = new Toggle( | 
					
						
							|  |  |  |             new Lazy(() => { | 
					
						
							| 
									
										
										
										
											2022-09-08 21:40:48 +02:00
										 |  |  |                 const feature: Store<any> = state.currentView.features.map((ffs) => ffs[0]?.feature) | 
					
						
							|  |  |  |                 const icon = new VariableUiElement( | 
					
						
							|  |  |  |                     feature.map((feature) => { | 
					
						
							|  |  |  |                         const defaultIcon = Svg.checkbox_empty_svg() | 
					
						
							|  |  |  |                         if (feature === undefined) { | 
					
						
							|  |  |  |                             return defaultIcon | 
					
						
							|  |  |  |                         } | 
					
						
							|  |  |  |                         const tags = { ...feature.properties, button: "yes" } | 
					
						
							|  |  |  |                         const elem = currentViewFL.layerDef.mapRendering[0]?.GetSimpleIcon( | 
					
						
							|  |  |  |                             new UIEventSource(tags) | 
					
						
							|  |  |  |                         ) | 
					
						
							|  |  |  |                         if (elem === undefined) { | 
					
						
							|  |  |  |                             return defaultIcon | 
					
						
							|  |  |  |                         } | 
					
						
							|  |  |  |                         return elem | 
					
						
							|  |  |  |                     }) | 
					
						
							|  |  |  |                 ).SetClass("inline-block w-full h-full") | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |                 const featureBox = new VariableUiElement( | 
					
						
							|  |  |  |                     feature.map((feature) => { | 
					
						
							|  |  |  |                         if (feature === undefined) { | 
					
						
							|  |  |  |                             return undefined | 
					
						
							|  |  |  |                         } | 
					
						
							|  |  |  |                         return new Lazy(() => { | 
					
						
							|  |  |  |                             const tagsSource = state.allElements.getEventSourceById( | 
					
						
							|  |  |  |                                 feature.properties.id | 
					
						
							|  |  |  |                             ) | 
					
						
							|  |  |  |                             return new FeatureInfoBox(tagsSource, currentViewFL.layerDef, state, { | 
					
						
							|  |  |  |                                 hashToShow: "currentview", | 
					
						
							|  |  |  |                                 isShown: guiState.currentViewControlIsOpened, | 
					
						
							|  |  |  |                             }).SetClass("md:floating-element-width") | 
					
						
							| 
									
										
										
										
											2022-07-08 03:14:55 +02:00
										 |  |  |                         }) | 
					
						
							| 
									
										
										
										
											2021-12-10 17:30:50 +01:00
										 |  |  |                     }) | 
					
						
							| 
									
										
										
										
											2022-09-08 21:40:48 +02:00
										 |  |  |                 ) | 
					
						
							|  |  |  |                     .SetStyle("width: 40rem") | 
					
						
							|  |  |  |                     .SetClass("block") | 
					
						
							| 
									
										
										
										
											2021-12-10 17:30:50 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  |                 return new Toggle( | 
					
						
							|  |  |  |                     featureBox, | 
					
						
							|  |  |  |                     new MapControlButton(icon), | 
					
						
							|  |  |  |                     guiState.currentViewControlIsOpened | 
					
						
							|  |  |  |                 ) | 
					
						
							| 
									
										
										
										
											2021-12-11 02:19:28 +01:00
										 |  |  |             }).onClick(() => { | 
					
						
							| 
									
										
										
										
											2021-12-10 17:30:50 +01:00
										 |  |  |                 guiState.currentViewControlIsOpened.setData(true) | 
					
						
							|  |  |  |             }), | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |             undefined, | 
					
						
							| 
									
										
										
										
											2022-09-08 21:40:48 +02:00
										 |  |  |             new UIEventSource<boolean>( | 
					
						
							|  |  |  |                 currentViewFL !== undefined && currentViewFL?.layerDef?.tagRenderings !== null | 
					
						
							|  |  |  |             ) | 
					
						
							| 
									
										
										
										
											2021-12-10 17:30:50 +01:00
										 |  |  |         ) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-07-28 16:48:59 +02:00
										 |  |  |         const toggledDownload = new Toggle( | 
					
						
							| 
									
										
										
										
											2022-09-08 21:40:48 +02:00
										 |  |  |             new AllDownloads(guiState.downloadControlIsOpened, state).SetClass( | 
					
						
							|  |  |  |                 "block p-1 rounded-full md:floating-element-width" | 
					
						
							|  |  |  |             ), | 
					
						
							|  |  |  |             new MapControlButton(Svg.download_svg()).onClick(() => | 
					
						
							|  |  |  |                 guiState.downloadControlIsOpened.setData(true) | 
					
						
							|  |  |  |             ), | 
					
						
							| 
									
										
										
										
											2021-10-15 05:20:02 +02:00
										 |  |  |             guiState.downloadControlIsOpened | 
					
						
							| 
									
										
										
										
											2021-07-28 18:20:59 +02:00
										 |  |  |         ) | 
					
						
							| 
									
										
										
										
											2021-07-28 16:48:59 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  |         const downloadButtonn = new Toggle( | 
					
						
							|  |  |  |             toggledDownload, | 
					
						
							|  |  |  |             undefined, | 
					
						
							| 
									
										
										
										
											2022-09-08 21:40:48 +02:00
										 |  |  |             state.featureSwitchEnableExport.map( | 
					
						
							|  |  |  |                 (downloadEnabled) => downloadEnabled || state.featureSwitchExportAsPdf.data, | 
					
						
							|  |  |  |                 [state.featureSwitchExportAsPdf] | 
					
						
							|  |  |  |             ) | 
					
						
							|  |  |  |         ) | 
					
						
							| 
									
										
										
										
											2021-07-28 16:48:59 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  |         const toggledFilter = new Toggle( | 
					
						
							|  |  |  |             new ScrollableFullScreen( | 
					
						
							|  |  |  |                 () => Translations.t.general.layerSelection.title.Clone(), | 
					
						
							|  |  |  |                 () => | 
					
						
							| 
									
										
										
										
											2022-08-20 12:46:33 +02:00
										 |  |  |                     new FilterView(state.filteredLayers, state.overlayToggles, state).SetClass( | 
					
						
							| 
									
										
										
										
											2021-10-23 02:46:37 +02:00
										 |  |  |                         "block p-1" | 
					
						
							| 
									
										
										
										
											2021-07-28 16:48:59 +02:00
										 |  |  |                     ), | 
					
						
							| 
									
										
										
										
											2021-10-25 20:50:59 +02:00
										 |  |  |                 "filters", | 
					
						
							| 
									
										
										
										
											2021-10-15 05:20:02 +02:00
										 |  |  |                 guiState.filterViewIsOpened | 
					
						
							| 
									
										
										
										
											2021-12-12 02:59:24 +01:00
										 |  |  |             ).SetClass("rounded-lg md:floating-element-width"), | 
					
						
							| 
									
										
										
										
											2022-09-08 21:40:48 +02:00
										 |  |  |             new MapControlButton(Svg.layers_svg()).onClick(() => | 
					
						
							|  |  |  |                 guiState.filterViewIsOpened.setData(true) | 
					
						
							|  |  |  |             ), | 
					
						
							| 
									
										
										
										
											2021-10-15 05:20:02 +02:00
										 |  |  |             guiState.filterViewIsOpened | 
					
						
							| 
									
										
										
										
											2021-07-28 18:20:59 +02:00
										 |  |  |         ) | 
					
						
							| 
									
										
										
										
											2021-07-28 16:48:59 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-09-08 21:40:48 +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( | 
					
						
							|  |  |  |             new BackgroundMapSwitch(state, state.backgroundLayer), | 
					
						
							|  |  |  |             undefined, | 
					
						
							|  |  |  |             state.featureSwitchBackgroundSelection | 
					
						
							|  |  |  |         ) | 
					
						
							| 
									
										
										
										
											2021-07-28 16:48:59 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-12-14 03:12:10 +01:00
										 |  |  |         // If the welcomeMessage is disabled, the copyright is hidden (as that is where the copyright is located
 | 
					
						
							|  |  |  |         const copyright = new Toggle( | 
					
						
							|  |  |  |             undefined, | 
					
						
							| 
									
										
										
										
											2022-09-08 21:40:48 +02:00
										 |  |  |             new Lazy( | 
					
						
							|  |  |  |                 () => | 
					
						
							|  |  |  |                     new Toggle( | 
					
						
							|  |  |  |                         new ScrollableFullScreen( | 
					
						
							|  |  |  |                             () => Translations.t.general.attribution.attributionTitle, | 
					
						
							|  |  |  |                             () => new CopyrightPanel(state), | 
					
						
							|  |  |  |                             "copyright", | 
					
						
							|  |  |  |                             guiState.copyrightViewIsOpened | 
					
						
							|  |  |  |                         ), | 
					
						
							|  |  |  |                         new MapControlButton(Svg.copyright_svg()).onClick(() => | 
					
						
							|  |  |  |                             guiState.copyrightViewIsOpened.setData(true) | 
					
						
							|  |  |  |                         ), | 
					
						
							| 
									
										
										
										
											2021-12-14 03:12:10 +01:00
										 |  |  |                         guiState.copyrightViewIsOpened | 
					
						
							| 
									
										
										
										
											2022-09-08 21:40:48 +02:00
										 |  |  |                     ) | 
					
						
							| 
									
										
										
										
											2021-12-14 03:12:10 +01:00
										 |  |  |             ), | 
					
						
							|  |  |  |             state.featureSwitchWelcomeMessage | 
					
						
							|  |  |  |         ) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-09-08 21:40:48 +02:00
										 |  |  |         super([currentViewAction, filterButton, downloadButtonn, copyright, mapSwitch]) | 
					
						
							| 
									
										
										
										
											2021-09-09 00:05:51 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-07-28 16:48:59 +02:00
										 |  |  |         this.SetClass("flex flex-col") | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2022-09-08 21:40:48 +02:00
										 |  |  | } |