| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172 | import React, { Component } from 'react';
import PropTypes from 'prop-types';
import { translate } from '../../../base/i18n';
/**
 * React {@code Component} responsible for displaying a telephone number and
 * conference ID for dialing into a conference.
 *
 * @extends Component
 */
class DialInNumber extends Component {
    /**
     * {@code DialInNumber} component's property types.
     *
     * @static
     */
    static propTypes = {
        /**
         * The numberic identifier for the current conference, used after
         * dialing a the number to join the conference.
         */
        conferenceID: PropTypes.number,
        /**
         * The phone number to dial to begin the process of dialing into a
         * conference.
         */
        phoneNumber: PropTypes.string,
        /**
         * Invoked to obtain translated strings.
         */
        t: PropTypes.func
    };
    /**
     * Implements React's {@link Component#render()}.
     *
     * @inheritdoc
     * @returns {ReactElement}
     */
    render() {
        const { conferenceID, phoneNumber, t } = this.props;
        return (
            <div className = 'dial-in-number'>
                <span className = 'phone-number'>
                    <span className = 'info-label'>
                        { t('info.dialInNumber') }
                    </span>
                    <span className = 'spacer'> </span>
                    <span className = 'info-value'>
                        { phoneNumber }
                    </span>
                </span>
                <span className = 'spacer'> </span>
                <span className = 'conference-id'>
                    <span className = 'info-label'>
                        { t('info.dialInConferenceID') }
                    </span>
                    <span className = 'spacer'> </span>
                    <span className = 'info-value'>
                        { `${conferenceID}#` }
                    </span>
                </span>
            </div>
        );
    }
}
export default translate(DialInNumber);
 |