123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172 |
- import React from 'react';
- import { WithTranslation } from 'react-i18next';
- import { makeStyles } from 'tss-react/mui';
-
- import { translate } from '../../../../base/i18n/functions';
- import Icon from '../../../../base/icons/components/Icon';
- import { IconArrowLeft } from '../../../../base/icons/svg';
- import Button from '../../../../base/ui/components/web/Button';
- import { getCountryCodeFromPhone } from '../../../utils';
- import Label from '../Label';
-
- interface IProps extends WithTranslation {
-
- /**
- * The number to call in order to join the conference.
- */
- number: string | null;
-
- /**
- * Handler used when clicking the back button.
- */
- onBack: (e?: React.MouseEvent) => void;
-
- /**
- * Click handler for primary button.
- */
- onPrimaryButtonClick: Function;
-
- /**
- * Click handler for the small additional text.
- */
- onSmallTextClick: (e?: React.MouseEvent) => void;
-
- /**
- * Click handler for the text button.
- */
- onTextButtonClick: (e?: React.MouseEvent) => void;
-
- /**
- * The passCode of the conference.
- */
- passCode?: string | number;
- }
-
- const useStyles = makeStyles()(theme => {
- return {
- dialInDialog: {
- textAlign: 'center',
-
- '& .prejoin-dialog-dialin-header': {
- alignItems: 'center',
- margin: `${theme.spacing(3)} 0 ${theme.spacing(5)} ${theme.spacing(3)}`,
- display: 'flex'
- },
- '& .prejoin-dialog-dialin-icon': {
- marginRight: theme.spacing(3)
- },
- '& .prejoin-dialog-dialin-num': {
- background: '#3e474f',
- borderRadius: '4px',
- display: 'inline-block',
- fontSize: '15px',
- lineHeight: '24px',
- margin: theme.spacing(1),
- padding: theme.spacing(2),
- userSelect: 'text',
-
- '& .prejoin-dialog-dialin-num-container': {
- minHeight: '48px',
- margin: `${theme.spacing(2)} 0`
- },
-
- '& span': {
- userSelect: 'text'
- }
- },
-
- '& .prejoin-dialog-dialin-link': {
- color: '#6FB1EA',
- cursor: 'pointer',
- display: 'inline-block',
- fontSize: '13px',
- lineHeight: '20px',
- marginBottom: theme.spacing(4)
- },
- '& .prejoin-dialog-dialin-spaced-label': {
- marginBottom: theme.spacing(3),
- marginTop: '28px'
- },
- '& .prejoin-dialog-dialin-btns > div': {
- marginBottom: theme.spacing(3)
- }
- }
- };
- });
-
- /**
- * This component displays the dialog with all the information
- * to join a meeting by calling it.
- *
- * @param {IProps} props - The props of the component.
- * @returns {React$Element}
- */
- function DialinDialog(props: IProps) {
- const {
- number,
- onBack,
- onPrimaryButtonClick,
- onSmallTextClick,
- onTextButtonClick,
- passCode,
- t
- } = props;
- const { classes } = useStyles();
- const flagClassName = `prejoin-dialog-flag iti-flag ${getCountryCodeFromPhone(
- number ?? ''
- )}`;
-
- return (
- <div className = { classes.dialInDialog }>
- <div className = 'prejoin-dialog-dialin-header'>
- <Icon
- className = 'prejoin-dialog-icon prejoin-dialog-dialin-icon'
- onClick = { onBack }
- role = 'button'
- size = { 24 }
- src = { IconArrowLeft } />
- <div className = 'prejoin-dialog-title'>
- {t('prejoin.dialInMeeting')}
- </div>
- </div>
- <Label number = { 1 }>{ t('prejoin.dialInPin') }</Label>
-
- <div className = 'prejoin-dialog-dialin-num-container'>
- <div className = 'prejoin-dialog-dialin-num'>
- <div className = { flagClassName } />
- <span>{number}</span>
- </div>
- <div className = 'prejoin-dialog-dialin-num'>{passCode}</div>
- </div>
- <div>
- <span
- className = 'prejoin-dialog-dialin-link'
- onClick = { onSmallTextClick }>
- {t('prejoin.viewAllNumbers')}
- </span>
- </div>
- <div className = 'prejoin-dialog-delimiter' />
- <Label
- className = 'prejoin-dialog-dialin-spaced-label'
- number = { 2 }>
- {t('prejoin.connectedWithAudioQ')}
- </Label>
- <div className = 'prejoin-dialog-dialin-btns'>
- <Button
- className = 'prejoin-dialog-btn'
- fullWidth = { true }
- labelKey = 'prejoin.joinMeeting'
- onClick = { onPrimaryButtonClick }
- type = 'primary' />
- <Button
- className = 'prejoin-dialog-btn'
- fullWidth = { true }
- labelKey = 'dialog.Cancel'
- onClick = { onTextButtonClick }
- type = 'tertiary' />
- </div>
- </div>
- );
- }
-
- export default translate(DialinDialog);
|