fix(tile-view): disable tile view on pin, unpin all on view enter

This commit is contained in:
Leonard Kim 2018-11-28 11:36:23 -08:00
parent 1ba66e4b65
commit 29bc18df01
3 changed files with 41 additions and 0 deletions

View File

@ -0,0 +1,39 @@
import {
PIN_PARTICIPANT,
getPinnedParticipant,
pinParticipant
} from '../base/participants';
import { MiddlewareRegistry } from '../base/redux';
import { SET_TILE_VIEW } from './actionTypes';
import { setTileView } from './actions';
/**
* Middleware which intercepts actions and updates tile view related state.
*
* @param {Store} store - The redux store.
* @returns {Function}
*/
MiddlewareRegistry.register(store => next => action => {
switch (action.type) {
case PIN_PARTICIPANT: {
const isPinning = Boolean(action.participant.id);
const { tileViewEnabled } = store.getState()['features/video-layout'];
if (isPinning && tileViewEnabled) {
store.dispatch(setTileView(false));
}
break;
}
case SET_TILE_VIEW:
if (getPinnedParticipant(store.getState()) && action.enabled) {
store.dispatch(pinParticipant(null));
}
break;
}
return next(action);
});

View File

@ -0,0 +1 @@
import './middleware.any';

View File

@ -17,6 +17,7 @@ import { TRACK_ADDED } from '../base/tracks';
import { SET_FILMSTRIP_VISIBLE } from '../filmstrip';
import { SET_TILE_VIEW } from './actionTypes';
import './middleware.any';
declare var APP: Object;