jiti-meet/react/features/invite/components/add-people-dialog/web/AddPeopleDialog.js

245 lines
7.2 KiB
JavaScript
Raw Normal View History

2017-10-06 20:15:51 +00:00
// @flow
import React, { useEffect } from 'react';
2017-06-14 18:41:22 +00:00
2019-02-26 10:41:57 +00:00
import { createInviteDialogEvent, sendAnalytics } from '../../../../analytics';
import { getInviteURL } from '../../../../base/connection';
import { Dialog } from '../../../../base/dialog';
import { translate } from '../../../../base/i18n';
import { JitsiRecordingConstants } from '../../../../base/lib-jitsi-meet';
2019-03-21 16:38:29 +00:00
import { connect } from '../../../../base/redux';
import { isDynamicBrandingDataLoaded } from '../../../../dynamic-branding/functions';
import EmbedMeetingTrigger from '../../../../embed-meeting/components/EmbedMeetingTrigger';
import { isVpaasMeeting } from '../../../../jaas/functions';
import { getActiveSession } from '../../../../recording';
import { updateDialInNumbers } from '../../../actions';
import {
_getDefaultPhoneNumber,
getInviteText,
getInviteTextiOS,
isAddPeopleEnabled,
isDialOutEnabled,
sharingFeatures,
isSharingEnabled
} from '../../../functions';
import CopyMeetingLinkSection from './CopyMeetingLinkSection';
import DialInSection from './DialInSection';
import InviteByEmailSection from './InviteByEmailSection';
import InviteContactsSection from './InviteContactsSection';
import LiveStreamSection from './LiveStreamSection';
declare var interfaceConfig: Object;
type Props = {
/**
* The object representing the dialIn feature.
*/
_dialIn: Object,
/**
* Whether or not embed meeting should be visible.
*/
_embedMeetingVisible: boolean,
/**
* Whether or not dial in number should be visible.
*/
_dialInVisible: boolean,
/**
* Whether or not url sharing button should be visible.
*/
_urlSharingVisible: boolean,
/**
* Whether or not email sharing features should be visible.
*/
_emailSharingVisible: boolean,
/**
* The meeting invitation text.
*/
_invitationText: string,
/**
* The custom no new-lines meeting invitation text for iOS default email.
* Needed because of this mailto: iOS issue: https://developer.apple.com/forums/thread/681023
*/
_invitationTextiOS: string,
/**
* An alternate app name to be displayed in the email subject.
*/
_inviteAppName: ?string,
/**
* Whether or not invite contacts should be visible.
*/
_inviteContactsVisible: boolean,
/**
* The current url of the conference to be copied onto the clipboard.
*/
_inviteUrl: string,
2017-10-06 20:15:51 +00:00
2017-06-14 18:41:22 +00:00
/**
* The current known URL for a live stream in progress.
2017-06-14 18:41:22 +00:00
*/
_liveStreamViewURL: string,
2017-06-14 18:41:22 +00:00
/**
* The default phone number.
2017-06-14 18:41:22 +00:00
*/
_phoneNumber: ?string,
2017-06-14 18:41:22 +00:00
/**
* Invoked to obtain translated strings.
*/
t: Function,
2017-06-14 18:41:22 +00:00
/**
* Method to update the dial in numbers.
2017-06-14 18:41:22 +00:00
*/
updateNumbers: Function
};
/**
* Invite More component.
*
* @returns {React$Element<any>}
*/
function AddPeopleDialog({
_dialIn,
_embedMeetingVisible,
_dialInVisible,
_urlSharingVisible,
_emailSharingVisible,
_invitationText,
_invitationTextiOS,
_inviteAppName,
_inviteContactsVisible,
_inviteUrl,
_liveStreamViewURL,
_phoneNumber,
t,
updateNumbers }: Props) {
/**
* Updates the dial-in numbers.
*/
useEffect(() => {
if (!_dialIn.numbers) {
updateNumbers();
}
}, []);
2017-10-06 20:15:51 +00:00
2017-06-14 18:41:22 +00:00
/**
* Sends analytics events when the dialog opens/closes.
2017-06-14 18:41:22 +00:00
*
* @returns {void}
*/
useEffect(() => {
sendAnalytics(createInviteDialogEvent(
'invite.dialog.opened', 'dialog'));
2017-06-14 18:41:22 +00:00
return () => {
sendAnalytics(createInviteDialogEvent(
'invite.dialog.closed', 'dialog'));
};
}, []);
2017-10-06 20:15:51 +00:00
const inviteSubject = t('addPeople.inviteMoreMailSubject', {
appName: _inviteAppName ?? interfaceConfig.APP_NAME
});
return (
<Dialog
cancelKey = { 'dialog.close' }
hideCancelButton = { true }
submitDisabled = { true }
titleKey = 'addPeople.inviteMorePrompt'
width = { 'small' }>
<div className = 'invite-more-dialog'>
{ _inviteContactsVisible && <InviteContactsSection /> }
{_urlSharingVisible ? <CopyMeetingLinkSection url = { _inviteUrl } /> : null}
{
_emailSharingVisible
? <InviteByEmailSection
inviteSubject = { inviteSubject }
inviteText = { _invitationText }
inviteTextiOS = { _invitationTextiOS } />
: null
}
{ _embedMeetingVisible && <EmbedMeetingTrigger /> }
<div className = 'invite-more-dialog separator' />
{
_liveStreamViewURL
&& <LiveStreamSection liveStreamViewURL = { _liveStreamViewURL } />
}
{
_phoneNumber
&& _dialInVisible
&& <DialInSection phoneNumber = { _phoneNumber } />
}
</div>
</Dialog>
);
2017-06-14 18:41:22 +00:00
}
/**
* Maps (parts of) the Redux state to the associated props for the
* {@code AddPeopleDialog} component.
2017-06-14 18:41:22 +00:00
*
* @param {Object} state - The Redux state.
* @param {Object} ownProps - The properties explicitly passed to the component.
2017-06-14 18:41:22 +00:00
* @private
* @returns {Props}
2017-06-14 18:41:22 +00:00
*/
function mapStateToProps(state, ownProps) {
const currentLiveStreamingSession
= getActiveSession(state, JitsiRecordingConstants.mode.STREAM);
const { iAmRecorder, inviteAppName } = state['features/base/config'];
const addPeopleEnabled = isAddPeopleEnabled(state);
const dialOutEnabled = isDialOutEnabled(state);
const hideInviteContacts = iAmRecorder || (!addPeopleEnabled && !dialOutEnabled);
const dialIn = state['features/invite'];
const phoneNumber = dialIn && dialIn.numbers ? _getDefaultPhoneNumber(dialIn.numbers) : undefined;
2017-06-14 18:41:22 +00:00
return {
_dialIn: dialIn,
_embedMeetingVisible: !isVpaasMeeting(state) && isSharingEnabled(sharingFeatures.embed),
_dialInVisible: isSharingEnabled(sharingFeatures.dialIn),
_urlSharingVisible: isDynamicBrandingDataLoaded(state) && isSharingEnabled(sharingFeatures.url),
_emailSharingVisible: isSharingEnabled(sharingFeatures.email),
_invitationText: getInviteText({ state,
phoneNumber,
t: ownProps.t }),
_invitationTextiOS: getInviteTextiOS({ state,
phoneNumber,
t: ownProps.t }),
_inviteAppName: inviteAppName,
_inviteContactsVisible: interfaceConfig.ENABLE_DIAL_OUT && !hideInviteContacts,
_inviteUrl: getInviteURL(state),
_liveStreamViewURL:
currentLiveStreamingSession
&& currentLiveStreamingSession.liveStreamViewURL,
_phoneNumber: phoneNumber
2017-06-14 18:41:22 +00:00
};
}
/**
* Maps dispatching of some action to React component props.
*
* @param {Function} dispatch - Redux action dispatcher.
* @returns {Props}
*/
const mapDispatchToProps = {
updateNumbers: () => updateDialInNumbers()
};
export default translate(
connect(mapStateToProps, mapDispatchToProps)(AddPeopleDialog)
);