element-call/src/room/InviteModal.jsx

41 lines
1.2 KiB
React
Raw Normal View History

2022-05-04 17:09:48 +01:00
/*
Copyright 2022 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.
*/
2021-12-03 11:45:29 -08:00
import React from "react";
2022-01-05 16:58:55 -08:00
import { Modal, ModalContent } from "../Modal";
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
export function InviteModal({ roomIdOrAlias, ...rest }) {
2021-12-03 11:45:29 -08:00
return (
2021-12-14 15:44:00 -08:00
<Modal
title="Invite People"
isDismissable
className={styles.inviteModal}
{...rest}
>
2021-12-06 17:34:10 -08:00
<ModalContent>
<p>Copy and share this meeting link</p>
<CopyButton
className={styles.copyButton}
value={getRoomUrl(roomIdOrAlias)}
/>
2021-12-06 17:34:10 -08:00
</ModalContent>
</Modal>
2021-12-03 11:45:29 -08:00
);
}