2023-12-13 02:16:53 +01:00
|
|
|
import { LayoutInformation } from "../../Models/ThemeConfig/LayoutConfig"
|
2023-06-14 20:39:36 +02:00
|
|
|
import { ImmutableStore, Store } from "../../Logic/UIEventSource"
|
|
|
|
import { Utils } from "../../Utils"
|
2023-02-08 01:14:21 +01:00
|
|
|
import themeOverview from "../../assets/generated/theme_overview.json"
|
2022-09-08 21:40:48 +02:00
|
|
|
import Locale from "../i18n/Locale"
|
2020-07-29 15:48:21 +02:00
|
|
|
|
2023-12-13 02:16:53 +01:00
|
|
|
export default class MoreScreen {
|
|
|
|
public static readonly officialThemes: LayoutInformation[] = themeOverview
|
2022-09-08 21:40:48 +02:00
|
|
|
|
2023-12-13 02:16:53 +01:00
|
|
|
public static applySearch(searchTerm: string) {
|
|
|
|
searchTerm = searchTerm.toLowerCase()
|
|
|
|
if (!searchTerm) {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
if (searchTerm === "personal") {
|
|
|
|
window.location.href = MoreScreen.createUrlFor({ id: "personal" }, false).data
|
|
|
|
}
|
|
|
|
if (searchTerm === "bugs" || searchTerm === "issues") {
|
|
|
|
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)
|
|
|
|
}
|
|
|
|
// Enter pressed -> search the first _official_ matchin theme and open it
|
|
|
|
const publicTheme = MoreScreen.officialThemes.find(
|
|
|
|
(th) =>
|
|
|
|
th.hideFromOverview == false &&
|
|
|
|
th.id !== "personal" &&
|
|
|
|
MoreScreen.MatchesLayout(th, searchTerm)
|
|
|
|
)
|
|
|
|
if (publicTheme !== undefined) {
|
|
|
|
window.location.href = MoreScreen.createUrlFor(publicTheme, false).data
|
|
|
|
}
|
|
|
|
const hiddenTheme = MoreScreen.officialThemes.find(
|
|
|
|
(th) => th.id !== "personal" && MoreScreen.MatchesLayout(th, searchTerm)
|
|
|
|
)
|
|
|
|
if (hiddenTheme !== undefined) {
|
|
|
|
window.location.href = MoreScreen.createUrlFor(hiddenTheme, false).data
|
2022-04-28 02:04:25 +02:00
|
|
|
}
|
2021-06-10 01:36:20 +02:00
|
|
|
}
|
2022-04-28 02:04:25 +02:00
|
|
|
|
2023-05-07 23:54:31 +02:00
|
|
|
public static MatchesLayout(
|
|
|
|
layout: {
|
|
|
|
id: string
|
|
|
|
title: any
|
|
|
|
shortDescription: any
|
|
|
|
keywords?: any[]
|
|
|
|
},
|
|
|
|
search: string
|
|
|
|
): boolean {
|
|
|
|
if (search === undefined) {
|
2023-04-23 13:22:57 +02:00
|
|
|
return true
|
|
|
|
}
|
2023-12-01 14:52:50 +01:00
|
|
|
search = Utils.RemoveDiacritics(search.toLocaleLowerCase())
|
2023-04-23 13:22:57 +02:00
|
|
|
if (search.length > 3 && layout.id.toLowerCase().indexOf(search) >= 0) {
|
|
|
|
return true
|
|
|
|
}
|
2023-05-07 23:54:31 +02:00
|
|
|
if (layout.id === "personal") {
|
2023-04-23 13:22:57 +02:00
|
|
|
return false
|
|
|
|
}
|
2023-05-07 23:54:31 +02:00
|
|
|
const entitiesToSearch = [layout.shortDescription, layout.title, ...(layout.keywords ?? [])]
|
2023-04-23 13:22:57 +02:00
|
|
|
for (const entity of entitiesToSearch) {
|
|
|
|
if (entity === undefined) {
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
const term = entity["*"] ?? entity[Locale.language.data]
|
2023-12-01 14:52:50 +01:00
|
|
|
if (Utils.RemoveDiacritics(term?.toLowerCase())?.indexOf(search) >= 0) {
|
2023-04-23 13:22:57 +02:00
|
|
|
return true
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
|
2023-12-13 02:16:53 +01:00
|
|
|
public static createUrlFor(
|
2022-09-08 21:40:48 +02:00
|
|
|
layout: { id: string; definition?: string },
|
|
|
|
isCustom: boolean,
|
2023-06-06 00:03:14 +02:00
|
|
|
state?: { layoutToUse?: { id } }
|
2022-06-05 02:24:14 +02:00
|
|
|
): Store<string> {
|
2021-11-07 16:34:51 +01:00
|
|
|
if (layout === undefined) {
|
2022-09-08 21:40:48 +02:00
|
|
|
return undefined
|
2021-11-07 16:34:51 +01:00
|
|
|
}
|
|
|
|
if (layout.id === undefined) {
|
2022-09-08 21:40:48 +02:00
|
|
|
console.error("ID is undefined for layout", layout)
|
|
|
|
return undefined
|
2021-11-07 16:34:51 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
if (layout.id === state?.layoutToUse?.id) {
|
2022-09-08 21:40:48 +02:00
|
|
|
return undefined
|
2021-11-07 16:34:51 +01:00
|
|
|
}
|
|
|
|
|
2022-09-08 21:40:48 +02:00
|
|
|
let path = window.location.pathname
|
2021-11-07 16:34:51 +01:00
|
|
|
// Path starts with a '/' and contains everything, e.g. '/dir/dir/page.html'
|
2022-09-08 21:40:48 +02:00
|
|
|
path = path.substr(0, path.lastIndexOf("/"))
|
2021-11-07 16:34:51 +01:00
|
|
|
// 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
|
|
|
|
2023-06-06 00:03:14 +02:00
|
|
|
return new ImmutableStore<string>(`${linkPrefix}${hash}`)
|
2022-04-30 02:10:57 +02:00
|
|
|
}
|
2022-09-08 21:40:48 +02:00
|
|
|
}
|