123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139 |
- // @flow
-
- import { PARTICIPANT_JOINED, PARTICIPANT_LEFT } from '../base/participants';
- import { ReducerRegistry } from '../base/redux';
-
- import {
- SET_FILMSTRIP_ENABLED,
- SET_FILMSTRIP_VISIBLE,
- SET_HORIZONTAL_VIEW_DIMENSIONS,
- SET_TILE_VIEW_DIMENSIONS,
- SET_VERTICAL_VIEW_DIMENSIONS,
- SET_VOLUME
- } from './actionTypes';
-
- const DEFAULT_STATE = {
- /**
- * The indicator which determines whether the {@link Filmstrip} is enabled.
- *
- * @public
- * @type {boolean}
- */
- enabled: true,
-
- /**
- * The horizontal view dimensions.
- *
- * @public
- * @type {Object}
- */
- horizontalViewDimensions: {},
-
- /**
- * The custom audio volume levels per perticipant.
- *
- * @type {Object}
- */
- participantsVolume: {},
-
- /**
- * The ordered IDs of the remote participants displayed in the filmstrip.
- *
- * NOTE: Currently the order will match the one from the base/participants array. But this is good initial step for
- * reordering the remote participants.
- */
- remoteParticipants: [],
-
- /**
- * The tile view dimensions.
- *
- * @public
- * @type {Object}
- */
- tileViewDimensions: {},
-
- /**
- * The vertical view dimensions.
- *
- * @public
- * @type {Object}
- */
- verticalViewDimensions: {},
-
- /**
- * The indicator which determines whether the {@link Filmstrip} is visible.
- *
- * @public
- * @type {boolean}
- */
- visible: true
- };
-
- ReducerRegistry.register(
- 'features/filmstrip',
- (state = DEFAULT_STATE, action) => {
- switch (action.type) {
- case SET_FILMSTRIP_ENABLED:
- return {
- ...state,
- enabled: action.enabled
- };
-
- case SET_FILMSTRIP_VISIBLE:
- return {
- ...state,
- visible: action.visible
- };
-
- case SET_HORIZONTAL_VIEW_DIMENSIONS:
- return {
- ...state,
- horizontalViewDimensions: action.dimensions
- };
- case SET_TILE_VIEW_DIMENSIONS:
- return {
- ...state,
- tileViewDimensions: action.dimensions
- };
- case SET_VERTICAL_VIEW_DIMENSIONS:
- return {
- ...state,
- verticalViewDimensions: action.dimensions
- };
- case SET_VOLUME:
- return {
- ...state,
- participantsVolume: {
- ...state.participantsVolume,
-
- // NOTE: This would fit better in the features/base/participants. But currently we store
- // the participants as an array which will make it expensive to search for the volume for
- // every participant separately.
- [action.participantId]: action.volume
- }
- };
- case PARTICIPANT_JOINED: {
- const { id, local } = action.participant;
-
- if (!local) {
- state.remoteParticipants = [ ...state.remoteParticipants, id ];
- }
-
- return state;
- }
- case PARTICIPANT_LEFT: {
- const { id, local } = action.participant;
-
- if (local) {
- return state;
- }
-
- state.remoteParticipants = state.remoteParticipants.filter(participantId => participantId !== id);
- delete state.participantsVolume[id];
-
- return state;
- }
- }
-
- return state;
- });
|