mirror of
https://gitcode.com/GitHub_Trending/ji/jitsi-meet.git
synced 2026-05-13 10:02:30 +00:00
Currently if a button in the main toolbar is not visible, the button is not replaced by another button from the overflow menu.
24 lines
585 B
TypeScript
24 lines
585 B
TypeScript
import { useSelector } from 'react-redux';
|
|
|
|
import WhiteboardButton from './components/web/WhiteboardButton';
|
|
import { isWhiteboardButtonVisible } from './functions';
|
|
|
|
const whiteboard = {
|
|
key: 'whiteboard',
|
|
Content: WhiteboardButton,
|
|
group: 3
|
|
};
|
|
|
|
/**
|
|
* A hook that returns the whiteboard button if it is enabled and undefined otherwise.
|
|
*
|
|
* @returns {Object | undefined}
|
|
*/
|
|
export function useWhiteboardButton() {
|
|
const _isWhiteboardButtonVisible = useSelector(isWhiteboardButtonVisible);
|
|
|
|
if (_isWhiteboardButtonVisible) {
|
|
return whiteboard;
|
|
}
|
|
}
|