jiti-meet/react/features/toolbox/middleware.js

113 lines
3.1 KiB
JavaScript
Raw Normal View History

2017-04-01 05:52:40 +00:00
/* @flow */
import {
MEDIA_TYPE,
SET_AUDIO_AVAILABLE,
2017-08-18 19:47:15 +00:00
SET_VIDEO_AVAILABLE
} from '../base/media';
2017-04-01 05:52:40 +00:00
import { MiddlewareRegistry } from '../base/redux';
import { isLocalTrackMuted, TRACK_UPDATED } from '../base/tracks';
2017-04-01 05:52:40 +00:00
2017-07-16 08:44:07 +00:00
import { setToolbarButton } from './actions';
import { CLEAR_TOOLBOX_TIMEOUT, SET_TOOLBOX_TIMEOUT } from './actionTypes';
2017-04-01 05:52:40 +00:00
/**
* Middleware which intercepts Toolbox actions to handle changes to the
* visibility timeout of the Toolbox.
*
2017-07-16 08:44:07 +00:00
* @param {Store} store - The redux store.
2017-04-01 05:52:40 +00:00
* @returns {Function}
*/
MiddlewareRegistry.register(store => next => action => {
switch (action.type) {
case CLEAR_TOOLBOX_TIMEOUT: {
const { timeoutID } = store.getState()['features/toolbox'];
clearTimeout(timeoutID);
break;
}
2017-08-18 19:47:15 +00:00
case SET_AUDIO_AVAILABLE:
return _setMediaAvailableOrMuted(store, next, action);
2017-04-01 05:52:40 +00:00
case SET_TOOLBOX_TIMEOUT: {
const { timeoutID } = store.getState()['features/toolbox'];
const { handler, timeoutMS } = action;
clearTimeout(timeoutID);
const newTimeoutId = setTimeout(handler, timeoutMS);
action.timeoutID = newTimeoutId;
break;
}
2017-08-18 19:47:15 +00:00
case SET_VIDEO_AVAILABLE:
return _setMediaAvailableOrMuted(store, next, action);
2017-08-18 19:47:15 +00:00
case TRACK_UPDATED:
if (action.track.jitsiTrack.isLocal()) {
return _setMediaAvailableOrMuted(store, next, action);
}
break;
}
2017-04-01 05:52:40 +00:00
return next(action);
});
2017-07-16 08:44:07 +00:00
/**
* Adjusts the state of toolbar's microphone or camera button.
*
2017-08-18 19:47:15 +00:00
* @param {Store} store - The redux store.
* @param {Function} next - The redux function to continue dispatching the
* specified {@code action} in the specified {@code store}.
* @param {Object} action - {@code SET_AUDIO_AVAILABLE},
* {@code SET_VIDEO_AVAILABLE}, or {@code TRACK_UPDATED}.
* @returns {*}
*/
function _setMediaAvailableOrMuted({ dispatch, getState }, next, action) {
const result = next(action);
let mediaType;
switch (action.type) {
2017-08-18 19:47:15 +00:00
case SET_AUDIO_AVAILABLE:
mediaType = MEDIA_TYPE.AUDIO;
break;
2017-08-18 19:47:15 +00:00
case SET_VIDEO_AVAILABLE:
mediaType = MEDIA_TYPE.VIDEO;
break;
2017-08-18 19:47:15 +00:00
case TRACK_UPDATED:
mediaType
= action.track.jitsiTrack.isAudioTrack()
2017-08-18 19:47:15 +00:00
? MEDIA_TYPE.AUDIO
: MEDIA_TYPE.VIDEO;
break;
2017-07-16 08:44:07 +00:00
2017-08-18 19:47:15 +00:00
default:
throw new Error(`Unsupported action ${action}`);
}
2017-08-18 19:47:15 +00:00
const state = getState();
const { audio, video } = state['features/base/media'];
const { available } = mediaType === MEDIA_TYPE.AUDIO ? audio : video;
const i18nKey
= mediaType === MEDIA_TYPE.AUDIO
? available ? 'mute' : 'micDisabled'
: available ? 'videomute' : 'cameraDisabled';
2017-08-18 19:47:15 +00:00
const tracks = state['features/base/tracks'];
const muted = isLocalTrackMuted(tracks, mediaType);
2017-08-18 19:47:15 +00:00
dispatch(
setToolbarButton(
mediaType === MEDIA_TYPE.AUDIO ? 'microphone' : 'camera',
{
enabled: available,
i18n: `[content]toolbar.${i18nKey}`,
toggled: available ? muted : true
}));
2017-07-16 08:44:07 +00:00
return result;
}