60 lines
1.6 KiB
JavaScript
60 lines
1.6 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, videoStyle }) => {
|
|
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,
|
|
...videoStyle
|
|
}}
|
|
source={{
|
|
uri: chosenVideo.length ? chosenVideo[chosenVideo.length-1].link : '',
|
|
}}
|
|
useNativeControls={false}
|
|
shouldPlay={true}
|
|
resizeMode="contain"
|
|
onPlaybackStatusUpdate={status => setStatus(() => status)}
|
|
onLoad={onLoad}
|
|
/>
|
|
);
|
|
}
|
|
|
|
export default VideoPlayer;
|
|
|
|
const styles = StyleSheet.create({
|
|
video: {
|
|
alignSelf: 'center',
|
|
width: 320,
|
|
height: 200,
|
|
},
|
|
}); |