This attempts to converge all our modals on the new modal component while changing their designs as little as possible. This should reduce the bundle size a bit and make the app generally feel like it's converging on the new designs, even though individual modals still remain to be revamped.
190 lines
6.1 KiB
TypeScript
190 lines
6.1 KiB
TypeScript
/*
|
|
Copyright 2022 New Vector Ltd
|
|
|
|
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 { useState, useCallback, FormEvent, FormEventHandler } from "react";
|
|
import { useHistory } from "react-router-dom";
|
|
import { MatrixClient } from "matrix-js-sdk/src/client";
|
|
import { randomString } from "matrix-js-sdk/src/randomstring";
|
|
import { useTranslation } from "react-i18next";
|
|
|
|
import {
|
|
createRoom,
|
|
roomAliasLocalpartFromRoomName,
|
|
sanitiseRoomNameInput,
|
|
} from "../matrix-utils";
|
|
import { useGroupCallRooms } from "./useGroupCallRooms";
|
|
import { Header, HeaderLogo, LeftNav, RightNav } from "../Header";
|
|
import commonStyles from "./common.module.css";
|
|
import styles from "./RegisteredView.module.css";
|
|
import { FieldRow, InputField, ErrorMessage } from "../input/Input";
|
|
import { Button } from "../button";
|
|
import { CallList } from "./CallList";
|
|
import { UserMenuContainer } from "../UserMenuContainer";
|
|
import { JoinExistingCallModal } from "./JoinExistingCallModal";
|
|
import { Caption, Title } from "../typography/Typography";
|
|
import { Form } from "../form/Form";
|
|
import { CallType, CallTypeDropdown } from "./CallTypeDropdown";
|
|
import { useEnableE2EE, useOptInAnalytics } from "../settings/useSetting";
|
|
import { AnalyticsNotice } from "../analytics/AnalyticsNotice";
|
|
import { E2EEBanner } from "../E2EEBanner";
|
|
import { setLocalStorageItem } from "../useLocalStorage";
|
|
import { getRoomSharedKeyLocalStorageKey } from "../e2ee/sharedKeyManagement";
|
|
|
|
interface Props {
|
|
client: MatrixClient;
|
|
isPasswordlessUser: boolean;
|
|
}
|
|
|
|
export function RegisteredView({ client, isPasswordlessUser }: Props) {
|
|
const [callType, setCallType] = useState(CallType.Video);
|
|
const [loading, setLoading] = useState(false);
|
|
const [error, setError] = useState<Error>();
|
|
const [optInAnalytics] = useOptInAnalytics();
|
|
const history = useHistory();
|
|
const { t } = useTranslation();
|
|
const [joinExistingCallModalOpen, setJoinExistingCallModalOpen] =
|
|
useState(false);
|
|
const onDismissJoinExistingCallModal = useCallback(
|
|
() => setJoinExistingCallModalOpen(false),
|
|
[setJoinExistingCallModalOpen]
|
|
);
|
|
const [e2eeEnabled] = useEnableE2EE();
|
|
|
|
const onSubmit: FormEventHandler<HTMLFormElement> = useCallback(
|
|
(e: FormEvent) => {
|
|
e.preventDefault();
|
|
const data = new FormData(e.target as HTMLFormElement);
|
|
const roomNameData = data.get("callName");
|
|
const roomName =
|
|
typeof roomNameData === "string"
|
|
? sanitiseRoomNameInput(roomNameData)
|
|
: "";
|
|
const ptt = callType === CallType.Radio;
|
|
|
|
async function submit() {
|
|
setError(undefined);
|
|
setLoading(true);
|
|
|
|
const roomId = (
|
|
await createRoom(client, roomName, ptt, e2eeEnabled ?? false)
|
|
)[1];
|
|
|
|
if (e2eeEnabled) {
|
|
setLocalStorageItem(
|
|
getRoomSharedKeyLocalStorageKey(roomId),
|
|
randomString(32)
|
|
);
|
|
}
|
|
|
|
history.push(`/room/#?roomId=${roomId}`);
|
|
}
|
|
|
|
submit().catch((error) => {
|
|
if (error.errcode === "M_ROOM_IN_USE") {
|
|
setExistingAlias(roomAliasLocalpartFromRoomName(roomName));
|
|
setLoading(false);
|
|
setError(undefined);
|
|
setJoinExistingCallModalOpen(true);
|
|
} else {
|
|
console.error(error);
|
|
setLoading(false);
|
|
setError(error);
|
|
}
|
|
});
|
|
},
|
|
[client, history, setJoinExistingCallModalOpen, callType, e2eeEnabled]
|
|
);
|
|
|
|
const recentRooms = useGroupCallRooms(client);
|
|
|
|
const [existingAlias, setExistingAlias] = useState<string>();
|
|
const onJoinExistingRoom = useCallback(() => {
|
|
history.push(`/${existingAlias}`);
|
|
}, [history, existingAlias]);
|
|
|
|
const callNameLabel =
|
|
callType === CallType.Video
|
|
? t("Video call name")
|
|
: t("Walkie-talkie call name");
|
|
|
|
return (
|
|
<>
|
|
<Header>
|
|
<LeftNav>
|
|
<HeaderLogo />
|
|
</LeftNav>
|
|
<RightNav>
|
|
<UserMenuContainer />
|
|
</RightNav>
|
|
</Header>
|
|
<div className={commonStyles.container}>
|
|
<main className={commonStyles.main}>
|
|
<HeaderLogo className={commonStyles.logo} />
|
|
<CallTypeDropdown callType={callType} setCallType={setCallType} />
|
|
<Form className={styles.form} onSubmit={onSubmit}>
|
|
<FieldRow className={styles.fieldRow}>
|
|
<InputField
|
|
id="callName"
|
|
name="callName"
|
|
label={callNameLabel}
|
|
placeholder={callNameLabel}
|
|
type="text"
|
|
required
|
|
autoComplete="off"
|
|
data-testid="home_callName"
|
|
/>
|
|
|
|
<Button
|
|
type="submit"
|
|
size="lg"
|
|
className={styles.button}
|
|
disabled={loading}
|
|
data-testid="home_go"
|
|
>
|
|
{loading ? t("Loading…") : t("Go")}
|
|
</Button>
|
|
</FieldRow>
|
|
{optInAnalytics === null && (
|
|
<Caption className={styles.notice}>
|
|
<AnalyticsNotice />
|
|
</Caption>
|
|
)}
|
|
<E2EEBanner />
|
|
{error && (
|
|
<FieldRow className={styles.fieldRow}>
|
|
<ErrorMessage error={error} />
|
|
</FieldRow>
|
|
)}
|
|
</Form>
|
|
{recentRooms.length > 0 && (
|
|
<>
|
|
<Title className={styles.recentCallsTitle}>
|
|
{t("Your recent calls")}
|
|
</Title>
|
|
<CallList rooms={recentRooms} client={client} />
|
|
</>
|
|
)}
|
|
</main>
|
|
</div>
|
|
<JoinExistingCallModal
|
|
onJoin={onJoinExistingRoom}
|
|
open={joinExistingCallModalOpen}
|
|
onDismiss={onDismissJoinExistingCallModal}
|
|
/>
|
|
</>
|
|
);
|
|
}
|