2018-04-11 20:04:40 +00:00
|
|
|
// @flow
|
|
|
|
|
|
|
|
import React, { Component } from 'react';
|
|
|
|
|
|
|
|
import { VIDEO_QUALITY_LEVELS } from '../../base/conference';
|
|
|
|
import { translate } from '../../base/i18n';
|
2019-03-21 16:38:29 +00:00
|
|
|
import { connect } from '../../base/redux';
|
2018-04-11 20:04:40 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* A map of of selectable receive resolutions to corresponding icons.
|
|
|
|
*
|
|
|
|
* @private
|
|
|
|
* @type {Object}
|
|
|
|
*/
|
|
|
|
const VIDEO_QUALITY_TO_ICON = {
|
|
|
|
[VIDEO_QUALITY_LEVELS.HIGH]: 'icon-HD',
|
|
|
|
[VIDEO_QUALITY_LEVELS.STANDARD]: 'icon-SD',
|
|
|
|
[VIDEO_QUALITY_LEVELS.LOW]: 'icon-LD'
|
|
|
|
};
|
|
|
|
|
|
|
|
/**
|
|
|
|
* The type of the React {@code Component} props of
|
|
|
|
* {@link OverflowMenuVideoQualityItem}.
|
|
|
|
*/
|
|
|
|
type Props = {
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Whether or not audio only mode is currently enabled.
|
|
|
|
*/
|
|
|
|
_audioOnly: boolean,
|
|
|
|
|
|
|
|
/**
|
|
|
|
* The currently configured maximum quality resolution to be received from
|
|
|
|
* remote participants.
|
|
|
|
*/
|
2018-07-23 22:42:57 +00:00
|
|
|
_receiverVideoQuality: number,
|
2018-04-11 20:04:40 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Callback to invoke when {@link OverflowMenuVideoQualityItem} is clicked.
|
|
|
|
*/
|
|
|
|
onClick: Function,
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Invoked to obtain translated strings.
|
|
|
|
*/
|
|
|
|
t: Function
|
|
|
|
};
|
|
|
|
|
|
|
|
/**
|
|
|
|
* React {@code Component} responsible for displaying a button in the overflow
|
|
|
|
* menu of the toolbar, including an icon showing the currently selected
|
|
|
|
* max receive quality.
|
|
|
|
*
|
|
|
|
* @extends Component
|
|
|
|
*/
|
|
|
|
class OverflowMenuVideoQualityItem extends Component<Props> {
|
|
|
|
/**
|
|
|
|
* Implements React's {@link Component#render()}.
|
|
|
|
*
|
|
|
|
* @inheritdoc
|
|
|
|
* @returns {ReactElement}
|
|
|
|
*/
|
|
|
|
render() {
|
2018-07-23 22:42:57 +00:00
|
|
|
const { _audioOnly, _receiverVideoQuality } = this.props;
|
|
|
|
const icon = _audioOnly || !_receiverVideoQuality
|
2018-04-11 20:04:40 +00:00
|
|
|
? 'icon-AUD'
|
2018-07-23 22:42:57 +00:00
|
|
|
: VIDEO_QUALITY_TO_ICON[_receiverVideoQuality];
|
2018-04-11 20:04:40 +00:00
|
|
|
|
|
|
|
return (
|
|
|
|
<li
|
2018-06-07 20:32:18 +00:00
|
|
|
aria-label =
|
|
|
|
{ this.props.t('toolbar.accessibilityLabel.callQuality') }
|
2018-04-11 20:04:40 +00:00
|
|
|
className = 'overflow-menu-item'
|
|
|
|
onClick = { this.props.onClick }>
|
|
|
|
<span className = 'overflow-menu-item-icon'>
|
|
|
|
<i className = { icon } />
|
|
|
|
</span>
|
|
|
|
<span className = 'profile-text'>
|
|
|
|
{ this.props.t('toolbar.callQuality') }
|
|
|
|
</span>
|
|
|
|
</li>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Maps (parts of) the Redux state to the associated props for the
|
|
|
|
* {@code OverflowMenuVideoQualityItem} component.
|
|
|
|
*
|
|
|
|
* @param {Object} state - The Redux state.
|
|
|
|
* @private
|
|
|
|
* @returns {{
|
|
|
|
* _audioOnly: boolean,
|
2018-07-23 22:42:57 +00:00
|
|
|
* _receiverVideoQuality: number
|
2018-04-11 20:04:40 +00:00
|
|
|
* }}
|
|
|
|
*/
|
|
|
|
function _mapStateToProps(state) {
|
|
|
|
return {
|
|
|
|
_audioOnly: state['features/base/conference'].audioOnly,
|
2018-07-23 22:42:57 +00:00
|
|
|
_receiverVideoQuality:
|
|
|
|
state['features/base/conference'].preferredReceiverVideoQuality
|
2018-04-11 20:04:40 +00:00
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
export default translate(
|
|
|
|
connect(_mapStateToProps)(OverflowMenuVideoQualityItem));
|