21 lines
594 B
JavaScript
21 lines
594 B
JavaScript
// @flow
|
|
|
|
import { translate } from '../../../base/i18n';
|
|
import { isLocalParticipantModerator } from '../../../base/participants';
|
|
import { connect } from '../../../base/redux';
|
|
import AbstractMuteEveryoneElseButton from '../AbstractMuteEveryoneElseButton';
|
|
|
|
/**
|
|
* Maps part of the Redux state to the props of this component.
|
|
*
|
|
* @param {Object} state - The Redux state.
|
|
* @returns {Props}
|
|
*/
|
|
function _mapStateToProps(state) {
|
|
return {
|
|
visible: isLocalParticipantModerator(state)
|
|
};
|
|
}
|
|
|
|
export default translate(connect(_mapStateToProps)(AbstractMuteEveryoneElseButton));
|