Some checks failed
Close stale issues and PRs / stale (push) Has been cancelled
39 lines
1.2 KiB
TypeScript
39 lines
1.2 KiB
TypeScript
import { AnyAction } from 'redux';
|
|
|
|
import { appNavigate } from '../../app/actions.native';
|
|
import { IStore } from '../../app/types';
|
|
import { CONFERENCE_FAILED } from '../../base/conference/actionTypes';
|
|
import { JitsiConferenceErrors } from '../../base/lib-jitsi-meet';
|
|
import MiddlewareRegistry from '../../base/redux/MiddlewareRegistry';
|
|
|
|
MiddlewareRegistry.register(store => next => action => {
|
|
switch (action.type) {
|
|
|
|
case CONFERENCE_FAILED:
|
|
return _conferenceFailed(store, next, action);
|
|
}
|
|
|
|
return next(action);
|
|
});
|
|
|
|
/**
|
|
* Function to handle the conference failed event and navigate the user to the lobby screen
|
|
* based on the failure reason.
|
|
*
|
|
* @param {Object} store - The Redux store.
|
|
* @param {Function} next - The Redux next function.
|
|
* @param {Object} action - The Redux action.
|
|
* @returns {Object}
|
|
*/
|
|
function _conferenceFailed({ dispatch }: IStore, next: Function, action: AnyAction) {
|
|
const { error } = action;
|
|
|
|
// We need to cover the case where knocking participant
|
|
// is rejected from entering the conference
|
|
if (error.name === JitsiConferenceErrors.CONFERENCE_ACCESS_DENIED) {
|
|
dispatch(appNavigate(undefined));
|
|
}
|
|
|
|
return next(action);
|
|
}
|