// @flow import React from 'react'; import { translate } from '../../../base/i18n'; import { Icon, IconInviteMore } from '../../../base/icons'; import { getParticipantCount } from '../../../base/participants'; import { connect } from '../../../base/redux'; import { beginAddPeople } from '../../../invite'; import { isToolboxVisible } from '../../../toolbox'; declare var interfaceConfig: Object; type Props = { /** * Whether tile view is enabled. */ _tileViewEnabled: Boolean, /** * Whether to show the option to invite more people * instead of the subject. */ _visible: boolean, /** * Handler to open the invite dialog. */ onClick: Function, /** * Invoked to obtain translated strings. */ t: Function } /** * Represents a replacement for the subject, prompting the * sole participant to invite more participants. * * @param {Object} props - The props of the component. * @returns {React$Element} */ function InviteMore({ _tileViewEnabled, _visible, onClick, t }: Props) { return ( _visible ?
{t('addPeople.inviteMoreHeader')}
{t('addPeople.inviteMorePrompt')}
: null ); } /** * Maps (parts of) the Redux state to the associated * {@code Subject}'s props. * * @param {Object} state - The Redux state. * @private * @returns {Props} */ function mapStateToProps(state) { const participantCount = getParticipantCount(state); const isAlone = participantCount === 1; const hide = interfaceConfig.HIDE_INVITE_MORE_HEADER; return { _tileViewEnabled: state['features/video-layout'].tileViewEnabled, _visible: isToolboxVisible(state) && isAlone && !hide }; } /** * Maps dispatching of some action to React component props. * * @param {Function} dispatch - Redux action dispatcher. * @returns {Props} */ const mapDispatchToProps = { onClick: () => beginAddPeople() }; export default translate(connect(mapStateToProps, mapDispatchToProps)(InviteMore));