Files
EMI-ExpoAPP/components/VideoPlayer.js
2022-12-11 23:02:55 -05:00

57 lines
1.5 KiB
JavaScript

import * as React from 'react';
import { View, StyleSheet, Button } from 'react-native';
import { Video, AVPlaybackStatus } from 'expo-av';
import API from '../API';
import { useSnapshot } from 'valtio';
import GlobalState from '../contexts/GlobalState.js';
const VideoPlayer = ({ videosFiles, postId, poster, videoUrl }) => {
const gState = useSnapshot(GlobalState);
const viewer = gState.me;
const video = React.useRef(null);
const [status, setStatus] = React.useState({});
const [chosenVideo, setChosenVideo] = React.useState([]);
React.useEffect(()=>{
let chosenVideo = [];
if(videosFiles)
videosFiles.forEach((f) => {
if (f.rendition === 'adaptive') chosenVideo.push(f);
});
if(videoUrl) chosenVideo.push({link: videoUrl});
console.log(chosenVideo);
setChosenVideo(chosenVideo);
}, [videoUrl, postId]);
const onLoad = ()=>{
if(!viewer.data[postId]) return 0;
console.log(postId + " loaded")
video.current.setPositionAsync(viewer.data[postId].time*1000);
};
return (
<Video
ref={video}
style={styles.video}
source={{
uri: chosenVideo.length ? chosenVideo[chosenVideo.length-1].link : '',
}}
useNativeControls
shouldPlay={true}
resizeMode="contain"
onPlaybackStatusUpdate={status => setStatus(() => status)}
onLoad={onLoad}
/>
);
}
export default VideoPlayer;
const styles = StyleSheet.create({
video: {
alignSelf: 'center',
width: 320,
height: 200,
},
});