mirror of
https://gitcode.com/GitHub_Trending/ji/jitsi-meet.git
synced 2026-05-16 14:17:47 +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
571 B
TypeScript
24 lines
571 B
TypeScript
import { useSelector } from 'react-redux';
|
|
|
|
import ClosedCaptionButton from './components/web/ClosedCaptionButton';
|
|
import { canStartSubtitles } from './functions.any';
|
|
|
|
const cc = {
|
|
key: 'closedcaptions',
|
|
Content: ClosedCaptionButton,
|
|
group: 2
|
|
};
|
|
|
|
/**
|
|
* A hook that returns the CC button if it is enabled and undefined otherwise.
|
|
*
|
|
* @returns {Object | undefined}
|
|
*/
|
|
export function useClosedCaptionButton() {
|
|
const isStartSubtitlesButtonVisible = useSelector(canStartSubtitles);
|
|
|
|
if (isStartSubtitlesButtonVisible) {
|
|
return cc;
|
|
}
|
|
}
|