2022-10-20 12:11:27 +03:00
|
|
|
import { IReduxState } from '../app/types';
|
2022-09-29 14:45:34 +03:00
|
|
|
import { hasAvailableDevices } from '../base/devices/functions';
|
2022-10-17 18:32:18 +03:00
|
|
|
import { MEET_FEATURES } from '../base/jwt/constants';
|
|
|
|
|
import { isJwtFeatureEnabled } from '../base/jwt/functions';
|
2023-05-18 14:16:37 -05:00
|
|
|
import { IGUMPendingState } from '../base/media/types';
|
2022-01-05 15:27:42 -05:00
|
|
|
import { isScreenMediaShared } from '../screen-share/functions';
|
2022-09-30 17:50:45 +03:00
|
|
|
import { isWhiteboardVisible } from '../whiteboard/functions';
|
2020-04-16 13:47:10 +03:00
|
|
|
|
2024-05-22 13:01:17 -05:00
|
|
|
import { MAIN_TOOLBAR_BUTTONS_PRIORITY, TOOLBAR_TIMEOUT } from './constants';
|
|
|
|
|
import { IMainToolbarButtonThresholds, IToolboxButton, NOTIFY_CLICK_MODE } from './types';
|
2021-09-23 17:39:05 +03:00
|
|
|
|
2021-11-30 15:08:25 -05:00
|
|
|
export * from './functions.any';
|
|
|
|
|
|
2018-03-06 16:28:19 -08:00
|
|
|
/**
|
|
|
|
|
* Helper for getting the height of the toolbox.
|
|
|
|
|
*
|
|
|
|
|
* @returns {number} The height of the toolbox.
|
|
|
|
|
*/
|
|
|
|
|
export function getToolboxHeight() {
|
|
|
|
|
const toolbox = document.getElementById('new-toolbox');
|
|
|
|
|
|
2022-09-29 14:45:34 +03:00
|
|
|
return toolbox?.clientHeight || 0;
|
2018-03-06 16:28:19 -08:00
|
|
|
}
|
|
|
|
|
|
2017-07-26 15:52:41 -05:00
|
|
|
/**
|
2024-02-29 17:39:13 -06:00
|
|
|
* Checks if the specified button is enabled.
|
2017-07-26 15:52:41 -05:00
|
|
|
*
|
2024-02-29 17:39:13 -06:00
|
|
|
* @param {string} buttonName - The name of the button. See {@link interfaceConfig}.
|
|
|
|
|
* @param {Object|Array<string>} state - The redux state or the array with the enabled buttons.
|
|
|
|
|
* @returns {boolean} - True if the button is enabled and false otherwise.
|
2017-07-26 15:52:41 -05:00
|
|
|
*/
|
2024-02-29 17:39:13 -06:00
|
|
|
export function isButtonEnabled(buttonName: string, state: IReduxState | Array<string>) {
|
|
|
|
|
const buttons = Array.isArray(state) ? state : state['features/toolbox'].toolbarButtons || [];
|
2020-08-04 17:25:16 -05:00
|
|
|
|
2024-02-29 17:39:13 -06:00
|
|
|
return buttons.includes(buttonName);
|
2017-07-26 15:52:41 -05:00
|
|
|
}
|
2019-03-12 17:45:53 +00:00
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Indicates if the toolbox is visible or not.
|
|
|
|
|
*
|
2022-10-20 12:11:27 +03:00
|
|
|
* @param {IReduxState} state - The state from the Redux store.
|
2019-03-12 17:45:53 +00:00
|
|
|
* @returns {boolean} - True to indicate that the toolbox is visible, false -
|
|
|
|
|
* otherwise.
|
|
|
|
|
*/
|
2022-10-20 12:11:27 +03:00
|
|
|
export function isToolboxVisible(state: IReduxState) {
|
2022-02-04 10:55:34 +01:00
|
|
|
const { iAmRecorder, iAmSipGateway, toolbarConfig } = state['features/base/config'];
|
2021-09-28 14:52:31 +03:00
|
|
|
const { alwaysVisible } = toolbarConfig || {};
|
2019-03-12 17:45:53 +00:00
|
|
|
const {
|
|
|
|
|
timeoutID,
|
|
|
|
|
visible
|
|
|
|
|
} = state['features/toolbox'];
|
2020-03-30 17:17:18 +03:00
|
|
|
const { audioSettingsVisible, videoSettingsVisible } = state['features/settings'];
|
2022-09-30 17:50:45 +03:00
|
|
|
const whiteboardVisible = isWhiteboardVisible(state);
|
2019-03-12 17:45:53 +00:00
|
|
|
|
2022-02-04 10:55:34 +01:00
|
|
|
return Boolean(!iAmRecorder && !iAmSipGateway
|
2022-09-30 17:50:45 +03:00
|
|
|
&& (
|
|
|
|
|
timeoutID
|
|
|
|
|
|| visible
|
|
|
|
|
|| alwaysVisible
|
|
|
|
|
|| audioSettingsVisible
|
|
|
|
|
|| videoSettingsVisible
|
|
|
|
|
|| whiteboardVisible
|
|
|
|
|
));
|
2019-03-12 17:45:53 +00:00
|
|
|
}
|
2020-04-16 13:47:10 +03:00
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Indicates if the audio settings button is disabled or not.
|
|
|
|
|
*
|
2022-10-20 12:11:27 +03:00
|
|
|
* @param {IReduxState} state - The state from the Redux store.
|
2020-04-16 13:47:10 +03:00
|
|
|
* @returns {boolean}
|
|
|
|
|
*/
|
2022-10-20 12:11:27 +03:00
|
|
|
export function isAudioSettingsButtonDisabled(state: IReduxState) {
|
2021-11-30 15:08:25 -05:00
|
|
|
|
|
|
|
|
return !(hasAvailableDevices(state, 'audioInput')
|
2022-09-29 14:45:34 +03:00
|
|
|
|| hasAvailableDevices(state, 'audioOutput'))
|
|
|
|
|
|| state['features/base/config'].startSilent;
|
2020-04-16 13:47:10 +03:00
|
|
|
}
|
|
|
|
|
|
2022-01-05 15:27:42 -05:00
|
|
|
/**
|
|
|
|
|
* Indicates if the desktop share button is disabled or not.
|
|
|
|
|
*
|
2022-10-20 12:11:27 +03:00
|
|
|
* @param {IReduxState} state - The state from the Redux store.
|
2022-01-05 15:27:42 -05:00
|
|
|
* @returns {boolean}
|
|
|
|
|
*/
|
2022-10-20 12:11:27 +03:00
|
|
|
export function isDesktopShareButtonDisabled(state: IReduxState) {
|
2022-01-05 15:27:42 -05:00
|
|
|
const { muted, unmuteBlocked } = state['features/base/media'].video;
|
|
|
|
|
const videoOrShareInProgress = !muted || isScreenMediaShared(state);
|
2022-10-17 18:32:18 +03:00
|
|
|
const enabledInJwt = isJwtFeatureEnabled(state, MEET_FEATURES.SCREEN_SHARING, true, true);
|
2022-01-05 15:27:42 -05:00
|
|
|
|
2022-10-17 18:32:18 +03:00
|
|
|
return !enabledInJwt || (unmuteBlocked && !videoOrShareInProgress);
|
2022-01-05 15:27:42 -05:00
|
|
|
}
|
|
|
|
|
|
2020-04-16 13:47:10 +03:00
|
|
|
/**
|
|
|
|
|
* Indicates if the video settings button is disabled or not.
|
|
|
|
|
*
|
2022-10-20 12:11:27 +03:00
|
|
|
* @param {IReduxState} state - The state from the Redux store.
|
2020-04-16 13:47:10 +03:00
|
|
|
* @returns {boolean}
|
|
|
|
|
*/
|
2022-10-20 12:11:27 +03:00
|
|
|
export function isVideoSettingsButtonDisabled(state: IReduxState) {
|
2020-06-19 10:03:26 +03:00
|
|
|
return !hasAvailableDevices(state, 'videoInput');
|
2020-04-16 13:47:10 +03:00
|
|
|
}
|
2020-11-04 09:32:06 +01:00
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Indicates if the video mute button is disabled or not.
|
|
|
|
|
*
|
2022-10-20 12:11:27 +03:00
|
|
|
* @param {IReduxState} state - The state from the Redux store.
|
2020-11-04 09:32:06 +01:00
|
|
|
* @returns {boolean}
|
|
|
|
|
*/
|
2022-10-20 12:11:27 +03:00
|
|
|
export function isVideoMuteButtonDisabled(state: IReduxState) {
|
2023-05-18 14:16:37 -05:00
|
|
|
const { muted, unmuteBlocked, gumPending } = state['features/base/media'].video;
|
2021-11-30 15:08:25 -05:00
|
|
|
|
2023-05-18 14:16:37 -05:00
|
|
|
return !hasAvailableDevices(state, 'videoInput')
|
|
|
|
|
|| (unmuteBlocked && Boolean(muted))
|
|
|
|
|
|| gumPending !== IGUMPendingState.NONE;
|
2020-11-04 09:32:06 +01:00
|
|
|
}
|
2021-09-10 14:05:16 +03:00
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* If an overflow drawer should be displayed or not.
|
|
|
|
|
* This is usually done for mobile devices or on narrow screens.
|
|
|
|
|
*
|
2022-10-20 12:11:27 +03:00
|
|
|
* @param {IReduxState} state - The state from the Redux store.
|
2021-09-10 14:05:16 +03:00
|
|
|
* @returns {boolean}
|
|
|
|
|
*/
|
2022-10-20 12:11:27 +03:00
|
|
|
export function showOverflowDrawer(state: IReduxState) {
|
2021-09-10 14:05:16 +03:00
|
|
|
return state['features/toolbox'].overflowDrawer;
|
|
|
|
|
}
|
2021-09-10 15:17:57 +03:00
|
|
|
|
2023-04-27 19:19:53 -05:00
|
|
|
/**
|
|
|
|
|
* Returns true if the overflow menu button is displayed and false otherwise.
|
|
|
|
|
*
|
|
|
|
|
* @param {IReduxState} state - The state from the Redux store.
|
|
|
|
|
* @returns {boolean} - True if the overflow menu button is displayed and false otherwise.
|
|
|
|
|
*/
|
|
|
|
|
export function showOverflowMenu(state: IReduxState) {
|
|
|
|
|
return state['features/toolbox'].overflowMenuVisible;
|
|
|
|
|
}
|
|
|
|
|
|
2021-09-10 15:17:57 +03:00
|
|
|
/**
|
|
|
|
|
* Indicates whether the toolbox is enabled or not.
|
|
|
|
|
*
|
2022-10-20 12:11:27 +03:00
|
|
|
* @param {IReduxState} state - The state from the Redux store.
|
2021-09-10 15:17:57 +03:00
|
|
|
* @returns {boolean}
|
|
|
|
|
*/
|
2022-10-20 12:11:27 +03:00
|
|
|
export function isToolboxEnabled(state: IReduxState) {
|
2021-09-10 15:17:57 +03:00
|
|
|
return state['features/toolbox'].enabled;
|
|
|
|
|
}
|
2021-09-23 17:39:05 +03:00
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Returns the toolbar timeout from config or the default value.
|
|
|
|
|
*
|
2022-10-20 12:11:27 +03:00
|
|
|
* @param {IReduxState} state - The state from the Redux store.
|
2022-08-30 16:21:58 +02:00
|
|
|
* @returns {number} - Toolbar timeout in milliseconds.
|
2021-09-23 17:39:05 +03:00
|
|
|
*/
|
2022-10-20 12:11:27 +03:00
|
|
|
export function getToolbarTimeout(state: IReduxState) {
|
2022-09-29 14:45:34 +03:00
|
|
|
const { toolbarConfig } = state['features/base/config'];
|
2021-09-23 17:39:05 +03:00
|
|
|
|
2022-09-29 14:45:34 +03:00
|
|
|
return toolbarConfig?.timeout || TOOLBAR_TIMEOUT;
|
2021-09-23 17:39:05 +03:00
|
|
|
}
|
2023-06-29 14:59:12 +03:00
|
|
|
|
2024-05-22 13:01:17 -05:00
|
|
|
/**
|
|
|
|
|
* Sets the notify click mode for the buttons.
|
|
|
|
|
*
|
|
|
|
|
* @param {Object} buttons - The list of toolbar buttons.
|
|
|
|
|
* @param {Map} buttonsWithNotifyClick - The buttons notify click configuration.
|
|
|
|
|
* @returns {void}
|
|
|
|
|
*/
|
|
|
|
|
function setButtonsNotifyClickMode(buttons: Object, buttonsWithNotifyClick: Map<string, NOTIFY_CLICK_MODE>) {
|
|
|
|
|
if (typeof APP === 'undefined' || (buttonsWithNotifyClick?.size ?? 0) <= 0) {
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
Object.values(buttons).forEach((button: any) => {
|
|
|
|
|
if (typeof button === 'object') {
|
|
|
|
|
button.notifyMode = buttonsWithNotifyClick.get(button.key);
|
|
|
|
|
}
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
interface IGetVisibleButtonsParams {
|
2024-05-23 09:20:51 -05:00
|
|
|
allButtons: { [key: string]: IToolboxButton; };
|
2024-05-22 13:01:17 -05:00
|
|
|
buttonsWithNotifyClick: Map<string, NOTIFY_CLICK_MODE>;
|
|
|
|
|
clientWidth: number;
|
|
|
|
|
jwtDisabledButtons: string[];
|
|
|
|
|
mainToolbarButtonsThresholds: IMainToolbarButtonThresholds;
|
|
|
|
|
toolbarButtons: string[];
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Returns all buttons that need to be rendered.
|
|
|
|
|
*
|
|
|
|
|
* @param {IGetVisibleButtonsParams} params - The parameters needed to extract the visible buttons.
|
|
|
|
|
* @returns {Object} - The visible buttons arrays .
|
|
|
|
|
*/
|
|
|
|
|
export function getVisibleButtons({
|
2024-05-23 09:20:51 -05:00
|
|
|
allButtons,
|
2024-05-22 13:01:17 -05:00
|
|
|
buttonsWithNotifyClick,
|
|
|
|
|
toolbarButtons,
|
|
|
|
|
clientWidth,
|
|
|
|
|
jwtDisabledButtons,
|
|
|
|
|
mainToolbarButtonsThresholds
|
|
|
|
|
}: IGetVisibleButtonsParams) {
|
2024-05-23 09:20:51 -05:00
|
|
|
setButtonsNotifyClickMode(allButtons, buttonsWithNotifyClick);
|
2024-05-22 13:01:17 -05:00
|
|
|
|
2024-05-23 09:20:51 -05:00
|
|
|
const filteredButtons = Object.keys(allButtons).filter(key =>
|
2024-12-19 13:09:42 +00:00
|
|
|
typeof key !== 'undefined' // filter invalid buttons that may be coming from config.mainToolbarButtons
|
2024-05-22 13:01:17 -05:00
|
|
|
// override
|
|
|
|
|
&& !jwtDisabledButtons.includes(key)
|
|
|
|
|
&& isButtonEnabled(key, toolbarButtons));
|
|
|
|
|
|
2024-05-23 09:20:51 -05:00
|
|
|
|
2024-05-22 13:01:17 -05:00
|
|
|
const { order } = mainToolbarButtonsThresholds.find(({ width }) => clientWidth > width)
|
|
|
|
|
|| mainToolbarButtonsThresholds[mainToolbarButtonsThresholds.length - 1];
|
|
|
|
|
|
|
|
|
|
const mainToolbarButtonKeysOrder = [
|
|
|
|
|
...order.filter(key => filteredButtons.includes(key)),
|
|
|
|
|
...MAIN_TOOLBAR_BUTTONS_PRIORITY.filter(key => !order.includes(key) && filteredButtons.includes(key)),
|
|
|
|
|
...filteredButtons.filter(key => !order.includes(key) && !MAIN_TOOLBAR_BUTTONS_PRIORITY.includes(key))
|
|
|
|
|
];
|
|
|
|
|
|
|
|
|
|
const mainButtonsKeys = mainToolbarButtonKeysOrder.slice(0, order.length);
|
|
|
|
|
const overflowMenuButtons = filteredButtons.reduce((acc, key) => {
|
|
|
|
|
if (!mainButtonsKeys.includes(key)) {
|
2024-05-23 09:20:51 -05:00
|
|
|
acc.push(allButtons[key]);
|
2024-05-22 13:01:17 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return acc;
|
|
|
|
|
}, [] as IToolboxButton[]);
|
|
|
|
|
|
|
|
|
|
// if we have 1 button in the overflow menu it is better to directly display it in the main toolbar by replacing
|
|
|
|
|
// the "More" menu button with it.
|
|
|
|
|
if (overflowMenuButtons.length === 1) {
|
|
|
|
|
const button = overflowMenuButtons.shift()?.key;
|
|
|
|
|
|
|
|
|
|
button && mainButtonsKeys.push(button);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return {
|
2024-05-23 09:20:51 -05:00
|
|
|
mainMenuButtons: mainButtonsKeys.map(key => allButtons[key]),
|
2024-05-22 13:01:17 -05:00
|
|
|
overflowMenuButtons
|
|
|
|
|
};
|
|
|
|
|
}
|
|
|
|
|
|
2024-03-08 09:59:02 -06:00
|
|
|
/**
|
|
|
|
|
* Returns the list of participant menu buttons that have that notify the api when clicked.
|
|
|
|
|
*
|
|
|
|
|
* @param {Object} state - The redux state.
|
|
|
|
|
* @returns {Map<string, NOTIFY_CLICK_MODE>} - The list of participant menu buttons.
|
|
|
|
|
*/
|
|
|
|
|
export function getParticipantMenuButtonsWithNotifyClick(state: IReduxState): Map<string, NOTIFY_CLICK_MODE> {
|
|
|
|
|
return state['features/toolbox'].participantMenuButtonsWithNotifyClick;
|
|
|
|
|
}
|
2024-08-23 15:45:19 -05:00
|
|
|
|
2024-09-18 15:51:06 -05:00
|
|
|
interface ICSSTransitionObject {
|
|
|
|
|
delay: number;
|
|
|
|
|
duration: number;
|
|
|
|
|
easingFunction: string;
|
|
|
|
|
}
|
2024-08-23 15:45:19 -05:00
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Returns the time, timing function and delay for elements that are position above the toolbar and need to move along
|
|
|
|
|
* with the toolbar.
|
|
|
|
|
*
|
|
|
|
|
* @param {boolean} isToolbarVisible - Whether the toolbar is visible or not.
|
2024-09-18 15:51:06 -05:00
|
|
|
* @returns {ICSSTransitionObject}
|
2024-08-23 15:45:19 -05:00
|
|
|
*/
|
2024-09-18 15:51:06 -05:00
|
|
|
export function getTransitionParamsForElementsAboveToolbox(isToolbarVisible: boolean): ICSSTransitionObject {
|
2024-12-19 13:09:42 +00:00
|
|
|
// The transition time and delay is different to account for the time when the toolbar is about to hide/show but
|
2024-08-23 15:45:19 -05:00
|
|
|
// the elements don't have to move.
|
2024-09-18 15:51:06 -05:00
|
|
|
return isToolbarVisible ? {
|
|
|
|
|
duration: 0.15,
|
|
|
|
|
easingFunction: 'ease-in',
|
|
|
|
|
delay: 0.15
|
|
|
|
|
} : {
|
|
|
|
|
duration: 0.24,
|
|
|
|
|
easingFunction: 'ease-in',
|
|
|
|
|
delay: 0
|
|
|
|
|
};
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Converts a given object to a css transition value string.
|
|
|
|
|
*
|
|
|
|
|
* @param {ICSSTransitionObject} object - The object.
|
|
|
|
|
* @returns {string}
|
|
|
|
|
*/
|
|
|
|
|
export function toCSSTransitionValue(object: ICSSTransitionObject) {
|
|
|
|
|
const { delay, duration, easingFunction } = object;
|
|
|
|
|
|
|
|
|
|
return `${duration}s ${easingFunction} ${delay}s`;
|
2024-08-23 15:45:19 -05:00
|
|
|
}
|