import React, {forwardRef, memo, useCallback} from 'react'; import {Indicator} from './Indicator.tsx'; import {View} from 'react-native'; import styles from '../styles.tsx'; import ToggleControl from '../ToggleControl.tsx'; import { isAndroid, isIos, samplePoster, textTracksSelectionBy, } from '../constants'; import MultiValueControl, { MultiValueControlPropType, } from '../MultiValueControl.tsx'; import { ResizeMode, SelectedTrackType, SelectedVideoTrackType, VideoDecoderProperties, VideoRef, } from 'react-native-video'; import {StateType} from '../types'; import { toast, Seeker, AudioTrackSelector, TextTrackSelector, VideoTrackSelector, TopControl, } from '../components'; type Props = { channelDown: () => void; channelUp: () => void; setState: (value: StateType) => void; state: StateType; }; const _Overlay = forwardRef((props, ref) => { const {state, setState, channelUp, channelDown} = props; const popupInfo = useCallback(() => { VideoDecoderProperties.getWidevineLevel().then((widevineLevel: number) => { VideoDecoderProperties.isHEVCSupported().then((hevc: string) => { VideoDecoderProperties.isCodecSupported('video/avc', 1920, 1080).then( (avc: string) => { toast( true, 'Widevine level: ' + widevineLevel + '\n hevc: ' + hevc + '\n avc: ' + avc, ); }, ); }); }); }, []); const toggleFullscreen = () => { setState({...state, fullscreen: !state.fullscreen}); }; const toggleControls = () => { setState({...state, showRNVControls: !state.showRNVControls}); }; const toggleDecoration = () => { setState({...state, decoration: !state.decoration}); // eslint-disable-next-line @typescript-eslint/ban-ts-comment // @ts-expect-error ref.current?.setFullScreen(!state.decoration); }; const toggleShowNotificationControls = () => { setState({ ...state, showNotificationControls: !state.showNotificationControls, }); }; const onSelectedAudioTrackChange = (itemValue: string) => { console.log('on audio value change ' + itemValue); if (itemValue === 'none') { setState({ ...state, selectedAudioTrack: { type: SelectedTrackType.DISABLED, }, }); } else { setState({ ...state, selectedAudioTrack: { type: SelectedTrackType.INDEX, value: itemValue, }, }); } }; const onSelectedTextTrackChange = (itemValue: string) => { console.log('on value change ' + itemValue); setState({ ...state, selectedTextTrack: { type: textTracksSelectionBy === 'index' ? SelectedTrackType.INDEX : SelectedTrackType.LANGUAGE, value: itemValue, }, }); }; const onSelectedVideoTrackChange = (itemValue: string) => { console.log('on value change ' + itemValue); if (itemValue === undefined || itemValue === 'auto') { setState({ ...state, selectedVideoTrack: { type: SelectedVideoTrackType.AUTO, }, }); } else { setState({ ...state, selectedVideoTrack: { type: SelectedVideoTrackType.INDEX, value: itemValue, }, }); } }; const videoSeek = (position: number) => { setState({...state, isSeeking: true}); // eslint-disable-next-line @typescript-eslint/ban-ts-comment // @ts-expect-error ref.current?.seek(position); }; const onRateSelected = (value: MultiValueControlPropType) => { if (typeof value === 'number') { setState({...state, rate: value}); } }; const onVolumeSelected = (value: MultiValueControlPropType) => { if (typeof value === 'number') { setState({...state, volume: value}); } }; const onResizeModeSelected = (value: MultiValueControlPropType) => { if (typeof value === 'object') { setState({...state, resizeMode: value}); } }; return ( <> {!state.showRNVControls ? ( <> {isAndroid ? ( { setState({...state, useCache: !state.useCache}); }} selectedText="enable cache" unselectedText="disable cache" /> ) : null} { setState({...state, paused: !state.paused}); }} selectedText="pause" unselectedText="playing" /> { setState({...state, loop: !state.loop}); }} selectedText="loop enable" unselectedText="loop disable" /> { setState({ ...state, poster: state.poster ? undefined : samplePoster, }); }} selectedText="poster" unselectedText="no poster" /> {/* shall be replaced by slider */} {/* shall be replaced by slider */} { setState({...state, muted: !state.muted}); }} text="muted" /> {isIos ? ( { // eslint-disable-next-line @typescript-eslint/ban-ts-comment // @ts-expect-error ref.current ?.save({}) ?.then((response: unknown) => { console.log('Downloaded URI', response); }) .catch((error: unknown) => { console.log('error during save ', error); }); }} text="save" /> ) : null} videoSeek(prop)} isUISeeking={state.isSeeking} /> ) : null} ); }); export const Overlay = memo(_Overlay);