mirror of https://github.com/vector-im/riot-web
87 lines
3.4 KiB
TypeScript
87 lines
3.4 KiB
TypeScript
/*
|
|
Copyright 2020-2022 The Matrix.org Foundation C.I.C.
|
|
|
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
you may not use this file except in compliance with the License.
|
|
You may obtain a copy of the License at
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
Unless required by applicable law or agreed to in writing, software
|
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
See the License for the specific language governing permissions and
|
|
limitations under the License.
|
|
*/
|
|
|
|
import { useEffect, useState } from "react";
|
|
import * as React from "react";
|
|
|
|
import { useInitialSyncComplete } from "../../../hooks/useIsInitialSyncComplete";
|
|
import { useSettingValue } from "../../../hooks/useSettings";
|
|
import { useUserOnboardingContext } from "../../../hooks/useUserOnboardingContext";
|
|
import { useUserOnboardingTasks } from "../../../hooks/useUserOnboardingTasks";
|
|
import { MatrixClientPeg } from "../../../MatrixClientPeg";
|
|
import SdkConfig from "../../../SdkConfig";
|
|
import { UseCase } from "../../../settings/enums/UseCase";
|
|
import { getHomePageUrl } from "../../../utils/pages";
|
|
import AutoHideScrollbar from "../../structures/AutoHideScrollbar";
|
|
import EmbeddedPage from "../../structures/EmbeddedPage";
|
|
import HomePage from "../../structures/HomePage";
|
|
import { UserOnboardingHeader } from "./UserOnboardingHeader";
|
|
import { UserOnboardingList } from "./UserOnboardingList";
|
|
|
|
interface Props {
|
|
justRegistered?: boolean;
|
|
}
|
|
|
|
// We decided to only show the new user onboarding page to new users
|
|
// For now, that means we set the cutoff at 2022-07-01 00:00 UTC
|
|
const USER_ONBOARDING_CUTOFF_DATE = new Date(1_656_633_600);
|
|
export function showUserOnboardingPage(useCase: UseCase): boolean {
|
|
return useCase !== null || MatrixClientPeg.userRegisteredAfter(USER_ONBOARDING_CUTOFF_DATE);
|
|
}
|
|
|
|
const ANIMATION_DURATION = 2800;
|
|
export function UserOnboardingPage({ justRegistered = false }: Props) {
|
|
const config = SdkConfig.get();
|
|
const pageUrl = getHomePageUrl(config);
|
|
|
|
const useCase = useSettingValue<UseCase | null>("FTUE.useCaseSelection");
|
|
const context = useUserOnboardingContext();
|
|
const [completedTasks, waitingTasks] = useUserOnboardingTasks(context);
|
|
|
|
const initialSyncComplete = useInitialSyncComplete();
|
|
const [showList, setShowList] = useState<boolean>(false);
|
|
useEffect(() => {
|
|
if (initialSyncComplete) {
|
|
let handler: number | null = setTimeout(() => {
|
|
handler = null;
|
|
setShowList(true);
|
|
}, ANIMATION_DURATION);
|
|
return () => {
|
|
clearTimeout(handler);
|
|
handler = null;
|
|
};
|
|
} else {
|
|
setShowList(false);
|
|
}
|
|
}, [initialSyncComplete, setShowList]);
|
|
|
|
// Only show new onboarding list to users who registered after a given date or have chosen a use case
|
|
if (!showUserOnboardingPage(useCase)) {
|
|
return <HomePage justRegistered={justRegistered} />;
|
|
}
|
|
|
|
if (pageUrl) {
|
|
return <EmbeddedPage className="mx_HomePage" url={pageUrl} scrollbar={true} />;
|
|
}
|
|
|
|
return <AutoHideScrollbar className="mx_UserOnboardingPage">
|
|
<UserOnboardingHeader useCase={useCase} />
|
|
{ showList && (
|
|
<UserOnboardingList completedTasks={completedTasks} waitingTasks={waitingTasks} />
|
|
) }
|
|
</AutoHideScrollbar>;
|
|
}
|