2022-10-19 14:38:38 +03:00
|
|
|
import { AnyAction } from 'redux';
|
2017-04-01 00:52:40 -05:00
|
|
|
|
2024-02-28 13:52:04 -06:00
|
|
|
import { IReduxState } from '../app/types';
|
|
|
|
|
import { OVERWRITE_CONFIG, SET_CONFIG, UPDATE_CONFIG } from '../base/config/actionTypes';
|
2022-10-19 14:38:38 +03:00
|
|
|
import MiddlewareRegistry from '../base/redux/MiddlewareRegistry';
|
2017-04-01 00:52:40 -05:00
|
|
|
|
2018-03-06 16:28:19 -08:00
|
|
|
import {
|
|
|
|
|
CLEAR_TOOLBOX_TIMEOUT,
|
2022-09-27 10:10:28 +03:00
|
|
|
SET_FULL_SCREEN,
|
2024-02-28 13:52:04 -06:00
|
|
|
SET_TOOLBAR_BUTTONS,
|
2022-09-27 10:10:28 +03:00
|
|
|
SET_TOOLBOX_TIMEOUT
|
2018-03-06 16:28:19 -08:00
|
|
|
} from './actionTypes';
|
2024-02-28 13:52:04 -06:00
|
|
|
import { TOOLBAR_BUTTONS } from './constants';
|
2018-03-06 16:28:19 -08:00
|
|
|
|
2023-06-12 10:48:16 +02:00
|
|
|
import './subscriber.web';
|
2021-07-13 09:50:08 +03:00
|
|
|
|
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'];
|
|
|
|
|
|
2022-10-19 14:38:38 +03:00
|
|
|
clearTimeout(timeoutID ?? undefined);
|
2017-04-01 00:52:40 -05:00
|
|
|
break;
|
|
|
|
|
}
|
2024-02-28 13:52:04 -06:00
|
|
|
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
|
|
|
|
2018-03-06 16:28:19 -08: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'];
|
2022-10-19 14:38:38 +03:00
|
|
|
const { handler, timeoutMS }: { handler: Function; timeoutMS: number; } = action;
|
2017-04-01 00:52:40 -05:00
|
|
|
|
2022-10-19 14:38:38 +03:00
|
|
|
clearTimeout(timeoutID ?? undefined);
|
2018-04-09 07:03:26 +02:00
|
|
|
action.timeoutID = setTimeout(handler, timeoutMS);
|
2017-04-01 00:52:40 -05:00
|
|
|
|
|
|
|
|
break;
|
|
|
|
|
}
|
2017-07-24 15:56:57 +02:00
|
|
|
}
|
|
|
|
|
|
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 = {
|
2022-10-19 14:38:38 +03:00
|
|
|
requestFullscreen?: Function;
|
|
|
|
|
webkitRequestFullscreen?: Function;
|
|
|
|
|
};
|
2019-03-19 16:42:25 +01:00
|
|
|
|
2018-03-06 16:28:19 -08: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)}.
|
|
|
|
|
*/
|
2022-10-19 14:38:38 +03:00
|
|
|
function _setFullScreen(next: Function, action: AnyAction) {
|
2021-11-04 22:10:43 +01:00
|
|
|
const result = next(action);
|
|
|
|
|
|
2023-06-12 10:48:16 +02:00
|
|
|
const { fullScreen } = action;
|
2018-03-06 16:28:19 -08:00
|
|
|
|
2023-06-12 10:48:16 +02:00
|
|
|
if (fullScreen) {
|
|
|
|
|
const documentElement: DocumentElement
|
|
|
|
|
= document.documentElement || {};
|
2018-10-03 11:29:19 +02:00
|
|
|
|
2023-06-12 10:48:16 +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
|
|
|
|
2023-06-12 10:48:16 +02:00
|
|
|
return result;
|
|
|
|
|
}
|
2018-10-03 11:29:19 +02:00
|
|
|
|
2023-06-12 10:48:16 +02:00
|
|
|
if (typeof document.exitFullscreen === 'function') {
|
|
|
|
|
document.exitFullscreen();
|
|
|
|
|
} else if (typeof document.webkitExitFullscreen === 'function') {
|
|
|
|
|
document.webkitExitFullscreen();
|
2018-03-06 16:28:19 -08:00
|
|
|
}
|
|
|
|
|
|
2021-11-04 22:10:43 +01:00
|
|
|
return result;
|
2018-03-06 16:28:19 -08:00
|
|
|
}
|
2024-02-28 13:52:04 -06:00
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 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;
|
|
|
|
|
}
|