mapcomplete/UI/BigComponents/ThemeIntroductionPanel.ts

71 lines
3 KiB
TypeScript
Raw Normal View History

import Combine from "../Base/Combine";
import LanguagePicker from "../LanguagePicker";
import Translations from "../i18n/Translations";
2021-06-12 02:58:32 +02:00
import Toggle from "../Input/Toggle";
2021-06-16 21:23:03 +02:00
import {SubtleButton} from "../Base/SubtleButton";
import {UIEventSource} from "../../Logic/UIEventSource";
2022-01-12 02:31:51 +01:00
import {LoginToggle} from "../Popup/LoginButton";
import Svg from "../../Svg";
import LayoutConfig from "../../Models/ThemeConfig/LayoutConfig";
import {OsmConnection} from "../../Logic/Osm/OsmConnection";
import FullWelcomePaneWithTabs from "./FullWelcomePaneWithTabs";
export default class ThemeIntroductionPanel extends Combine {
constructor(isShown: UIEventSource<boolean>, currentTab: UIEventSource<number>, state: { featureSwitchMoreQuests: UIEventSource<boolean>; featureSwitchAddNew: UIEventSource<boolean>; featureSwitchUserbadge: UIEventSource<boolean>; layoutToUse: LayoutConfig; osmConnection: OsmConnection }) {
2022-01-12 02:31:51 +01:00
const t = Translations.t.general
const layout = state.layoutToUse
2021-06-12 02:58:32 +02:00
const languagePicker = new LanguagePicker(layout.language, t.pickLanguage.Clone())
2021-06-16 21:23:03 +02:00
const toTheMap = new SubtleButton(
undefined,
2022-01-12 02:31:51 +01:00
t.openTheMap.Clone().SetClass("text-xl font-bold w-full text-center")
).onClick(() => {
2021-06-16 21:23:03 +02:00
isShown.setData(false)
}).SetClass("only-on-mobile")
2021-06-12 02:58:32 +02:00
const loginStatus =
new Toggle(
2022-01-12 02:31:51 +01:00
new LoginToggle(
undefined,
2022-01-12 02:31:51 +01:00
new Combine([Translations.t.general.loginWithOpenStreetMap.SetClass("text-xl font-bold"),
Translations.t.general.loginOnlyNeededToEdit.Clone().SetClass("font-bold")]
).SetClass("flex flex-col"),
state
2021-06-12 02:58:32 +02:00
),
undefined,
state.featureSwitchUserbadge
2021-01-07 04:50:12 +01:00
)
const hasPresets = layout.layers.some(l => l.presets?.length > 0)
super([
layout.description.Clone().SetClass("blcok mb-4"),
new Combine([
t.welcomeExplanation.general,
hasPresets ? Toggle.If( state.featureSwitchAddNew, () => t.welcomeExplanation.addNew) : undefined,
]).SetClass("flex flex-col mt-2"),
2021-06-16 21:23:03 +02:00
toTheMap,
loginStatus.SetClass("block"),
layout.descriptionTail?.Clone().SetClass("block mt-4"),
2021-10-12 15:19:27 +02:00
languagePicker?.SetClass("block mt-4"),
Toggle.If(state.featureSwitchMoreQuests,
() => new Combine([
t.welcomeExplanation.browseOtherThemesIntro,
new SubtleButton(Svg.add_ui().SetClass("h-6"),t.welcomeExplanation.browseMoreMaps )
.onClick(() => currentTab.setData(FullWelcomePaneWithTabs.MoreThemesTabIndex))
.SetClass("h-12")
]).SetClass("flex flex-col mt-6")),
...layout.CustomCodeSnippets()
])
2021-06-12 02:58:32 +02:00
this.SetClass("link-underline")
}
2020-11-24 14:36:43 +01:00
}