Open official theme when enter is pressed in MoreScreen

This commit is contained in:
pietervdvn 2022-04-30 02:10:57 +02:00
parent ed81b12c44
commit 560a47e744

View file

@ -20,9 +20,20 @@ import {TextField} from "../Input/TextField";
import FilteredCombine from "../Base/FilteredCombine"; import FilteredCombine from "../Base/FilteredCombine";
import Locale from "../i18n/Locale"; import Locale from "../i18n/Locale";
export default class MoreScreen extends Combine { export default class MoreScreen extends Combine {
private static readonly officialThemes: {
id: string,
icon: string,
title: any,
shortDescription: any,
definition?: any,
mustHaveLanguage?: boolean,
hideFromOverview: boolean,
keywors?: any[]
}[] = themeOverview["default"];
constructor(state: UserRelatedState & { constructor(state: UserRelatedState & {
locationControl?: UIEventSource<Loc>, locationControl?: UIEventSource<Loc>,
layoutToUse?: LayoutConfig layoutToUse?: LayoutConfig
@ -38,6 +49,17 @@ export default class MoreScreen extends Combine {
const search = new TextField({ const search = new TextField({
placeholder: tr.searchForATheme, placeholder: tr.searchForATheme,
}) })
search.enterPressed.addCallbackD(searchTerm => {
// Enter pressed -> search the first _official_ matchin theme and open it
const publicTheme = MoreScreen.officialThemes.find(th => th.hideFromOverview == false && MoreScreen.MatchesLayoutFunc(th)(searchTerm))
if (publicTheme !== undefined) {
window.location.href = MoreScreen.createUrlFor(publicTheme, false, state).data
}
const hiddenTheme = MoreScreen.officialThemes.find(th => MoreScreen.MatchesLayoutFunc(th)(searchTerm))
if (hiddenTheme !== undefined) {
window.location.href = MoreScreen.createUrlFor(hiddenTheme, false, state).data
}
})
if (onMainScreen) { if (onMainScreen) {
search.focus() search.focus()
@ -71,24 +93,10 @@ export default class MoreScreen extends Combine {
]).SetClass("flex flex-col items-center w-full") ]).SetClass("flex flex-col items-center w-full")
} }
/** private static createUrlFor(layout: { id: string, definition?: string },
* Creates a button linking to the given theme isCustom: boolean,
* @private state?: { locationControl?: UIEventSource<{ lat, lon, zoom }>, layoutToUse?: { id } }
*/ ): UIEventSource<string> {
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 {
if (layout === undefined) { if (layout === undefined) {
return undefined; return undefined;
} }
@ -125,7 +133,7 @@ export default class MoreScreen extends Combine {
hash = "#" + btoa(JSON.stringify(layout.definition)) hash = "#" + btoa(JSON.stringify(layout.definition))
} }
const linkText = currentLocation?.map(currentLocation => { return currentLocation?.map(currentLocation => {
const params = [ const params = [
["z", currentLocation?.zoom], ["z", currentLocation?.zoom],
["lat", currentLocation?.lat], ["lat", currentLocation?.lat],
@ -137,6 +145,28 @@ export default class MoreScreen extends Combine {
}) ?? new UIEventSource<string>(`${linkPrefix}`) }) ?? new UIEventSource<string>(`${linkPrefix}`)
}
/**
* 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)
return new SubtleButton(layout.icon, return new SubtleButton(layout.icon,
new Combine([ new Combine([
`<dt class='text-lg leading-6 font-medium text-gray-900 group-hover:text-blue-800'>`, `<dt class='text-lg leading-6 font-medium text-gray-900 group-hover:text-blue-800'>`,
@ -145,7 +175,7 @@ export default class MoreScreen extends Combine {
`<dd class='mt-1 text-base text-gray-500 group-hover:text-blue-900 overflow-ellipsis'>`, `<dd class='mt-1 text-base text-gray-500 group-hover:text-blue-900 overflow-ellipsis'>`,
new Translation(layout.shortDescription)?.SetClass("subtle") ?? "", new Translation(layout.shortDescription)?.SetClass("subtle") ?? "",
`</dd>`, `</dd>`,
]), {url: linkText, newTab: false}); ]), {url, newTab: false});
} }
public static CreateProffessionalSerivesButton() { public static CreateProffessionalSerivesButton() {
@ -279,37 +309,33 @@ export default class MoreScreen extends Combine {
title: any, title: any,
shortDescription: any, shortDescription: any,
keywords?: any[] keywords?: any[]
}) { }): ((search: string) => boolean) {
return (search: string) => { return (search: string) => {
search = search.toLocaleLowerCase() search = search.toLocaleLowerCase()
if (layout.id.toLowerCase().indexOf(search) >= 0) { if (layout.id.toLowerCase().indexOf(search) >= 0) {
return true; return true;
} }
const entitiesToSearch = [layout.shortDescription, layout.title, ...layout.keywords] const entitiesToSearch = [layout.shortDescription, layout.title, ...(layout.keywords ?? [])]
for (const entity of entitiesToSearch) { for (const entity of entitiesToSearch) {
if (entity === undefined) {
continue
}
const term = entity["*"] ?? entity[Locale.language.data] const term = entity["*"] ?? entity[Locale.language.data]
if (term?.toLowerCase()?.indexOf(search) >= 0) { if (term?.toLowerCase()?.indexOf(search) >= 0) {
return true return true
} }
} }
return false; return false;
} }
} }
private static createOfficialThemesList(state: { osmConnection: OsmConnection, locationControl?: UIEventSource<Loc> }, buttonClass: string, themeListStyle: string, search: UIEventSource<string>): BaseUIElement { private static createOfficialThemesList(state: { osmConnection: OsmConnection, locationControl?: UIEventSource<Loc> }, buttonClass: string, themeListStyle: string, search: UIEventSource<string>): BaseUIElement {
let officialThemes: {
id: string,
icon: string,
title: any,
shortDescription: any,
definition?: any,
mustHaveLanguage?: boolean,
hideFromOverview: boolean
}[] = themeOverview["default"];
let buttons: { element: BaseUIElement, predicate?: (s: string) => boolean }[] = officialThemes.map((layout) => {
let buttons: { element: BaseUIElement, predicate?: (s: string) => boolean }[] = MoreScreen.officialThemes.map((layout) => {
if (layout === undefined) { if (layout === undefined) {
console.trace("Layout is undefined") console.trace("Layout is undefined")
return undefined return undefined