| 
									
										
										
										
											2021-01-04 04:06:21 +01:00
										 |  |  | import {VariableUiElement} from "../Base/VariableUIElement"; | 
					
						
							|  |  |  | import Svg from "../../Svg"; | 
					
						
							|  |  |  | import Combine from "../Base/Combine"; | 
					
						
							|  |  |  | import {SubtleButton} from "../Base/SubtleButton"; | 
					
						
							|  |  |  | import Translations from "../i18n/Translations"; | 
					
						
							| 
									
										
										
										
											2021-07-26 18:02:55 +02:00
										 |  |  | import * as personal from "../../assets/themes/personal/personal.json" | 
					
						
							| 
									
										
										
										
											2021-01-04 04:06:21 +01:00
										 |  |  | import Constants from "../../Models/Constants"; | 
					
						
							| 
									
										
										
										
											2021-06-10 01:36:20 +02:00
										 |  |  | import BaseUIElement from "../BaseUIElement"; | 
					
						
							| 
									
										
										
										
											2021-08-07 23:11:34 +02:00
										 |  |  | import LayoutConfig from "../../Models/ThemeConfig/LayoutConfig"; | 
					
						
							| 
									
										
										
										
											2021-10-15 05:20:02 +02:00
										 |  |  | import {UIEventSource} from "../../Logic/UIEventSource"; | 
					
						
							|  |  |  | import Loc from "../../Models/Loc"; | 
					
						
							| 
									
										
										
										
											2022-04-01 12:51:55 +02:00
										 |  |  | import {OsmConnection} from "../../Logic/Osm/OsmConnection"; | 
					
						
							| 
									
										
										
										
											2021-10-15 05:20:02 +02:00
										 |  |  | import UserRelatedState from "../../Logic/State/UserRelatedState"; | 
					
						
							|  |  |  | import Toggle from "../Input/Toggle"; | 
					
						
							|  |  |  | import {Utils} from "../../Utils"; | 
					
						
							|  |  |  | import Title from "../Base/Title"; | 
					
						
							| 
									
										
										
										
											2021-12-21 18:35:31 +01:00
										 |  |  | import * as themeOverview from "../../assets/generated/theme_overview.json" | 
					
						
							|  |  |  | import {Translation} from "../i18n/Translation"; | 
					
						
							| 
									
										
										
										
											2022-04-24 01:32:19 +02:00
										 |  |  | import {TextField} from "../Input/TextField"; | 
					
						
							|  |  |  | import FilteredCombine from "../Base/FilteredCombine"; | 
					
						
							|  |  |  | import Locale from "../i18n/Locale"; | 
					
						
							| 
									
										
										
										
											2020-07-29 15:48:21 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-04-30 02:10:57 +02:00
										 |  |  | export default class MoreScreen extends Combine { | 
					
						
							| 
									
										
										
										
											2021-01-17 21:04:37 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-04-30 02:10:57 +02:00
										 |  |  |     private static readonly officialThemes: { | 
					
						
							|  |  |  |         id: string, | 
					
						
							|  |  |  |         icon: string, | 
					
						
							|  |  |  |         title: any, | 
					
						
							|  |  |  |         shortDescription: any, | 
					
						
							|  |  |  |         definition?: any, | 
					
						
							|  |  |  |         mustHaveLanguage?: boolean, | 
					
						
							|  |  |  |         hideFromOverview: boolean, | 
					
						
							|  |  |  |         keywors?: any[] | 
					
						
							|  |  |  |     }[] = themeOverview["default"]; | 
					
						
							|  |  |  |      | 
					
						
							| 
									
										
										
										
											2021-10-15 05:20:02 +02:00
										 |  |  |     constructor(state: UserRelatedState & { | 
					
						
							|  |  |  |         locationControl?: UIEventSource<Loc>, | 
					
						
							|  |  |  |         layoutToUse?: LayoutConfig | 
					
						
							|  |  |  |     }, onMainScreen: boolean = false) { | 
					
						
							| 
									
										
										
										
											2021-05-30 00:17:31 +02:00
										 |  |  |         const tr = Translations.t.general.morescreen; | 
					
						
							| 
									
										
										
										
											2021-06-10 01:36:20 +02:00
										 |  |  |         let themeButtonStyle = "" | 
					
						
							|  |  |  |         let themeListStyle = "" | 
					
						
							|  |  |  |         if (onMainScreen) { | 
					
						
							|  |  |  |             themeButtonStyle = "h-32 min-h-32 max-h-32 overflow-ellipsis overflow-hidden" | 
					
						
							|  |  |  |             themeListStyle = "md:grid md:grid-flow-row md:grid-cols-2 lg:grid-cols-3 xl:grid-cols-g4 gap-4" | 
					
						
							|  |  |  |         } | 
					
						
							| 
									
										
										
										
											2021-05-30 00:17:31 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-04-24 01:32:19 +02:00
										 |  |  |         const search = new TextField({ | 
					
						
							| 
									
										
										
										
											2022-04-28 02:04:25 +02:00
										 |  |  |             placeholder: tr.searchForATheme, | 
					
						
							| 
									
										
										
										
											2022-04-24 01:32:19 +02:00
										 |  |  |         }) | 
					
						
							| 
									
										
										
										
											2022-04-30 02:10:57 +02:00
										 |  |  |         search.enterPressed.addCallbackD(searchTerm => { | 
					
						
							| 
									
										
										
										
											2022-04-30 14:00:03 +02:00
										 |  |  |             searchTerm = searchTerm.toLowerCase() | 
					
						
							|  |  |  |             if(searchTerm === "personal"){ | 
					
						
							|  |  |  |                 window.location.href = MoreScreen.createUrlFor({id: "personal"}, false, state).data | 
					
						
							|  |  |  |             } | 
					
						
							| 
									
										
										
										
											2022-05-01 04:17:40 +02:00
										 |  |  |             if(searchTerm === "bugs" || searchTerm === "issues") { | 
					
						
							| 
									
										
										
										
											2022-04-30 14:00:03 +02:00
										 |  |  |                 window.location.href = "https://github.com/pietervdvn/MapComplete/issues" | 
					
						
							|  |  |  |             } | 
					
						
							|  |  |  |             if(searchTerm === "source") { | 
					
						
							|  |  |  |                 window.location.href = "https://github.com/pietervdvn/MapComplete" | 
					
						
							|  |  |  |             } | 
					
						
							|  |  |  |             if(searchTerm === "docs") { | 
					
						
							|  |  |  |                 window.location.href = "https://github.com/pietervdvn/MapComplete/tree/develop/Docs" | 
					
						
							|  |  |  |             } | 
					
						
							|  |  |  |             if(searchTerm === "osmcha" || searchTerm === "stats"){ | 
					
						
							|  |  |  |                 window.location.href = Utils.OsmChaLinkFor(7) | 
					
						
							|  |  |  |             } | 
					
						
							| 
									
										
										
										
											2022-04-30 02:10:57 +02:00
										 |  |  |             // Enter pressed -> search the first _official_ matchin theme and open it
 | 
					
						
							| 
									
										
										
										
											2022-04-30 14:00:03 +02:00
										 |  |  |             const publicTheme = MoreScreen.officialThemes.find(th =>  | 
					
						
							|  |  |  |                 th.hideFromOverview == false &&  | 
					
						
							|  |  |  |                 th.id !== "personal" && | 
					
						
							|  |  |  |                 MoreScreen.MatchesLayoutFunc(th)(searchTerm)) | 
					
						
							| 
									
										
										
										
											2022-04-30 02:10:57 +02:00
										 |  |  |             if (publicTheme !== undefined) { | 
					
						
							|  |  |  |                 window.location.href = MoreScreen.createUrlFor(publicTheme, false, state).data | 
					
						
							|  |  |  |             } | 
					
						
							| 
									
										
										
										
											2022-04-30 14:00:03 +02:00
										 |  |  |             const hiddenTheme = MoreScreen.officialThemes.find(th =>  | 
					
						
							|  |  |  |                 th.id !== "personal" && | 
					
						
							|  |  |  |                 MoreScreen.MatchesLayoutFunc(th)(searchTerm)) | 
					
						
							| 
									
										
										
										
											2022-04-30 02:10:57 +02:00
										 |  |  |             if (hiddenTheme !== undefined) { | 
					
						
							|  |  |  |                 window.location.href = MoreScreen.createUrlFor(hiddenTheme, false, state).data | 
					
						
							|  |  |  |             } | 
					
						
							|  |  |  |         }) | 
					
						
							| 
									
										
										
										
											2022-04-28 02:04:25 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  |         if (onMainScreen) { | 
					
						
							|  |  |  |             search.focus() | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |         document.addEventListener("keydown", function (event) { | 
					
						
							|  |  |  |             if (event.ctrlKey && event.code === "KeyF") { | 
					
						
							|  |  |  |                 search.focus() | 
					
						
							|  |  |  |                 event.preventDefault(); | 
					
						
							|  |  |  |             } | 
					
						
							|  |  |  |         }); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-04-24 01:32:19 +02:00
										 |  |  |         const searchBar = new Combine([Svg.search_svg().SetClass("w-8"), search.SetClass("mr-4 w-full")]) | 
					
						
							| 
									
										
										
										
											2022-04-28 02:04:25 +02:00
										 |  |  |             .SetClass("flex rounded-full border-2 border-black items-center my-2 w-1/2") | 
					
						
							| 
									
										
										
										
											2022-04-24 01:32:19 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-04-28 02:04:25 +02:00
										 |  |  |         super([ | 
					
						
							|  |  |  |             new Combine([searchBar]).SetClass("flex justify-center"), | 
					
						
							| 
									
										
										
										
											2022-04-24 01:32:19 +02:00
										 |  |  |             MoreScreen.createOfficialThemesList(state, themeButtonStyle, themeListStyle, search.GetValue()), | 
					
						
							|  |  |  |             MoreScreen.createPreviouslyVistedHiddenList(state, themeButtonStyle, themeListStyle, search.GetValue()), | 
					
						
							|  |  |  |             MoreScreen.createUnofficialThemeList(themeButtonStyle, state, themeListStyle, search.GetValue()), | 
					
						
							| 
									
										
										
										
											2021-06-13 15:04:55 +02:00
										 |  |  |             tr.streetcomplete.Clone().SetClass("block text-base mx-10 my-3 mb-10") | 
					
						
							| 
									
										
										
										
											2021-10-15 05:20:02 +02:00
										 |  |  |         ]); | 
					
						
							| 
									
										
										
										
											2021-06-10 01:36:20 +02:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2022-04-28 02:04:25 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  |     private static NothingFound(search: UIEventSource<string>): BaseUIElement { | 
					
						
							|  |  |  |         const t = Translations.t.general.morescreen; | 
					
						
							| 
									
										
										
										
											2022-04-24 01:32:19 +02:00
										 |  |  |         return new Combine([ | 
					
						
							|  |  |  |             new Title(t.noMatchingThemes, 5).SetClass("w-max font-bold"), | 
					
						
							| 
									
										
										
										
											2022-04-28 02:04:25 +02:00
										 |  |  |             new SubtleButton(Svg.search_disable_ui(), t.noSearch, {imgSize: "h-6"}).SetClass("h-12 w-max") | 
					
						
							|  |  |  |                 .onClick(() => search.setData("")) | 
					
						
							| 
									
										
										
										
											2022-04-24 01:32:19 +02:00
										 |  |  |         ]).SetClass("flex flex-col items-center w-full") | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2021-09-09 00:05:51 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-04-30 02:10:57 +02:00
										 |  |  |     private static createUrlFor(layout: { id: string, definition?: string }, | 
					
						
							|  |  |  |                                 isCustom: boolean, | 
					
						
							|  |  |  |                                 state?: { locationControl?: UIEventSource<{ lat, lon, zoom }>, layoutToUse?: { id } } | 
					
						
							|  |  |  |     ): UIEventSource<string> { | 
					
						
							| 
									
										
										
										
											2021-11-07 16:34:51 +01:00
										 |  |  |         if (layout === undefined) { | 
					
						
							|  |  |  |             return undefined; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |         if (layout.id === undefined) { | 
					
						
							|  |  |  |             console.error("ID is undefined for layout", layout); | 
					
						
							|  |  |  |             return undefined; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         if (layout.id === state?.layoutToUse?.id) { | 
					
						
							|  |  |  |             return undefined; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         const currentLocation = state?.locationControl; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         let path = window.location.pathname; | 
					
						
							|  |  |  |         // Path starts with a '/' and contains everything, e.g. '/dir/dir/page.html'
 | 
					
						
							|  |  |  |         path = path.substr(0, path.lastIndexOf("/")); | 
					
						
							|  |  |  |         // Path will now contain '/dir/dir', or empty string in case of nothing
 | 
					
						
							|  |  |  |         if (path === "") { | 
					
						
							|  |  |  |             path = "." | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         let linkPrefix = `${path}/${layout.id.toLowerCase()}.html?` | 
					
						
							|  |  |  |         if (location.hostname === "localhost" || location.hostname === "127.0.0.1") { | 
					
						
							| 
									
										
										
										
											2021-12-21 18:35:31 +01:00
										 |  |  |             linkPrefix = `${path}/theme.html?layout=${layout.id}&` | 
					
						
							| 
									
										
										
										
											2021-11-07 16:34:51 +01:00
										 |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-12-21 20:57:25 +01:00
										 |  |  |         if (isCustom) { | 
					
						
							| 
									
										
										
										
											2021-12-21 18:35:31 +01:00
										 |  |  |             linkPrefix = `${path}/theme.html?userlayout=${layout.id}&` | 
					
						
							| 
									
										
										
										
											2021-11-07 16:34:51 +01:00
										 |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-02-14 15:41:14 +01:00
										 |  |  |         let hash = "" | 
					
						
							| 
									
										
										
										
											2022-04-13 02:44:06 +02:00
										 |  |  |         if (layout.definition !== undefined) { | 
					
						
							|  |  |  |             hash = "#" + btoa(JSON.stringify(layout.definition)) | 
					
						
							| 
									
										
										
										
											2022-02-14 15:41:14 +01:00
										 |  |  |         } | 
					
						
							| 
									
										
										
										
											2022-04-13 02:44:06 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-04-30 02:10:57 +02:00
										 |  |  |         return currentLocation?.map(currentLocation => { | 
					
						
							| 
									
										
										
										
											2021-11-07 16:34:51 +01:00
										 |  |  |             const params = [ | 
					
						
							|  |  |  |                 ["z", currentLocation?.zoom], | 
					
						
							|  |  |  |                 ["lat", currentLocation?.lat], | 
					
						
							|  |  |  |                 ["lon", currentLocation?.lon] | 
					
						
							|  |  |  |             ].filter(part => part[1] !== undefined) | 
					
						
							|  |  |  |                 .map(part => part[0] + "=" + part[1]) | 
					
						
							|  |  |  |                 .join("&") | 
					
						
							| 
									
										
										
										
											2022-02-14 15:41:14 +01:00
										 |  |  |             return `${linkPrefix}${params}${hash}`; | 
					
						
							| 
									
										
										
										
											2021-12-21 20:57:25 +01:00
										 |  |  |         }) ?? new UIEventSource<string>(`${linkPrefix}`) | 
					
						
							| 
									
										
										
										
											2021-11-07 16:34:51 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-04-30 02:10:57 +02:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /** | 
					
						
							|  |  |  |      * Creates a button linking to the given theme | 
					
						
							|  |  |  |      * @private | 
					
						
							|  |  |  |      */ | 
					
						
							|  |  |  |     public static createLinkButton( | 
					
						
							|  |  |  |         state: { | 
					
						
							|  |  |  |             locationControl?: UIEventSource<Loc>, | 
					
						
							|  |  |  |             layoutToUse?: LayoutConfig | 
					
						
							|  |  |  |         }, layout: { | 
					
						
							|  |  |  |             id: string, | 
					
						
							|  |  |  |             icon: string, | 
					
						
							|  |  |  |             title: any, | 
					
						
							|  |  |  |             shortDescription: any, | 
					
						
							|  |  |  |             definition?: any, | 
					
						
							|  |  |  |             mustHaveLanguage?: boolean | 
					
						
							|  |  |  |         }, isCustom: boolean = false | 
					
						
							|  |  |  |     ): | 
					
						
							|  |  |  |         BaseUIElement { | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         const url = MoreScreen.createUrlFor(layout, isCustom, state) | 
					
						
							| 
									
										
										
										
											2021-11-07 16:34:51 +01:00
										 |  |  |         return new SubtleButton(layout.icon, | 
					
						
							|  |  |  |             new Combine([ | 
					
						
							|  |  |  |                 `<dt class='text-lg leading-6 font-medium text-gray-900 group-hover:text-blue-800'>`, | 
					
						
							| 
									
										
										
										
											2022-04-13 02:44:06 +02:00
										 |  |  |                 new Translation(layout.title, !isCustom && !layout.mustHaveLanguage ? "themes:" + layout.id + ".title" : undefined), | 
					
						
							| 
									
										
										
										
											2021-11-07 16:34:51 +01:00
										 |  |  |                 `</dt>`, | 
					
						
							|  |  |  |                 `<dd class='mt-1 text-base text-gray-500 group-hover:text-blue-900 overflow-ellipsis'>`, | 
					
						
							| 
									
										
										
										
											2021-12-21 18:35:31 +01:00
										 |  |  |                 new Translation(layout.shortDescription)?.SetClass("subtle") ?? "", | 
					
						
							| 
									
										
										
										
											2021-11-07 16:34:51 +01:00
										 |  |  |                 `</dd>`, | 
					
						
							| 
									
										
										
										
											2022-04-30 02:10:57 +02:00
										 |  |  |             ]), {url, newTab: false}); | 
					
						
							| 
									
										
										
										
											2021-11-07 16:34:51 +01:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2021-10-15 05:20:02 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-01-18 21:26:07 +01:00
										 |  |  |     public static CreateProffessionalSerivesButton() { | 
					
						
							| 
									
										
										
										
											2022-01-18 00:09:01 +01:00
										 |  |  |         const t = Translations.t.professional.indexPage; | 
					
						
							|  |  |  |         return new Combine([ | 
					
						
							|  |  |  |             new Title(t.hook, 4), | 
					
						
							|  |  |  |             t.hookMore, | 
					
						
							|  |  |  |             new SubtleButton(undefined, t.button, {url: "./professional.html"}), | 
					
						
							|  |  |  |         ]).SetClass("flex flex-col border border-gray-300 p-2 rounded-lg") | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-02-08 18:29:21 +01:00
										 |  |  |     private static createUnofficialButtonFor(state: UserRelatedState, id: string): BaseUIElement { | 
					
						
							| 
									
										
										
										
											2022-04-13 02:44:06 +02:00
										 |  |  |         const pref = state.osmConnection.GetLongPreference(id) | 
					
						
							|  |  |  |         const str = pref.data | 
					
						
							|  |  |  |         if (str === undefined || str === "undefined" || str === "") { | 
					
						
							|  |  |  |             pref.setData(null) | 
					
						
							| 
									
										
										
										
											2022-02-10 23:16:14 +01:00
										 |  |  |             return undefined | 
					
						
							|  |  |  |         } | 
					
						
							| 
									
										
										
										
											2022-04-13 02:44:06 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-02-04 15:48:26 +01:00
										 |  |  |         try { | 
					
						
							|  |  |  |             const value: { | 
					
						
							|  |  |  |                 id: string | 
					
						
							|  |  |  |                 icon: string, | 
					
						
							|  |  |  |                 title: any, | 
					
						
							| 
									
										
										
										
											2022-02-14 15:41:14 +01:00
										 |  |  |                 shortDescription: any, | 
					
						
							| 
									
										
										
										
											2022-04-01 12:51:55 +02:00
										 |  |  |                 definition?: any, | 
					
						
							|  |  |  |                 isOfficial: boolean | 
					
						
							| 
									
										
										
										
											2022-02-04 15:48:26 +01:00
										 |  |  |             } = JSON.parse(str) | 
					
						
							| 
									
										
										
										
											2022-04-01 12:51:55 +02:00
										 |  |  |             value.isOfficial = false | 
					
						
							| 
									
										
										
										
											2022-02-04 15:48:26 +01:00
										 |  |  |             return MoreScreen.createLinkButton(state, value, true) | 
					
						
							|  |  |  |         } catch (e) { | 
					
						
							| 
									
										
										
										
											2022-04-13 02:44:06 +02:00
										 |  |  |             console.warn("Removing theme " + id + " as it could not be parsed from the preferences") | 
					
						
							|  |  |  |             pref.setData(null) | 
					
						
							| 
									
										
										
										
											2022-02-04 15:48:26 +01:00
										 |  |  |             return undefined | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-04-28 02:04:25 +02:00
										 |  |  |     private static createUnofficialThemeList(buttonClass: string, state: UserRelatedState, themeListClasses: string, search: UIEventSource<string>): BaseUIElement { | 
					
						
							| 
									
										
										
										
											2022-02-04 14:36:26 +01:00
										 |  |  |         const prefix = "mapcomplete-unofficial-theme-"; | 
					
						
							| 
									
										
										
										
											2022-02-04 15:48:26 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  |         var currentIds: UIEventSource<string[]> = state.osmConnection.preferencesHandler.preferences | 
					
						
							|  |  |  |             .map(allPreferences => { | 
					
						
							|  |  |  |                 const ids: string[] = [] | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |                 for (const key in allPreferences) { | 
					
						
							|  |  |  |                     if (key.startsWith(prefix) && key.endsWith("-combined-length")) { | 
					
						
							| 
									
										
										
										
											2022-04-13 02:44:06 +02:00
										 |  |  |                         const id = key.substring("mapcomplete-".length, key.length - "-combined-length".length) | 
					
						
							| 
									
										
										
										
											2022-02-04 15:48:26 +01:00
										 |  |  |                         ids.push(id) | 
					
						
							| 
									
										
										
										
											2022-02-04 14:36:26 +01:00
										 |  |  |                     } | 
					
						
							| 
									
										
										
										
											2022-02-04 15:48:26 +01:00
										 |  |  |                 } | 
					
						
							|  |  |  |                 return ids | 
					
						
							|  |  |  |             }); | 
					
						
							| 
									
										
										
										
											2022-02-10 23:16:14 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-02-04 15:48:26 +01:00
										 |  |  |         var stableIds = UIEventSource.ListStabilized<string>(currentIds) | 
					
						
							|  |  |  |         return new VariableUiElement( | 
					
						
							|  |  |  |             stableIds.map(ids => { | 
					
						
							| 
									
										
										
										
											2022-04-28 02:04:25 +02:00
										 |  |  |                 const allThemes: { element: BaseUIElement, predicate?: (s: string) => boolean }[] = [] | 
					
						
							| 
									
										
										
										
											2022-02-04 15:48:26 +01:00
										 |  |  |                 for (const id of ids) { | 
					
						
							| 
									
										
										
										
											2022-02-08 18:29:21 +01:00
										 |  |  |                     const link = this.createUnofficialButtonFor(state, id) | 
					
						
							| 
									
										
										
										
											2022-02-04 15:48:26 +01:00
										 |  |  |                     if (link !== undefined) { | 
					
						
							| 
									
										
										
										
											2022-04-28 02:04:25 +02:00
										 |  |  |                         allThemes.push({ | 
					
						
							|  |  |  |                             element: link.SetClass(buttonClass), | 
					
						
							|  |  |  |                             predicate: s => id.toLowerCase().indexOf(s) >= 0 | 
					
						
							|  |  |  |                         }) | 
					
						
							| 
									
										
										
										
											2022-02-04 14:36:26 +01:00
										 |  |  |                     } | 
					
						
							|  |  |  |                 } | 
					
						
							| 
									
										
										
										
											2022-02-04 15:48:26 +01:00
										 |  |  |                 if (allThemes.length <= 0) { | 
					
						
							|  |  |  |                     return undefined; | 
					
						
							|  |  |  |                 } | 
					
						
							|  |  |  |                 return new Combine([ | 
					
						
							| 
									
										
										
										
											2022-04-13 02:44:06 +02:00
										 |  |  |                     Translations.t.general.customThemeIntro, | 
					
						
							| 
									
										
										
										
											2022-04-24 01:32:19 +02:00
										 |  |  |                     new FilteredCombine(allThemes, search, { | 
					
						
							|  |  |  |                         innerClasses: themeListClasses, | 
					
						
							|  |  |  |                         onEmpty: MoreScreen.NothingFound(search) | 
					
						
							|  |  |  |                     }) | 
					
						
							| 
									
										
										
										
											2022-02-04 15:48:26 +01:00
										 |  |  |                 ]); | 
					
						
							|  |  |  |             })); | 
					
						
							| 
									
										
										
										
											2021-06-10 01:36:20 +02:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2021-10-15 19:58:02 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-04-28 02:04:25 +02:00
										 |  |  |     private static createPreviouslyVistedHiddenList(state: UserRelatedState, buttonClass: string, themeListStyle: string, search: UIEventSource<string>): BaseUIElement { | 
					
						
							| 
									
										
										
										
											2021-10-15 19:58:02 +02:00
										 |  |  |         const t = Translations.t.general.morescreen | 
					
						
							|  |  |  |         const prefix = "mapcomplete-hidden-theme-" | 
					
						
							| 
									
										
										
										
											2021-12-21 18:35:31 +01:00
										 |  |  |         const hiddenThemes = themeOverview["default"].filter(layout => layout.hideFromOverview) | 
					
						
							|  |  |  |         const hiddenTotal = hiddenThemes.length | 
					
						
							| 
									
										
										
										
											2022-01-18 00:09:01 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-10-15 05:20:02 +02:00
										 |  |  |         return new Toggle( | 
					
						
							|  |  |  |             new VariableUiElement( | 
					
						
							|  |  |  |                 state.osmConnection.preferencesHandler.preferences.map(allPreferences => { | 
					
						
							| 
									
										
										
										
											2021-12-21 18:35:31 +01:00
										 |  |  |                     const knownThemes: Set<string> = new Set(Utils.NoNull(Object.keys(allPreferences) | 
					
						
							| 
									
										
										
										
											2021-10-15 19:58:02 +02:00
										 |  |  |                         .filter(key => key.startsWith(prefix)) | 
					
						
							| 
									
										
										
										
											2021-12-21 18:35:31 +01:00
										 |  |  |                         .map(key => key.substring(prefix.length, key.length - "-enabled".length)))); | 
					
						
							| 
									
										
										
										
											2022-01-18 00:09:01 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  |                     if (knownThemes.size === 0) { | 
					
						
							| 
									
										
										
										
											2021-10-15 19:58:02 +02:00
										 |  |  |                         return undefined | 
					
						
							|  |  |  |                     } | 
					
						
							| 
									
										
										
										
											2022-01-18 00:09:01 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  |                     const knownThemeDescriptions = hiddenThemes.filter(theme => knownThemes.has(theme.id)) | 
					
						
							| 
									
										
										
										
											2022-04-28 02:04:25 +02:00
										 |  |  |                         .map(theme => ({ | 
					
						
							|  |  |  |                             element: MoreScreen.createLinkButton(state, theme)?.SetClass(buttonClass), | 
					
						
							|  |  |  |                             predicate: MoreScreen.MatchesLayoutFunc(theme) | 
					
						
							| 
									
										
										
										
											2022-04-24 01:32:19 +02:00
										 |  |  |                         })); | 
					
						
							| 
									
										
										
										
											2021-10-15 19:58:02 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-04-24 01:32:19 +02:00
										 |  |  |                     const knownLayouts = new FilteredCombine(knownThemeDescriptions, | 
					
						
							|  |  |  |                         search, | 
					
						
							| 
									
										
										
										
											2022-04-28 02:04:25 +02:00
										 |  |  |                         { | 
					
						
							|  |  |  |                             innerClasses: themeListStyle, | 
					
						
							|  |  |  |                             onEmpty: MoreScreen.NothingFound(search) | 
					
						
							|  |  |  |                         } | 
					
						
							|  |  |  |                     ) | 
					
						
							| 
									
										
										
										
											2021-10-15 19:58:02 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  |                     return new Combine([ | 
					
						
							|  |  |  |                         new Title(t.previouslyHiddenTitle), | 
					
						
							| 
									
										
										
										
											2021-11-07 16:34:51 +01:00
										 |  |  |                         t.hiddenExplanation.Subs({ | 
					
						
							| 
									
										
										
										
											2021-12-21 18:35:31 +01:00
										 |  |  |                             hidden_discovered: "" + knownThemes.size, | 
					
						
							| 
									
										
										
										
											2021-11-07 16:34:51 +01:00
										 |  |  |                             total_hidden: "" + hiddenTotal | 
					
						
							|  |  |  |                         }), | 
					
						
							| 
									
										
										
										
											2021-10-15 19:58:02 +02:00
										 |  |  |                         knownLayouts | 
					
						
							|  |  |  |                     ]) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-10-15 05:20:02 +02:00
										 |  |  |                 }) | 
					
						
							| 
									
										
										
										
											2021-10-15 19:58:02 +02:00
										 |  |  |             ).SetClass("flex flex-col"), | 
					
						
							| 
									
										
										
										
											2021-10-15 05:20:02 +02:00
										 |  |  |             undefined, | 
					
						
							|  |  |  |             state.osmConnection.isLoggedIn | 
					
						
							|  |  |  |         ) | 
					
						
							| 
									
										
										
										
											2021-10-15 19:58:02 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-10-15 05:20:02 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2021-05-30 00:17:31 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-04-24 01:32:19 +02:00
										 |  |  |     private static MatchesLayoutFunc(layout: { | 
					
						
							|  |  |  |         id: string, | 
					
						
							|  |  |  |         title: any, | 
					
						
							| 
									
										
										
										
											2022-04-28 02:04:25 +02:00
										 |  |  |         shortDescription: any, | 
					
						
							|  |  |  |         keywords?: any[] | 
					
						
							| 
									
										
										
										
											2022-04-30 02:10:57 +02:00
										 |  |  |     }): ((search: string) => boolean) { | 
					
						
							| 
									
										
										
										
											2022-04-24 01:32:19 +02:00
										 |  |  |         return (search: string) => { | 
					
						
							|  |  |  |             search = search.toLocaleLowerCase() | 
					
						
							|  |  |  |             if (layout.id.toLowerCase().indexOf(search) >= 0) { | 
					
						
							|  |  |  |                 return true; | 
					
						
							|  |  |  |             } | 
					
						
							| 
									
										
										
										
											2022-04-30 02:10:57 +02:00
										 |  |  |             const entitiesToSearch = [layout.shortDescription, layout.title, ...(layout.keywords ?? [])] | 
					
						
							| 
									
										
										
										
											2022-04-28 02:04:25 +02:00
										 |  |  |             for (const entity of entitiesToSearch) { | 
					
						
							| 
									
										
										
										
											2022-04-30 02:10:57 +02:00
										 |  |  |                 if (entity === undefined) { | 
					
						
							|  |  |  |                     continue | 
					
						
							|  |  |  |                 } | 
					
						
							| 
									
										
										
										
											2022-04-28 02:04:25 +02:00
										 |  |  |                 const term = entity["*"] ?? entity[Locale.language.data] | 
					
						
							|  |  |  |                 if (term?.toLowerCase()?.indexOf(search) >= 0) { | 
					
						
							| 
									
										
										
										
											2022-04-24 01:32:19 +02:00
										 |  |  |                     return true | 
					
						
							|  |  |  |                 } | 
					
						
							|  |  |  |             } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |             return false; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-04-28 02:04:25 +02:00
										 |  |  |     private static createOfficialThemesList(state: { osmConnection: OsmConnection, locationControl?: UIEventSource<Loc> }, buttonClass: string, themeListStyle: string, search: UIEventSource<string>): BaseUIElement { | 
					
						
							| 
									
										
										
										
											2022-04-24 01:32:19 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-04-30 02:10:57 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         let buttons: { element: BaseUIElement, predicate?: (s: string) => boolean }[] = MoreScreen.officialThemes.map((layout) => { | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-09-09 00:05:51 +02:00
										 |  |  |             if (layout === undefined) { | 
					
						
							| 
									
										
										
										
											2021-07-12 13:38:38 +02:00
										 |  |  |                 console.trace("Layout is undefined") | 
					
						
							|  |  |  |                 return undefined | 
					
						
							|  |  |  |             } | 
					
						
							| 
									
										
										
										
											2021-11-07 16:34:51 +01:00
										 |  |  |             if (layout.hideFromOverview) { | 
					
						
							| 
									
										
										
										
											2021-10-15 19:58:02 +02:00
										 |  |  |                 return undefined; | 
					
						
							|  |  |  |             } | 
					
						
							| 
									
										
										
										
											2021-10-15 05:20:02 +02:00
										 |  |  |             const button = MoreScreen.createLinkButton(state, layout)?.SetClass(buttonClass); | 
					
						
							| 
									
										
										
										
											2021-09-09 00:05:51 +02:00
										 |  |  |             if (layout.id === personal.id) { | 
					
						
							| 
									
										
										
										
											2022-04-24 01:32:19 +02:00
										 |  |  |                 const element = new VariableUiElement( | 
					
						
							| 
									
										
										
										
											2021-10-15 05:20:02 +02:00
										 |  |  |                     state.osmConnection.userDetails.map(userdetails => userdetails.csCount) | 
					
						
							| 
									
										
										
										
											2021-06-23 03:00:21 +02:00
										 |  |  |                         .map(csCount => { | 
					
						
							| 
									
										
										
										
											2021-09-09 00:05:51 +02:00
										 |  |  |                             if (csCount < Constants.userJourney.personalLayoutUnlock) { | 
					
						
							| 
									
										
										
										
											2021-06-23 03:00:21 +02:00
										 |  |  |                                 return undefined | 
					
						
							| 
									
										
										
										
											2021-09-09 00:05:51 +02:00
										 |  |  |                             } else { | 
					
						
							| 
									
										
										
										
											2021-06-23 03:00:21 +02:00
										 |  |  |                                 return button | 
					
						
							|  |  |  |                             } | 
					
						
							|  |  |  |                         }) | 
					
						
							|  |  |  |                 ) | 
					
						
							| 
									
										
										
										
											2022-04-24 01:32:19 +02:00
										 |  |  |                 return {element} | 
					
						
							| 
									
										
										
										
											2021-06-23 03:00:21 +02:00
										 |  |  |             } | 
					
						
							| 
									
										
										
										
											2022-04-24 01:32:19 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |             return {element: button, predicate: MoreScreen.MatchesLayoutFunc(layout)}; | 
					
						
							| 
									
										
										
										
											2021-06-23 03:00:21 +02:00
										 |  |  |         }) | 
					
						
							| 
									
										
										
										
											2022-01-26 21:40:38 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-01-18 00:09:01 +01:00
										 |  |  |         const professional = MoreScreen.CreateProffessionalSerivesButton(); | 
					
						
							|  |  |  |         const customGeneratorLink = MoreScreen.createCustomGeneratorButton(state) | 
					
						
							| 
									
										
										
										
											2022-04-24 01:32:19 +02:00
										 |  |  |         buttons.splice(0, 0, | 
					
						
							|  |  |  |             {element: customGeneratorLink}, | 
					
						
							|  |  |  |             {element: professional}); | 
					
						
							|  |  |  |         return new FilteredCombine(buttons, search, { | 
					
						
							|  |  |  |             innerClasses: themeListStyle, | 
					
						
							|  |  |  |             onEmpty: MoreScreen.NothingFound(search) | 
					
						
							|  |  |  |         }); | 
					
						
							| 
									
										
										
										
											2021-06-10 01:36:20 +02:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /* | 
					
						
							|  |  |  |     * Returns either a link to the issue tracker or a link to the custom generator, depending on the achieved number of changesets | 
					
						
							|  |  |  |     * */ | 
					
						
							| 
									
										
										
										
											2021-10-15 05:20:02 +02:00
										 |  |  |     private static createCustomGeneratorButton(state: { osmConnection: OsmConnection }): VariableUiElement { | 
					
						
							| 
									
										
										
										
											2021-06-10 01:36:20 +02:00
										 |  |  |         const tr = Translations.t.general.morescreen; | 
					
						
							|  |  |  |         return new VariableUiElement( | 
					
						
							|  |  |  |             state.osmConnection.userDetails.map(userDetails => { | 
					
						
							| 
									
										
										
										
											2021-05-30 00:17:31 +02:00
										 |  |  |                 if (userDetails.csCount < Constants.userJourney.themeGeneratorReadOnlyUnlock) { | 
					
						
							| 
									
										
										
										
											2021-06-13 15:04:55 +02:00
										 |  |  |                     return new SubtleButton(null, tr.requestATheme.Clone(), { | 
					
						
							| 
									
										
										
										
											2021-06-10 01:36:20 +02:00
										 |  |  |                         url: "https://github.com/pietervdvn/MapComplete/issues", | 
					
						
							|  |  |  |                         newTab: true | 
					
						
							|  |  |  |                     }); | 
					
						
							| 
									
										
										
										
											2021-05-30 00:17:31 +02:00
										 |  |  |                 } | 
					
						
							| 
									
										
										
										
											2021-06-13 15:04:55 +02:00
										 |  |  |                 return new SubtleButton(Svg.pencil_ui(), tr.createYourOwnTheme.Clone(), { | 
					
						
							| 
									
										
										
										
											2021-06-18 16:19:07 +02:00
										 |  |  |                     url: "https://pietervdvn.github.io/mc/legacy/070/customGenerator.html", | 
					
						
							| 
									
										
										
										
											2021-05-30 00:17:31 +02:00
										 |  |  |                     newTab: false | 
					
						
							| 
									
										
										
										
											2021-06-10 01:36:20 +02:00
										 |  |  |                 }); | 
					
						
							| 
									
										
										
										
											2021-05-30 00:17:31 +02:00
										 |  |  |             }) | 
					
						
							| 
									
										
										
										
											2021-06-10 01:36:20 +02:00
										 |  |  |         ) | 
					
						
							| 
									
										
										
										
											2021-05-30 00:17:31 +02:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-06-10 01:36:20 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-07-29 15:48:21 +02:00
										 |  |  | } |