Files
jitsi-meet/react/features/toolbox/middleware.web.ts

124 lines
3.4 KiB
TypeScript
Raw Normal View History

import { AnyAction } from 'redux';
2017-04-01 00:52:40 -05:00
import { IReduxState } from '../app/types';
import { OVERWRITE_CONFIG, SET_CONFIG, UPDATE_CONFIG } from '../base/config/actionTypes';
import MiddlewareRegistry from '../base/redux/MiddlewareRegistry';
2017-04-01 00:52:40 -05:00
import {
CLEAR_TOOLBOX_TIMEOUT,
SET_FULL_SCREEN,
SET_TOOLBAR_BUTTONS,
SET_TOOLBOX_TIMEOUT
} from './actionTypes';
import { TOOLBAR_BUTTONS } from './constants';
import './subscriber.web';
2017-04-01 00:52:40 -05:00
/**
* Middleware which intercepts Toolbox actions to handle changes to the
* visibility timeout of the Toolbox.
*
2017-07-16 03:44:07 -05:00
* @param {Store} store - The redux store.
2017-04-01 00:52:40 -05:00
* @returns {Function}
*/
MiddlewareRegistry.register(store => next => action => {
switch (action.type) {
case CLEAR_TOOLBOX_TIMEOUT: {
const { timeoutID } = store.getState()['features/toolbox'];
clearTimeout(timeoutID ?? undefined);
2017-04-01 00:52:40 -05:00
break;
}
case UPDATE_CONFIG:
case OVERWRITE_CONFIG:
case SET_CONFIG: {
const result = next(action);
const toolbarButtons = _getToolbarButtons(store.getState());
store.dispatch({
type: SET_TOOLBAR_BUTTONS,
toolbarButtons
});
return result;
}
2017-04-01 00:52:40 -05:00
case SET_FULL_SCREEN:
return _setFullScreen(next, action);
2017-04-01 00:52:40 -05:00
case SET_TOOLBOX_TIMEOUT: {
const { timeoutID } = store.getState()['features/toolbox'];
const { handler, timeoutMS }: { handler: Function; timeoutMS: number; } = action;
2017-04-01 00:52:40 -05:00
clearTimeout(timeoutID ?? undefined);
action.timeoutID = setTimeout(handler, timeoutMS);
2017-04-01 00:52:40 -05:00
break;
}
}
2017-04-01 00:52:40 -05:00
return next(action);
});
2017-07-16 03:44:07 -05:00
2019-03-19 16:42:25 +01:00
type DocumentElement = {
requestFullscreen?: Function;
webkitRequestFullscreen?: Function;
};
2019-03-19 16:42:25 +01:00
/**
* Makes an external request to enter or exit full screen mode.
*
* @param {Dispatch} next - The redux dispatch function to dispatch the
* specified action to the specified store.
* @param {Action} action - The redux action SET_FULL_SCREEN which is being
* dispatched in the specified store.
* @private
* @returns {Object} The value returned by {@code next(action)}.
*/
function _setFullScreen(next: Function, action: AnyAction) {
2021-11-04 22:10:43 +01:00
const result = next(action);
const { fullScreen } = action;
if (fullScreen) {
const documentElement: DocumentElement
= document.documentElement || {};
2018-10-03 11:29:19 +02:00
if (typeof documentElement.requestFullscreen === 'function') {
documentElement.requestFullscreen();
} else if (
typeof documentElement.webkitRequestFullscreen === 'function') {
documentElement.webkitRequestFullscreen();
2021-11-04 22:10:43 +01:00
}
2018-10-03 11:29:19 +02:00
return result;
}
2018-10-03 11:29:19 +02:00
if (typeof document.exitFullscreen === 'function') {
document.exitFullscreen();
} else if (typeof document.webkitExitFullscreen === 'function') {
document.webkitExitFullscreen();
}
2021-11-04 22:10:43 +01:00
return result;
}
/**
* Returns the list of enabled toolbar buttons.
*
* @param {Object} state - The redux state.
* @returns {Array<string>} - The list of enabled toolbar buttons.
*/
function _getToolbarButtons(state: IReduxState): Array<string> {
const { toolbarButtons, customToolbarButtons } = state['features/base/config'];
const customButtons = customToolbarButtons?.map(({ id }) => id);
const buttons = Array.isArray(toolbarButtons) ? toolbarButtons : TOOLBAR_BUTTONS;
if (customButtons) {
return [ ...buttons, ...customButtons ];
}
return buttons;
}