123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156 |
- import PropTypes from 'prop-types';
- import React, { Component } from 'react';
-
- import { translate } from '../../../base/i18n';
-
- /**
- * Displays a table with phone numbers to dial in to a conference.
- *
- * @extends Component
- */
- class NumbersList extends Component {
- /**
- * {@code NumbersList} component's property types.
- *
- * @static
- */
- static propTypes = {
- /**
- * Whether or not numbers should include links with the telephone
- * protocol.
- */
- clickableNumbers: PropTypes.bool,
-
- /**
- * The conference ID for dialing in.
- */
- conferenceID: PropTypes.number,
-
- /**
- * The phone numbers to display. Can be an array of numbers
- * or an object with countries as keys and an array of numbers
- * as values.
- */
- numbers: PropTypes.oneOfType([
- PropTypes.array,
- PropTypes.object
- ]),
-
- /**
- * Invoked to obtain translated strings.
- */
- t: PropTypes.func
- };
-
- /**
- * Implements React's {@link Component#render()}.
- *
- * @inheritdoc
- * @returns {ReactElement}
- */
- render() {
- const { numbers, t } = this.props;
- const showWithoutCountries = Array.isArray(numbers);
-
- return (
- <table className = 'dial-in-numbers-list'>
- <thead>
- <tr>
- { showWithoutCountries
- ? null
- : <th>{ t('info.country') }</th> }
- <th>{ t('info.numbers') }</th>
- </tr>
- </thead>
- <tbody className = 'dial-in-numbers-body'>
- { showWithoutCountries
- ? numbers.map(this._renderNumberRow)
- : this._renderWithCountries() }
- </tbody>
- </table>);
- }
-
- /**
- * Renders rows of countries and associated phone numbers.
- *
- * @private
- * @returns {ReactElement[]}
- */
- _renderWithCountries() {
- const rows = [];
-
- for (const [ country, numbers ] of Object.entries(this.props.numbers)) {
- const formattedNumbers = numbers.map(
- number => this._renderNumberDiv(number));
-
- rows.push(
- <tr key = { country }>
- <td>{ country }</td>
- <td className = 'dial-in-numbers'>{ formattedNumbers }</td>
- </tr>
- );
- }
-
- return rows;
- }
-
- /**
- * Renders a table row for a phone number.
- *
- * @param {string} number - The phone number to display.
- * @private
- * @returns {ReactElement[]}
- */
- _renderNumberRow(number) {
- return (
- <tr key = { number }>
- <td className = 'dial-in-number'>
- { this._renderNumberLink(number) }
- </td>
- </tr>
- );
- }
-
- /**
- * Renders a div container for a phone number.
- *
- * @param {string} number - The phone number to display.
- * @private
- * @returns {ReactElement[]}
- */
- _renderNumberDiv(number) {
- return (
- <div
- className = 'dial-in-number'
- key = { number }>
- { this._renderNumberLink(number) }
- </div>
- );
- }
-
- /**
- * Renders a ReactElement for displaying a telephone number. If the
- * component prop {@code clickableNumbers} is true, then the number will
- * have a link with the telephone protocol.
- *
- * @param {string} number - The phone number to display.
- * @private
- * @returns {ReactElement}
- */
- _renderNumberLink(number) {
- if (this.props.clickableNumbers) {
- return (
- <a
- href = { `tel:${number}p${this.props.conferenceID}#` }
- key = { number } >
- { number }
- </a>
- );
- }
-
- return number;
- }
-
- }
-
- export default translate(NumbersList);
|