/* @flow */ import React, { Component } from 'react'; import { translate } from '../../../base/i18n'; /** * The type of the React {@code Component} props of {@link DialInNumber}. */ type Props = { /** * The numberic identifier for the current conference, used after dialing a * the number to join the conference. */ conferenceID: number, /** * The phone number to dial to begin the process of dialing into a * conference. */ phoneNumber: string, /** * Invoked to obtain translated strings. */ t: Function }; /** * React {@code Component} responsible for displaying a telephone number and * conference ID for dialing into a conference. * * @extends Component */ class DialInNumber extends Component { /** * Implements React's {@link Component#render()}. * * @inheritdoc * @returns {ReactElement} */ render() { const { conferenceID, phoneNumber, t } = this.props; return (
{ t('info.dialInNumber') }   { phoneNumber }   { t('info.dialInConferenceID') }   { `${conferenceID}#` }
); } } export default translate(DialInNumber);