element-call/src/room/InviteModal.tsx

50 lines
1.4 KiB
TypeScript
Raw Normal View History

2022-05-04 17:09:48 +01:00
/*
Copyright 2022 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.
*/
2022-08-05 16:16:59 -04:00
import React, { 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";
2021-12-14 15:44:00 -08:00
import styles from "./InviteModal.module.css";
2021-12-03 11:45:29 -08:00
2022-08-05 16:16:59 -04:00
interface Props extends Omit<ModalProps, "title" | "children"> {
roomIdOrAlias: string;
2021-12-03 11:45:29 -08:00
}
2022-08-05 16:16:59 -04:00
2022-10-10 09:19:10 -04:00
export const InviteModal: FC<Props> = ({ roomIdOrAlias, ...rest }) => {
const { t } = useTranslation();
return (
<Modal
title={t("Invite people")}
isDismissable
className={styles.inviteModal}
{...rest}
>
<ModalContent>
<p>{t("Copy and share this call link")}</p>
<CopyButton
className={styles.copyButton}
value={getRoomUrl(roomIdOrAlias)}
data-testid="modal_inviteLink"
2022-10-10 09:19:10 -04:00
/>
</ModalContent>
</Modal>
);
};