jiti-meet/react/features/invite/components/add-people-dialog/web/CopyMeetingLinkSection.tsx

54 lines
1.4 KiB
TypeScript

import { Theme } from '@mui/material';
import React from 'react';
import { useTranslation } from 'react-i18next';
import { makeStyles } from 'tss-react/mui';
import CopyButton from '../../../../base/buttons/CopyButton.web';
import { getDecodedURI } from '../../../../base/util/uri';
interface IProps {
/**
* The URL of the conference.
*/
url: string;
}
const useStyles = makeStyles()((theme: Theme) => {
return {
label: {
display: 'block',
marginBottom: theme.spacing(2)
}
};
});
/**
* Component meant to enable users to copy the conference URL.
*
* @returns {React$Element<any>}
*/
function CopyMeetingLinkSection({ url }: IProps) {
const { classes } = useStyles();
const { t } = useTranslation();
return (
<>
<label
className = { classes.label }
htmlFor = { 'copy-button-id' }>{t('addPeople.shareLink')}</label>
<CopyButton
aria-label = { t('addPeople.copyLink') }
className = 'invite-more-dialog-conference-url'
displayedText = { getDecodedURI(url) }
id = 'copy-button-id'
textOnCopySuccess = { t('addPeople.linkCopied') }
textOnHover = { t('addPeople.copyLink') }
textToCopy = { url } />
</>
);
}
export default CopyMeetingLinkSection;