import ThemeIntroductionPanel from "./ThemeIntroductionPanel" import Svg from "../../Svg" import Translations from "../i18n/Translations" import ShareScreen from "./ShareScreen" import MoreScreen from "./MoreScreen" import Constants from "../../Models/Constants" import Combine from "../Base/Combine" import { TabbedComponent } from "../Base/TabbedComponent" import { UIEventSource } from "../../Logic/UIEventSource" import UserDetails, { OsmConnection } from "../../Logic/Osm/OsmConnection" import ScrollableFullScreen from "../Base/ScrollableFullScreen" import BaseUIElement from "../BaseUIElement" import Toggle from "../Input/Toggle" import LayoutConfig from "../../Models/ThemeConfig/LayoutConfig" import { Utils } from "../../Utils" import UserRelatedState from "../../Logic/State/UserRelatedState" import Loc from "../../Models/Loc" import BaseLayer from "../../Models/BaseLayer" import FilteredLayer from "../../Models/FilteredLayer" import FeaturePipeline from "../../Logic/FeatureSource/FeaturePipeline" import PrivacyPolicy from "./PrivacyPolicy" import Hotkeys from "../Base/Hotkeys" export default class FullWelcomePaneWithTabs extends ScrollableFullScreen { public static MoreThemesTabIndex = 1 constructor( isShown: UIEventSource, currentTab: UIEventSource, state: { layoutToUse: LayoutConfig osmConnection: OsmConnection featureSwitchShareScreen: UIEventSource featureSwitchMoreQuests: UIEventSource locationControl: UIEventSource featurePipeline: FeaturePipeline backgroundLayer: UIEventSource filteredLayers: UIEventSource } & UserRelatedState, guistate?: { userInfoIsOpened: UIEventSource } ) { const layoutToUse = state.layoutToUse super( () => layoutToUse.title.Clone(), () => FullWelcomePaneWithTabs.GenerateContents(state, currentTab, isShown, guistate), "welcome", isShown ) } private static ConstructBaseTabs( state: { layoutToUse: LayoutConfig osmConnection: OsmConnection featureSwitchShareScreen: UIEventSource featureSwitchMoreQuests: UIEventSource featurePipeline: FeaturePipeline locationControl: UIEventSource backgroundLayer: UIEventSource filteredLayers: UIEventSource } & UserRelatedState, isShown: UIEventSource, currentTab: UIEventSource, guistate?: { userInfoIsOpened: UIEventSource } ): { header: string | BaseUIElement; content: BaseUIElement }[] { const tabs: { header: string | BaseUIElement; content: BaseUIElement }[] = [ { header: ``, content: new ThemeIntroductionPanel(isShown, currentTab, state, guistate), }, ] if (state.featureSwitchMoreQuests.data) { tabs.push({ header: Svg.add_img, content: new Combine([ Translations.t.general.morescreen.intro, new MoreScreen(state), ]).SetClass("flex flex-col"), }) } if (state.featureSwitchShareScreen.data) { tabs.push({ header: Svg.share_img, content: new ShareScreen(state) }) } const privacy = { header: Svg.eye_svg(), content: new PrivacyPolicy(), } tabs.push(privacy) return tabs } private static GenerateContents( state: { layoutToUse: LayoutConfig osmConnection: OsmConnection featureSwitchShareScreen: UIEventSource featureSwitchMoreQuests: UIEventSource featurePipeline: FeaturePipeline locationControl: UIEventSource backgroundLayer: UIEventSource filteredLayers: UIEventSource } & UserRelatedState, currentTab: UIEventSource, isShown: UIEventSource, guistate?: { userInfoIsOpened: UIEventSource } ) { const tabs = FullWelcomePaneWithTabs.ConstructBaseTabs(state, isShown, currentTab, guistate) const tabsWithAboutMc = [ ...FullWelcomePaneWithTabs.ConstructBaseTabs(state, isShown, currentTab, guistate), ] tabsWithAboutMc.push({ header: Svg.help, content: new Combine([ Translations.t.general.aboutMapcomplete.Subs({ osmcha_link: Utils.OsmChaLinkFor(7), }), "
Version " + Constants.vNumber, Hotkeys.generateDocumentationDynamic(), ]).SetClass("link-underline"), }) tabs.forEach((c) => c.content.SetClass("p-4")) tabsWithAboutMc.forEach((c) => c.content.SetClass("p-4")) return new Toggle( new TabbedComponent(tabsWithAboutMc, currentTab), new TabbedComponent(tabs, currentTab), state.osmConnection.userDetails.map( (userdetails: UserDetails) => userdetails.loggedIn && userdetails.csCount >= Constants.userJourney.mapCompleteHelpUnlock ) ) } }