Files
jitsi-meet/react/features/base/tracks/middleware.js
Lyubomir Marinov d55e0f70d9 Import jitsi/jitsi-meet-react#2f23d98
As an intermediate step on the path to merging jitsi-meet and
jitsi-meet-react, import the whole source code of jitsi-meet-react as it
stands at
2f23d98424
i.e. the lastest master at the time of this import. No modifications are
applied to the imported source code in order to preserve a complete
snapshot of it in the repository of jitsi-meet and, thus, facilitate
comparison later on. Consequently, the source code of jitsi-meet and/or
jitsi-meet-react may not work. For example, jitsi-meet's jshint may be
unable to parse jitsi-meet-react's source code.
2016-10-12 10:31:52 -05:00

78 lines
2.0 KiB
JavaScript

import {
LIB_DISPOSED,
LIB_INITIALIZED
} from '../lib-jitsi-meet';
import {
AUDIO_MUTED_CHANGED,
CAMERA_FACING_MODE_CHANGED,
MEDIA_TYPE,
VIDEO_MUTED_CHANGED
} from '../media';
import { MiddlewareRegistry } from '../redux';
import {
createLocalTracks,
destroyLocalTracks
} from './actions';
import {
getLocalTrack,
setTrackMuted
} from './functions';
/**
* Middleware that captures LIB_INITIALIZED and LIB_DISPOSED actions
* and respectively creates/destroys local media tracks. Also listens to media-
* related actions and performs corresponding operations with tracks.
*
* @param {Store} store - Redux store.
* @returns {Function}
*/
MiddlewareRegistry.register(store => next => action => {
switch (action.type) {
case AUDIO_MUTED_CHANGED:
_mutedChanged(store, action, MEDIA_TYPE.AUDIO);
break;
case CAMERA_FACING_MODE_CHANGED:
store.dispatch(
createLocalTracks({
devices: [ MEDIA_TYPE.VIDEO ],
facingMode: action.cameraFacingMode
})
);
break;
case LIB_INITIALIZED:
store.dispatch(createLocalTracks());
break;
case LIB_DISPOSED:
store.dispatch(destroyLocalTracks());
break;
case VIDEO_MUTED_CHANGED:
_mutedChanged(store, action, MEDIA_TYPE.VIDEO);
break;
}
return next(action);
});
/**
* Mutes or unmutes a local track with a specific media type.
*
* @param {Store} store - The Redux store in which the specified action is
* dispatched.
* @param {Action} action - The Redux action dispatched in the specified store.
* @param {MEDIA_TYPE} mediaType - The {@link MEDIA_TYPE} of the local track
* which is being muted or unmuted.
* @private
* @returns {void}
*/
function _mutedChanged(store, action, mediaType) {
const tracks = store.getState()['features/base/tracks'];
const localTrack = getLocalTrack(tracks, mediaType);
localTrack && setTrackMuted(localTrack.jitsiTrack, action.muted);
}