2017-01-31 20:58:48 +00:00
|
|
|
import { CONFERENCE_FAILED } from '../base/conference';
|
|
|
|
import {
|
|
|
|
CONNECTION_ESTABLISHED,
|
|
|
|
CONNECTION_FAILED
|
|
|
|
} from '../base/connection';
|
2017-02-28 03:21:50 +00:00
|
|
|
import {
|
|
|
|
isFatalJitsiConnectionError,
|
|
|
|
JitsiConferenceErrors,
|
|
|
|
JitsiConnectionErrors
|
2017-02-19 00:42:11 +00:00
|
|
|
} from '../base/lib-jitsi-meet';
|
2017-01-31 20:58:48 +00:00
|
|
|
import {
|
|
|
|
ReducerRegistry,
|
2017-02-19 00:42:11 +00:00
|
|
|
setStateProperties,
|
|
|
|
setStateProperty
|
2017-01-31 20:58:48 +00:00
|
|
|
} from '../base/redux';
|
|
|
|
|
|
|
|
import {
|
|
|
|
MEDIA_PERMISSION_PROMPT_VISIBILITY_CHANGED,
|
|
|
|
SUSPEND_DETECTED
|
|
|
|
} from './actionTypes';
|
|
|
|
|
|
|
|
const logger = require('jitsi-meet-logger').getLogger(__filename);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Reduces the Redux actions of the feature overlay.
|
|
|
|
*/
|
|
|
|
ReducerRegistry.register('features/overlay', (state = {}, action) => {
|
|
|
|
switch (action.type) {
|
|
|
|
case CONFERENCE_FAILED:
|
|
|
|
return _conferenceFailed(state, action);
|
|
|
|
|
|
|
|
case CONNECTION_ESTABLISHED:
|
|
|
|
return _connectionEstablished(state, action);
|
|
|
|
|
|
|
|
case CONNECTION_FAILED:
|
|
|
|
return _connectionFailed(state, action);
|
|
|
|
|
|
|
|
case MEDIA_PERMISSION_PROMPT_VISIBILITY_CHANGED:
|
|
|
|
return _mediaPermissionPromptVisibilityChanged(state, action);
|
|
|
|
|
|
|
|
case SUSPEND_DETECTED:
|
|
|
|
return _suspendDetected(state, action);
|
|
|
|
}
|
|
|
|
|
|
|
|
return state;
|
|
|
|
});
|
|
|
|
|
|
|
|
/**
|
2017-02-19 00:42:11 +00:00
|
|
|
* Reduces a specific Redux action CONFERENCE_FAILED of the feature overlay.
|
2017-01-31 20:58:48 +00:00
|
|
|
*
|
|
|
|
* @param {Object} state - The Redux state of the feature overlay.
|
|
|
|
* @param {Action} action - The Redux action CONFERENCE_FAILED to reduce.
|
2017-02-19 00:42:11 +00:00
|
|
|
* @returns {Object} The new state of the feature overlay after the reduction of
|
|
|
|
* the specified action.
|
2017-01-31 20:58:48 +00:00
|
|
|
* @private
|
|
|
|
*/
|
|
|
|
function _conferenceFailed(state, action) {
|
2017-02-19 00:42:11 +00:00
|
|
|
const error = action.error;
|
2017-01-31 20:58:48 +00:00
|
|
|
|
2017-02-19 00:42:11 +00:00
|
|
|
if (error === JitsiConferenceErrors.FOCUS_LEFT
|
|
|
|
|| error === JitsiConferenceErrors.VIDEOBRIDGE_NOT_AVAILABLE) {
|
2017-01-31 20:58:48 +00:00
|
|
|
return setStateProperties(state, {
|
|
|
|
haveToReload: true,
|
|
|
|
isNetworkFailure: false,
|
|
|
|
reason: action.errorMessage
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
return state;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Reduces a specific Redux action CONNECTION_ESTABLISHED of the feature
|
|
|
|
* overlay.
|
|
|
|
*
|
|
|
|
* @param {Object} state - The Redux state of the feature overlay.
|
2017-02-19 00:42:11 +00:00
|
|
|
* @returns {Object} The new state of the feature overlay after the reduction of
|
|
|
|
* the specified action.
|
2017-01-31 20:58:48 +00:00
|
|
|
* @private
|
|
|
|
*/
|
|
|
|
function _connectionEstablished(state) {
|
|
|
|
return setStateProperty(state, 'connectionEstablished', true);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2017-02-19 00:42:11 +00:00
|
|
|
* Reduces a specific Redux action CONNECTION_FAILED of the feature overlay.
|
2017-01-31 20:58:48 +00:00
|
|
|
*
|
|
|
|
* @param {Object} state - The Redux state of the feature overlay.
|
|
|
|
* @param {Action} action - The Redux action CONNECTION_FAILED to reduce.
|
2017-02-19 00:42:11 +00:00
|
|
|
* @returns {Object} The new state of the feature overlay after the reduction of
|
|
|
|
* the specified action.
|
2017-01-31 20:58:48 +00:00
|
|
|
* @private
|
|
|
|
*/
|
|
|
|
function _connectionFailed(state, action) {
|
2017-02-19 00:42:11 +00:00
|
|
|
const error = action.error;
|
2017-01-31 20:58:48 +00:00
|
|
|
|
2017-02-19 00:42:11 +00:00
|
|
|
if (isFatalJitsiConnectionError(error)) {
|
|
|
|
const errorMessage = action.errorMessage;
|
|
|
|
|
|
|
|
logger.error(`XMPP connection error: ${errorMessage}`);
|
2017-01-31 20:58:48 +00:00
|
|
|
|
|
|
|
return setStateProperties(state, {
|
|
|
|
haveToReload: true,
|
2017-02-19 00:42:11 +00:00
|
|
|
|
|
|
|
|
|
|
|
// From all of the cases above only CONNECTION_DROPPED_ERROR is
|
|
|
|
// considered a network type of failure.
|
2017-01-31 20:58:48 +00:00
|
|
|
isNetworkFailure:
|
2017-02-19 00:42:11 +00:00
|
|
|
error === JitsiConnectionErrors.CONNECTION_DROPPED_ERROR,
|
|
|
|
reason: `xmpp-conn-dropped: ${errorMessage}`
|
2017-01-31 20:58:48 +00:00
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
return state;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2017-02-19 00:42:11 +00:00
|
|
|
* Reduces a specific Redux action MEDIA_PERMISSION_PROMPT_VISIBILITY_CHANGED of
|
|
|
|
* the feature overlay.
|
2017-01-31 20:58:48 +00:00
|
|
|
*
|
|
|
|
* @param {Object} state - The Redux state of the feature overlay.
|
|
|
|
* @param {Action} action - The Redux action to reduce.
|
2017-02-19 00:42:11 +00:00
|
|
|
* @returns {Object} The new state of the feature overlay after the reduction of
|
|
|
|
* the specified action.
|
2017-01-31 20:58:48 +00:00
|
|
|
* @private
|
|
|
|
*/
|
|
|
|
function _mediaPermissionPromptVisibilityChanged(state, action) {
|
|
|
|
return setStateProperties(state, {
|
2017-02-19 00:42:11 +00:00
|
|
|
browser: action.browser,
|
2017-02-22 18:57:07 +00:00
|
|
|
isMediaPermissionPromptVisible: action.isVisible
|
2017-01-31 20:58:48 +00:00
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2017-02-19 00:42:11 +00:00
|
|
|
* Reduces a specific Redux action SUSPEND_DETECTED of the feature overlay.
|
2017-01-31 20:58:48 +00:00
|
|
|
*
|
|
|
|
* @param {Object} state - The Redux state of the feature overlay.
|
2017-02-19 00:42:11 +00:00
|
|
|
* @returns {Object} The new state of the feature overlay after the reduction of
|
|
|
|
* the specified action.
|
2017-01-31 20:58:48 +00:00
|
|
|
* @private
|
|
|
|
*/
|
|
|
|
function _suspendDetected(state) {
|
|
|
|
return setStateProperty(state, 'suspendDetected', true);
|
|
|
|
}
|