2020-04-01 07:47:51 +00:00
|
|
|
// @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';
|
2020-07-24 12:14:33 +00:00
|
|
|
import { isButtonEnabled, isToolboxVisible } from '../../../toolbox/functions.web';
|
2020-07-23 13:12:25 +00:00
|
|
|
import { shouldDisplayTileView } from '../../../video-layout/functions';
|
2020-04-01 07:47:51 +00:00
|
|
|
|
2020-06-16 11:07:37 +00:00
|
|
|
declare var interfaceConfig: Object;
|
|
|
|
|
2020-04-01 07:47:51 +00:00
|
|
|
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<any>}
|
|
|
|
*/
|
|
|
|
function InviteMore({
|
|
|
|
_tileViewEnabled,
|
|
|
|
_visible,
|
|
|
|
onClick,
|
|
|
|
t
|
|
|
|
}: Props) {
|
|
|
|
return (
|
|
|
|
_visible
|
|
|
|
? <div className = { `invite-more-container${_tileViewEnabled ? ' elevated' : ''}` }>
|
|
|
|
<div className = 'invite-more-header'>
|
|
|
|
{t('addPeople.inviteMoreHeader')}
|
|
|
|
</div>
|
|
|
|
<div
|
|
|
|
className = 'invite-more-button'
|
|
|
|
onClick = { onClick }>
|
|
|
|
<Icon src = { IconInviteMore } />
|
2020-05-21 12:49:51 +00:00
|
|
|
<div className = 'invite-more-button-text'>
|
2020-04-01 07:47:51 +00:00
|
|
|
{t('addPeople.inviteMorePrompt')}
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div> : 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);
|
2020-06-16 11:07:37 +00:00
|
|
|
const isAlone = participantCount === 1;
|
|
|
|
const hide = interfaceConfig.HIDE_INVITE_MORE_HEADER;
|
2020-04-01 07:47:51 +00:00
|
|
|
|
|
|
|
return {
|
2020-07-23 13:12:25 +00:00
|
|
|
_tileViewEnabled: shouldDisplayTileView(state),
|
2020-06-16 13:19:18 +00:00
|
|
|
_visible: isToolboxVisible(state) && isButtonEnabled('invite') && isAlone && !hide
|
2020-04-01 07:47:51 +00:00
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* 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));
|