element-portable/src/components/views/user-onboarding/UserOnboardingList.tsx
2022-08-01 16:01:27 +02:00

70 lines
2.6 KiB
TypeScript

/*
Copyright 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 * as React from "react";
import { useMemo } from "react";
import { UserOnboardingTask as Task } from "../../../hooks/useUserOnboardingTasks";
import { _t } from "../../../languageHandler";
import SdkConfig from "../../../SdkConfig";
import ProgressBar from "../../views/elements/ProgressBar";
import Heading from "../../views/typography/Heading";
import { UserOnboardingFeedback } from "./UserOnboardingFeedback";
import { UserOnboardingTask } from "./UserOnboardingTask";
interface Props {
completedTasks: Task[];
waitingTasks: Task[];
}
export function UserOnboardingList({ completedTasks, waitingTasks }: Props) {
const completed = completedTasks.length;
const waiting = waitingTasks.length;
const total = completed + waiting;
const tasks = useMemo(() => [
...completedTasks.map((it): [Task, boolean] => [it, true]),
...waitingTasks.map((it): [Task, boolean] => [it, false]),
], [completedTasks, waitingTasks]);
return (
<div className="mx_UserOnboardingList">
<div className="mx_UserOnboardingList_header">
<Heading size="h3" className="mx_UserOnboardingList_title">
{ waiting > 0 ? _t("Only %(count)s steps to go", {
count: waiting,
}) : _t("You did it!") }
</Heading>
<div className="mx_UserOnboardingList_hint">
{ _t("Complete these to get the most out of %(brand)s", {
brand: SdkConfig.get("brand"),
}) }
</div>
</div>
<div className="mx_UserOnboardingList_progress">
<ProgressBar value={completed} max={total} animated />
{ waiting === 0 && (
<UserOnboardingFeedback />
) }
</div>
<ol className="mx_UserOnboardingList_list">
{ tasks.map(([task, completed]) => (
<UserOnboardingTask key={task.title} completed={completed} task={task} />
)) }
</ol>
</div>
);
}