32 lines
935 B
JavaScript
32 lines
935 B
JavaScript
// @flow
|
|
|
|
import type { Dispatch } from 'redux';
|
|
|
|
import { getFeatureFlag, INVITE_ENABLED } from '../base/flags';
|
|
import { beginShareRoom } from '../share-room';
|
|
|
|
import { setAddPeopleDialogVisible } from './actions.any';
|
|
import { isAddPeopleEnabled, isDialOutEnabled } from './functions';
|
|
|
|
export * from './actions.any';
|
|
|
|
/**
|
|
* Starts the process for inviting people. Dpending on the sysstem config it
|
|
* may use the system share sheet or the invite peoplee dialog.
|
|
*
|
|
* @returns {Function}
|
|
*/
|
|
export function doInvitePeople() {
|
|
return (dispatch: Dispatch<any>, getState: Function) => {
|
|
const state = getState();
|
|
const addPeopleEnabled = getFeatureFlag(state, INVITE_ENABLED, true)
|
|
&& (isAddPeopleEnabled(state) || isDialOutEnabled(state));
|
|
|
|
if (addPeopleEnabled) {
|
|
return dispatch(setAddPeopleDialogVisible(true));
|
|
}
|
|
|
|
return dispatch(beginShareRoom());
|
|
};
|
|
}
|