12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182 |
- // @flow
-
- import {
- ADD_PREJOIN_AUDIO_TRACK,
- ADD_PREJOIN_VIDEO_TRACK,
- PREJOIN_START_CONFERENCE
- } from './actionTypes';
- import { setPrejoinAudioMuted, setPrejoinVideoMuted } from './actions';
- import { updateSettings } from '../base/settings';
- import { SET_AUDIO_MUTED, SET_VIDEO_MUTED } from '../base/media';
- import { MiddlewareRegistry } from '../base/redux';
- import { getAllPrejoinConfiguredTracks } from './functions';
-
- declare var APP: Object;
-
- /**
- * The redux middleware for {@link PrejoinPage}.
- *
- * @param {Store} store - The redux store.
- * @returns {Function}
- */
- MiddlewareRegistry.register(store => next => async action => {
- switch (action.type) {
- case ADD_PREJOIN_AUDIO_TRACK: {
- const { value: audioTrack } = action;
-
- if (audioTrack) {
- store.dispatch(
- updateSettings({
- micDeviceId: audioTrack.getDeviceId()
- }),
- );
- }
-
- break;
- }
-
- case ADD_PREJOIN_VIDEO_TRACK: {
- const { value: videoTrack } = action;
-
- if (videoTrack) {
- store.dispatch(
- updateSettings({
- cameraDeviceId: videoTrack.getDeviceId()
- }),
- );
- }
-
- break;
- }
-
- case PREJOIN_START_CONFERENCE: {
- const { getState, dispatch } = store;
- const state = getState();
- const { userSelectedSkipPrejoin } = state['features/prejoin'];
-
- userSelectedSkipPrejoin && dispatch(updateSettings({
- userSelectedSkipPrejoin
- }));
-
-
- const tracks = await getAllPrejoinConfiguredTracks(state);
-
- APP.conference.prejoinStart(tracks);
-
- break;
- }
-
- case SET_AUDIO_MUTED: {
- store.dispatch(setPrejoinAudioMuted(Boolean(action.muted)));
- break;
- }
-
- case SET_VIDEO_MUTED: {
- store.dispatch(setPrejoinVideoMuted(Boolean(action.muted)));
- break;
- }
-
- }
-
- return next(action);
- });
|