jiti-meet/react/features/toolbox/functions.web.js

118 lines
3.4 KiB
JavaScript
Raw Normal View History

// @flow
import { getToolbarButtons } from '../base/config';
2020-05-20 10:57:03 +00:00
import { hasAvailableDevices } from '../base/devices';
2020-04-16 10:47:10 +00:00
import { TOOLBAR_TIMEOUT } from './constants';
/**
* Helper for getting the height of the toolbox.
*
* @returns {number} The height of the toolbox.
*/
export function getToolboxHeight() {
const toolbox = document.getElementById('new-toolbox');
return (toolbox && toolbox.clientHeight) || 0;
}
2017-07-26 20:52:41 +00:00
/**
* Indicates if a toolbar button is enabled.
*
* @param {string} name - The name of the setting section as defined in
* interface_config.js.
* @param {Object} state - The redux state.
2020-08-04 22:25:16 +00:00
* @returns {boolean|undefined} - True to indicate that the given toolbar button
* is enabled, false - otherwise.
2017-07-26 20:52:41 +00:00
*/
export function isButtonEnabled(name: string, state: Object) {
const toolbarButtons = getToolbarButtons(state);
2020-08-04 22:25:16 +00:00
return toolbarButtons.indexOf(name) !== -1;
2017-07-26 20:52:41 +00:00
}
2019-03-12 17:45:53 +00:00
/**
* Indicates if the toolbox is visible or not.
*
* @param {Object} 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.
*/
export function isToolboxVisible(state: Object) {
const { iAmSipGateway, toolbarConfig } = state['features/base/config'];
const { alwaysVisible } = toolbarConfig || {};
2019-03-12 17:45:53 +00:00
const {
timeoutID,
visible
} = state['features/toolbox'];
const { audioSettingsVisible, videoSettingsVisible } = state['features/settings'];
2019-03-12 17:45:53 +00:00
return Boolean(!iAmSipGateway && (timeoutID || visible || alwaysVisible
|| audioSettingsVisible || videoSettingsVisible));
2019-03-12 17:45:53 +00:00
}
2020-04-16 10:47:10 +00:00
/**
* Indicates if the audio settings button is disabled or not.
*
* @param {Object} state - The state from the Redux store.
2020-04-16 10:47:10 +00:00
* @returns {boolean}
*/
export function isAudioSettingsButtonDisabled(state: Object) {
return (!hasAvailableDevices(state, 'audioInput')
&& !hasAvailableDevices(state, 'audioOutput'))
|| state['features/base/config'].startSilent;
2020-04-16 10:47:10 +00:00
}
/**
* Indicates if the video settings button is disabled or not.
*
* @param {Object} state - The state from the Redux store.
2020-04-16 10:47:10 +00:00
* @returns {boolean}
*/
export function isVideoSettingsButtonDisabled(state: Object) {
return !hasAvailableDevices(state, 'videoInput');
2020-04-16 10:47:10 +00:00
}
/**
* Indicates if the video mute button is disabled or not.
*
* @param {Object} state - The state from the Redux store.
* @returns {boolean}
*/
export function isVideoMuteButtonDisabled(state: Object) {
return !hasAvailableDevices(state, 'videoInput');
}
/**
* If an overflow drawer should be displayed or not.
* This is usually done for mobile devices or on narrow screens.
*
* @param {Object} state - The state from the Redux store.
* @returns {boolean}
*/
export function showOverflowDrawer(state: Object) {
return state['features/toolbox'].overflowDrawer;
}
/**
* Indicates whether the toolbox is enabled or not.
*
* @param {Object} state - The state from the Redux store.
* @returns {boolean}
*/
export function isToolboxEnabled(state: Object) {
return state['features/toolbox'].enabled;
}
/**
* Returns the toolbar timeout from config or the default value.
*
* @param {Object} state - The state from the Redux store.
* @returns {number} - Toolbar timeout in miliseconds.
*/
export function getToolbarTimeout(state: Object) {
const { toolbarConfig: { timeout } } = state['features/base/config'];
return timeout || TOOLBAR_TIMEOUT;
}