Files
element-call/src/room/ShareModal.tsx

52 lines
1.5 KiB
TypeScript
Raw Normal View History

2022-05-04 17:09:48 +01:00
/*
Copyright 2022 - 2023 New Vector Ltd
2022-05-04 17:09:48 +01:00
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 { FC } from "react";
2022-10-10 09:19:10 -04:00
import { useTranslation } from "react-i18next";
2022-08-02 00:46:16 +02:00
2022-08-05 16:16:59 -04:00
import { Modal, ModalContent, ModalProps } from "../Modal";
2022-01-05 16:58:55 -08:00
import { CopyButton } from "../button";
2022-01-05 17:19:03 -08:00
import { getRoomUrl } from "../matrix-utils";
import styles from "./ShareModal.module.css";
import { useRoomSharedKey } from "../e2ee/sharedKeyManagement";
2021-12-03 11:45:29 -08:00
2022-08-05 16:16:59 -04:00
interface Props extends Omit<ModalProps, "title" | "children"> {
roomId: string;
2021-12-03 11:45:29 -08:00
}
2022-08-05 16:16:59 -04:00
export const ShareModal: FC<Props> = ({ roomId, ...rest }) => {
2022-10-10 09:19:10 -04:00
const { t } = useTranslation();
const roomSharedKey = useRoomSharedKey(roomId);
2022-10-10 09:19:10 -04:00
return (
<Modal
title={t("Share this call")}
2022-10-10 09:19:10 -04:00
isDismissable
className={styles.inviteModal}
{...rest}
>
<ModalContent>
<p>{t("Copy and share this call link")}</p>
<CopyButton
className={styles.copyButton}
value={getRoomUrl(roomId, roomSharedKey ?? undefined)}
data-testid="modal_inviteLink"
2022-10-10 09:19:10 -04:00
/>
</ModalContent>
</Modal>
);
};