123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334 |
- import React, { useCallback, useEffect, useRef } from 'react';
- import { useTranslation } from 'react-i18next';
- import { useDispatch, useSelector } from 'react-redux';
- import { makeStyles } from 'tss-react/mui';
-
- import { IReduxState } from '../../../app/types';
- import { isMobileBrowser } from '../../../base/environment/utils';
- import { getLocalParticipant, isLocalParticipantModerator } from '../../../base/participants/functions';
- import ContextMenu from '../../../base/ui/components/web/ContextMenu';
- import { isReactionsButtonEnabled, shouldDisplayReactionsButtons } from '../../../reactions/functions.web';
- import { isTranscribing } from '../../../transcribing/functions';
- import {
- setHangupMenuVisible,
- setOverflowMenuVisible,
- setToolbarHovered,
- setToolboxVisible
- } from '../../actions.web';
- import {
- getJwtDisabledButtons,
- getVisibleButtons,
- isButtonEnabled,
- isToolboxVisible
- } from '../../functions.web';
- import { useKeyboardShortcuts, useToolboxButtons } from '../../hooks.web';
- import { IToolboxButton } from '../../types';
- import HangupButton from '../HangupButton';
-
- import { EndConferenceButton } from './EndConferenceButton';
- import HangupMenuButton from './HangupMenuButton';
- import { LeaveConferenceButton } from './LeaveConferenceButton';
- import OverflowMenuButton from './OverflowMenuButton';
- import Separator from './Separator';
-
- /**
- * The type of the React {@code Component} props of {@link Toolbox}.
- */
- interface IProps {
-
- /**
- * Explicitly passed array with the buttons which this Toolbox should display.
- */
- toolbarButtons?: Array<string>;
- }
-
- const useStyles = makeStyles()(() => {
- return {
- hangupMenu: {
- position: 'relative',
- right: 'auto',
- display: 'flex',
- flexDirection: 'column',
- rowGap: '8px',
- margin: 0,
- padding: '16px',
- marginBottom: '8px'
- }
- };
- });
-
- /**
- * A component that renders the main toolbar.
- *
- * @param {IProps} props - The props of the component.
- * @returns {ReactElement}
- */
- export default function Toolbox({
- toolbarButtons
- }: IProps) {
- const { classes, cx } = useStyles();
- const { t } = useTranslation();
- const dispatch = useDispatch();
- const _toolboxRef = useRef<HTMLDivElement>(null);
-
- const conference = useSelector((state: IReduxState) => state['features/base/conference'].conference);
- const isNarrowLayout = useSelector((state: IReduxState) => state['features/base/responsive-ui'].isNarrowLayout);
- const clientWidth = useSelector((state: IReduxState) => state['features/base/responsive-ui'].clientWidth);
- const isModerator = useSelector(isLocalParticipantModerator);
- const customToolbarButtons = useSelector(
- (state: IReduxState) => state['features/base/config'].customToolbarButtons);
- const iAmRecorder = useSelector((state: IReduxState) => state['features/base/config'].iAmRecorder);
- const iAmSipGateway = useSelector((state: IReduxState) => state['features/base/config'].iAmSipGateway);
- const overflowDrawer = useSelector((state: IReduxState) => state['features/toolbox'].overflowDrawer);
- const shiftUp = useSelector((state: IReduxState) => state['features/toolbox'].shiftUp);
- const overflowMenuVisible = useSelector((state: IReduxState) => state['features/toolbox'].overflowMenuVisible);
- const hangupMenuVisible = useSelector((state: IReduxState) => state['features/toolbox'].hangupMenuVisible);
- const buttonsWithNotifyClick
- = useSelector((state: IReduxState) => state['features/toolbox'].buttonsWithNotifyClick);
- const reduxToolbarButtons = useSelector((state: IReduxState) => state['features/toolbox'].toolbarButtons);
- const toolbarButtonsToUse = toolbarButtons || reduxToolbarButtons;
- const chatOpen = useSelector((state: IReduxState) => state['features/chat'].isOpen);
- const isDialogVisible = useSelector((state: IReduxState) => Boolean(state['features/base/dialog'].component));
- const jwt = useSelector((state: IReduxState) => state['features/base/jwt'].jwt);
- const localParticipant = useSelector(getLocalParticipant);
- const transcribing = useSelector(isTranscribing);
-
- // Do not convert to selector, it returns new array and will cause re-rendering of toolbox on every action.
- const jwtDisabledButtons = getJwtDisabledButtons(transcribing, isModerator, jwt, localParticipant?.features);
-
- const reactionsButtonEnabled = useSelector(isReactionsButtonEnabled);
- const _shouldDisplayReactionsButtons = useSelector(shouldDisplayReactionsButtons);
- const toolbarVisible = useSelector(isToolboxVisible);
- const mainToolbarButtonsThresholds
- = useSelector((state: IReduxState) => state['features/toolbox'].mainToolbarButtonsThresholds);
- const allButtons = useToolboxButtons(customToolbarButtons);
- const isMobile = isMobileBrowser();
- const endConferenceSupported = Boolean(conference?.isEndConferenceSupported() && isModerator);
-
- useKeyboardShortcuts(toolbarButtonsToUse);
-
- useEffect(() => {
- if (!toolbarVisible) {
- if (document.activeElement instanceof HTMLElement
- && _toolboxRef.current?.contains(document.activeElement)) {
- document.activeElement.blur();
- }
- }
- }, [ toolbarVisible ]);
-
- /**
- * Sets the visibility of the hangup menu.
- *
- * @param {boolean} visible - Whether or not the hangup menu should be
- * displayed.
- * @private
- * @returns {void}
- */
- const onSetHangupVisible = useCallback((visible: boolean) => {
- dispatch(setHangupMenuVisible(visible));
- dispatch(setToolbarHovered(visible));
- }, [ dispatch ]);
-
- /**
- * Sets the visibility of the overflow menu.
- *
- * @param {boolean} visible - Whether or not the overflow menu should be
- * displayed.
- * @private
- * @returns {void}
- */
- const onSetOverflowVisible = useCallback((visible: boolean) => {
- dispatch(setOverflowMenuVisible(visible));
- dispatch(setToolbarHovered(visible));
- }, [ dispatch ]);
-
- useEffect(() => {
-
- // On mobile web we want to keep both toolbox and hang up menu visible
- // because they depend on each other.
- if (endConferenceSupported && isMobile) {
- hangupMenuVisible && dispatch(setToolboxVisible(true));
- } else if (hangupMenuVisible && !toolbarVisible) {
- onSetHangupVisible(false);
- dispatch(setToolbarHovered(false));
- }
- }, [ dispatch, hangupMenuVisible, toolbarVisible, onSetHangupVisible ]);
-
- useEffect(() => {
- if (overflowMenuVisible && isDialogVisible) {
- onSetOverflowVisible(false);
- dispatch(setToolbarHovered(false));
- }
- }, [ dispatch, overflowMenuVisible, isDialogVisible, onSetOverflowVisible ]);
-
- /**
- * Key handler for overflow/hangup menus.
- *
- * @param {KeyboardEvent} e - Esc key click to close the popup.
- * @returns {void}
- */
- const onEscKey = useCallback((e?: React.KeyboardEvent) => {
- if (e?.key === 'Escape') {
- e?.stopPropagation();
- hangupMenuVisible && dispatch(setHangupMenuVisible(false));
- overflowMenuVisible && dispatch(setOverflowMenuVisible(false));
- }
- }, [ dispatch, hangupMenuVisible, overflowMenuVisible ]);
-
- /**
- * Dispatches an action signaling the toolbar is not being hovered.
- *
- * @private
- * @returns {void}
- */
- const onMouseOut = useCallback(() => {
- !overflowMenuVisible && dispatch(setToolbarHovered(false));
- }, [ dispatch, overflowMenuVisible ]);
-
- /**
- * Dispatches an action signaling the toolbar is being hovered.
- *
- * @private
- * @returns {void}
- */
- const onMouseOver = useCallback(() => {
- dispatch(setToolbarHovered(true));
- }, [ dispatch ]);
-
- /**
- * Handle focus on the toolbar.
- *
- * @returns {void}
- */
- const handleFocus = useCallback(() => {
- dispatch(setToolboxVisible(true));
- }, [ dispatch ]);
-
- /**
- * Handle blur the toolbar..
- *
- * @returns {void}
- */
- const handleBlur = useCallback(() => {
- dispatch(setToolboxVisible(false));
- }, [ dispatch ]);
-
- if (iAmRecorder || iAmSipGateway) {
- return null;
- }
-
-
- const rootClassNames = `new-toolbox ${toolbarVisible ? 'visible' : ''} ${
- toolbarButtonsToUse.length ? '' : 'no-buttons'} ${chatOpen ? 'shift-right' : ''}`;
-
- const toolbarAccLabel = 'toolbar.accessibilityLabel.moreActionsMenu';
- const containerClassName = `toolbox-content${isMobile || isNarrowLayout ? ' toolbox-content-mobile' : ''}`;
-
- const { mainMenuButtons, overflowMenuButtons } = getVisibleButtons({
- allButtons,
- buttonsWithNotifyClick,
- toolbarButtons: toolbarButtonsToUse,
- clientWidth,
- jwtDisabledButtons,
- mainToolbarButtonsThresholds
- });
- const raiseHandInOverflowMenu = overflowMenuButtons.some(({ key }) => key === 'raisehand');
- const showReactionsInOverflowMenu = _shouldDisplayReactionsButtons
- && (
- (!reactionsButtonEnabled && (raiseHandInOverflowMenu || isNarrowLayout || isMobile))
- || overflowMenuButtons.some(({ key }) => key === 'reactions'));
- const showRaiseHandInReactionsMenu = showReactionsInOverflowMenu && raiseHandInOverflowMenu;
-
- return (
- <div
- className = { cx(rootClassNames, shiftUp && 'shift-up') }
- id = 'new-toolbox'>
- <div className = { containerClassName }>
- <div
- className = 'toolbox-content-wrapper'
- onBlur = { handleBlur }
- onFocus = { handleFocus }
- { ...(isMobile ? {} : {
- onMouseOut,
- onMouseOver
- }) }>
-
- <div
- className = 'toolbox-content-items'
- ref = { _toolboxRef }>
- {mainMenuButtons.map(({ Content, key, ...rest }) => Content !== Separator && (
- <Content
- { ...rest }
- buttonKey = { key }
- key = { key } />))}
-
- {Boolean(overflowMenuButtons.length) && (
- <OverflowMenuButton
- ariaControls = 'overflow-menu'
- buttons = { overflowMenuButtons.reduce<Array<IToolboxButton[]>>((acc, val) => {
- if (val.key === 'reactions' && showReactionsInOverflowMenu) {
- return acc;
- }
-
- if (val.key === 'raisehand' && showRaiseHandInReactionsMenu) {
- return acc;
- }
-
- if (acc.length) {
- const prev = acc[acc.length - 1];
- const group = prev[prev.length - 1].group;
-
- if (group === val.group) {
- prev.push(val);
- } else {
- acc.push([ val ]);
- }
- } else {
- acc.push([ val ]);
- }
-
- return acc;
- }, []) }
- isOpen = { overflowMenuVisible }
- key = 'overflow-menu'
- onToolboxEscKey = { onEscKey }
- onVisibilityChange = { onSetOverflowVisible }
- showRaiseHandInReactionsMenu = { showRaiseHandInReactionsMenu }
- showReactionsMenu = { showReactionsInOverflowMenu } />
- )}
-
- {isButtonEnabled('hangup', toolbarButtonsToUse) && (
- endConferenceSupported
- ? <HangupMenuButton
- ariaControls = 'hangup-menu'
- isOpen = { hangupMenuVisible }
- key = 'hangup-menu'
- notifyMode = { buttonsWithNotifyClick?.get('hangup-menu') }
- onVisibilityChange = { onSetHangupVisible }>
- <ContextMenu
- accessibilityLabel = { t(toolbarAccLabel) }
- className = { classes.hangupMenu }
- hidden = { false }
- inDrawer = { overflowDrawer }
- onKeyDown = { onEscKey }>
- <EndConferenceButton
- buttonKey = 'end-meeting'
- notifyMode = { buttonsWithNotifyClick?.get('end-meeting') } />
- <LeaveConferenceButton
- buttonKey = 'hangup'
- notifyMode = { buttonsWithNotifyClick?.get('hangup') } />
- </ContextMenu>
- </HangupMenuButton>
- : <HangupButton
- buttonKey = 'hangup'
- customClass = 'hangup-button'
- key = 'hangup-button'
- notifyMode = { buttonsWithNotifyClick.get('hangup') }
- visible = { isButtonEnabled('hangup', toolbarButtonsToUse) } />
- )}
- </div>
- </div>
- </div>
- </div>
- );
- }
|