Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

hooks.web.ts 571B

1234567891011121314151617181920212223
  1. import { useSelector } from 'react-redux';
  2. import ClosedCaptionButton from './components/web/ClosedCaptionButton';
  3. import { canStartSubtitles } from './functions.any';
  4. const cc = {
  5. key: 'closedcaptions',
  6. Content: ClosedCaptionButton,
  7. group: 2
  8. };
  9. /**
  10. * A hook that returns the CC button if it is enabled and undefined otherwise.
  11. *
  12. * @returns {Object | undefined}
  13. */
  14. export function useClosedCaptionButton() {
  15. const isStartSubtitlesButtonVisible = useSelector(canStartSubtitles);
  16. if (isStartSubtitlesButtonVisible) {
  17. return cc;
  18. }
  19. }