| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140 |
- import React, { PureComponent } from 'react';
- import { Text, View } from 'react-native';
-
- import { INVITE_ENABLED, getFeatureFlag } from '../../../base/flags';
- import { translate } from '../../../base/i18n';
- import { Icon, IconAddPeople } from '../../../base/icons';
- import { getParticipantCountWithFake } from '../../../base/participants';
- import { connect } from '../../../base/redux';
- import Button from '../../../base/ui/components/native/Button';
- import { BUTTON_TYPES } from '../../../base/ui/constants';
- import { isInBreakoutRoom } from '../../../breakout-rooms/functions';
- import { doInvitePeople } from '../../../invite/actions.native';
-
- import styles from './styles';
-
- /**
- * Props type of the component.
- */
- type Props = {
-
- /**
- * True if currently in a breakout room.
- */
- _isInBreakoutRoom: boolean,
-
- /**
- * True if the invite functions (dial out, invite, share...etc) are disabled.
- */
- _isInviteFunctionsDiabled: boolean,
-
- /**
- * True if it's a lonely meeting (participant count excluding fakes is 1).
- */
- _isLonelyMeeting: boolean,
-
- /**
- * The Redux Dispatch function.
- */
- dispatch: Function,
-
- /**
- * Function to be used to translate i18n labels.
- */
- t: Function
- };
-
- /**
- * Implements the UI elements to be displayed in the lonely meeting experience.
- */
- class LonelyMeetingExperience extends PureComponent<Props> {
- /**
- * Instantiates a new component.
- *
- * @inheritdoc
- */
- constructor(props: Props) {
- super(props);
-
- this._onPress = this._onPress.bind(this);
- }
-
- /**
- * Renders the "add people" icon.
- *
- * @returns {ReactElement}
- */
- _renderAddPeopleIcon() {
- return (
- <Icon
- size = { 20 }
- src = { IconAddPeople } />
- );
- }
-
- /**
- * Implements {@code PureComponent#render}.
- *
- * @inheritdoc
- */
- render() {
- const {
- _isInBreakoutRoom,
- _isInviteFunctionsDiabled,
- _isLonelyMeeting,
- t
- } = this.props;
-
- if (!_isLonelyMeeting) {
- return null;
- }
-
- return (
- <View style = { styles.lonelyMeetingContainer }>
- <Text style = { styles.lonelyMessage }>
- { t('lonelyMeetingExperience.youAreAlone') }
- </Text>
- { !_isInviteFunctionsDiabled && !_isInBreakoutRoom && (
- <Button
- accessibilityLabel = 'lonelyMeetingExperience.button'
- icon = { this._renderAddPeopleIcon }
- labelKey = 'lonelyMeetingExperience.button'
- onClick = { this._onPress }
- style = { styles.lonelyButton }
- type = { BUTTON_TYPES.PRIMARY } />
- ) }
- </View>
- );
- }
-
- /**
- * Callback for the onPress function of the button.
- *
- * @returns {void}
- */
- _onPress() {
- this.props.dispatch(doInvitePeople());
- }
- }
-
- /**
- * Maps parts of the Redux state to the props of this Component.
- *
- * @param {Object} state - The redux state.
- * @private
- * @returns {Props}
- */
- function _mapStateToProps(state) {
- const { disableInviteFunctions } = state['features/base/config'];
- const { conference } = state['features/base/conference'];
- const flag = getFeatureFlag(state, INVITE_ENABLED, true);
- const _isInBreakoutRoom = isInBreakoutRoom(state);
-
- return {
- _isInBreakoutRoom,
- _isInviteFunctionsDiabled: !flag || disableInviteFunctions,
- _isLonelyMeeting: conference && getParticipantCountWithFake(state) === 1
- };
- }
-
- export default connect(_mapStateToProps)(translate(LonelyMeetingExperience));
|