64 lines
1.9 KiB
JavaScript
64 lines
1.9 KiB
JavaScript
// @flow
|
|
|
|
import debounce from 'lodash/debounce';
|
|
|
|
import { SET_ROOM } from '../../base/conference/actionTypes';
|
|
import { MiddlewareRegistry } from '../../base/redux';
|
|
import { readyToClose } from '../external-api/actions';
|
|
|
|
|
|
import { isWelcomePageAppEnabled } from './components/welcome/functions';
|
|
import { navigateRoot } from './rootNavigationContainerRef';
|
|
import { screen } from './routes';
|
|
|
|
|
|
MiddlewareRegistry.register(store => next => action => {
|
|
switch (action.type) {
|
|
case SET_ROOM:
|
|
return _setRoom(store, next, action);
|
|
}
|
|
|
|
return next(action);
|
|
});
|
|
|
|
/**
|
|
* Debounced sending of `readyToClose`.
|
|
*/
|
|
const _sendReadyToClose = debounce(dispatch => {
|
|
dispatch(readyToClose());
|
|
}, 2500, { leading: true });
|
|
|
|
/**
|
|
* Notifies the feature base/conference that the action
|
|
* {@code SET_ROOM} is being dispatched within a specific
|
|
* redux store.
|
|
*
|
|
* @param {Store} store - The redux store in which the specified {@code action}
|
|
* is being dispatched.
|
|
* @param {Dispatch} next - The redux {@code dispatch} function to dispatch the
|
|
* specified {@code action} to the specified {@code store}.
|
|
* @param {Action} action - The redux action {@code SET_ROOM}
|
|
* which is being dispatched in the specified {@code store}.
|
|
* @private
|
|
* @returns {Object} The value returned by {@code next(action)}.
|
|
*/
|
|
function _setRoom({ dispatch, getState }, next, action) {
|
|
const { room: oldRoom } = getState()['features/base/conference'];
|
|
const result = next(action);
|
|
const { room: newRoom } = getState()['features/base/conference'];
|
|
const isWelcomePageEnabled = isWelcomePageAppEnabled(getState());
|
|
|
|
if (!oldRoom && newRoom) {
|
|
navigateRoot(screen.conference.root);
|
|
} else if (!newRoom) {
|
|
if (isWelcomePageEnabled) {
|
|
navigateRoot(screen.root);
|
|
} else {
|
|
// For JitsiSDK, WelcomePage is not available
|
|
_sendReadyToClose(dispatch);
|
|
}
|
|
}
|
|
|
|
return result;
|
|
}
|