2020-04-15 13:13:43 +00:00
|
|
|
// @flow
|
|
|
|
|
2020-05-20 08:25:31 +00:00
|
|
|
import { CONFERENCE_JOINED, CONFERENCE_LEFT, SET_PASSWORD } from '../base/conference';
|
2020-04-15 13:13:43 +00:00
|
|
|
import { ReducerRegistry } from '../base/redux';
|
|
|
|
|
|
|
|
import {
|
|
|
|
KNOCKING_PARTICIPANT_ARRIVED_OR_UPDATED,
|
|
|
|
KNOCKING_PARTICIPANT_LEFT,
|
|
|
|
SET_KNOCKING_STATE,
|
2020-05-20 08:25:31 +00:00
|
|
|
SET_LOBBY_MODE_ENABLED,
|
|
|
|
SET_PASSWORD_JOIN_FAILED
|
2020-04-15 13:13:43 +00:00
|
|
|
} from './actionTypes';
|
|
|
|
|
|
|
|
const DEFAULT_STATE = {
|
|
|
|
knocking: false,
|
|
|
|
knockingParticipants: [],
|
2020-05-20 08:25:31 +00:00
|
|
|
lobbyEnabled: false,
|
|
|
|
passwordJoinFailed: false
|
2020-04-15 13:13:43 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Reduces redux actions which affect the display of notifications.
|
|
|
|
*
|
|
|
|
* @param {Object} state - The current redux state.
|
|
|
|
* @param {Object} action - The redux action to reduce.
|
|
|
|
* @returns {Object} The next redux state which is the result of reducing the
|
|
|
|
* specified {@code action}.
|
|
|
|
*/
|
|
|
|
ReducerRegistry.register('features/lobby', (state = DEFAULT_STATE, action) => {
|
|
|
|
switch (action.type) {
|
|
|
|
case CONFERENCE_JOINED:
|
|
|
|
case CONFERENCE_LEFT:
|
|
|
|
return {
|
|
|
|
...state,
|
2020-05-20 08:25:31 +00:00
|
|
|
knocking: false,
|
|
|
|
passwordJoinFailed: false
|
2020-04-15 13:13:43 +00:00
|
|
|
};
|
|
|
|
case KNOCKING_PARTICIPANT_ARRIVED_OR_UPDATED:
|
|
|
|
return _knockingParticipantArrivedOrUpdated(action.participant, state);
|
|
|
|
case KNOCKING_PARTICIPANT_LEFT:
|
|
|
|
return {
|
|
|
|
...state,
|
|
|
|
knockingParticipants: state.knockingParticipants.filter(p => p.id !== action.id)
|
|
|
|
};
|
|
|
|
case SET_KNOCKING_STATE:
|
|
|
|
return {
|
|
|
|
...state,
|
2020-05-20 08:25:31 +00:00
|
|
|
knocking: action.knocking,
|
|
|
|
passwordJoinFailed: false
|
2020-04-15 13:13:43 +00:00
|
|
|
};
|
|
|
|
case SET_LOBBY_MODE_ENABLED:
|
|
|
|
return {
|
|
|
|
...state,
|
|
|
|
lobbyEnabled: action.enabled
|
|
|
|
};
|
2020-05-20 08:25:31 +00:00
|
|
|
case SET_PASSWORD:
|
|
|
|
return {
|
|
|
|
...state,
|
|
|
|
passwordJoinFailed: false
|
|
|
|
};
|
|
|
|
case SET_PASSWORD_JOIN_FAILED:
|
|
|
|
return {
|
|
|
|
...state,
|
|
|
|
passwordJoinFailed: action.failed
|
|
|
|
};
|
2020-04-15 13:13:43 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return state;
|
|
|
|
});
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Stores or updates a knocking participant.
|
|
|
|
*
|
|
|
|
* @param {Object} participant - The arrived or updated knocking participant.
|
|
|
|
* @param {Object} state - The current Redux state of the feature.
|
|
|
|
* @returns {Object}
|
|
|
|
*/
|
|
|
|
function _knockingParticipantArrivedOrUpdated(participant, state) {
|
|
|
|
let existingParticipant = state.knockingParticipants.find(p => p.id === participant.id);
|
|
|
|
|
|
|
|
existingParticipant = {
|
|
|
|
...existingParticipant,
|
|
|
|
...participant
|
|
|
|
};
|
|
|
|
|
|
|
|
return {
|
|
|
|
...state,
|
|
|
|
knockingParticipants: [
|
|
|
|
...state.knockingParticipants.filter(p => p.id !== participant.id),
|
|
|
|
existingParticipant
|
|
|
|
]
|
|
|
|
};
|
|
|
|
}
|