Created
November 9, 2020 05:24
-
-
Save artiya4u/a6d11b0dc27793705ccfc9048468fe26 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import React from 'react'; | |
import { | |
StyleSheet, | |
Text, | |
View, | |
FlatList, | |
Dimensions, | |
TouchableOpacity, | |
Image, | |
} from 'react-native'; | |
import {Video} from 'expo-av'; | |
const {height, width} = Dimensions.get('window'); | |
const cellHeight = height; | |
const cellWidth = width; | |
const viewabilityConfig = { | |
itemVisiblePercentThreshold: 80, | |
}; | |
const initialItems = [ | |
{ | |
id: 0, | |
url: | |
'http://video.artiya.me/P0BxaFCWoFk/playlist.m3u8', | |
poster: | |
'https://i.ytimg.com/vi/P0BxaFCWoFk/maxresdefault.jpg', | |
}, | |
{ | |
id: 1, | |
url: | |
'http://video.artiya.me/KRntP-q_R9s/playlist.m3u8', | |
poster: | |
'https://i.ytimg.com/vi/KRntP-q_R9s/maxresdefault.jpg', | |
}, | |
{ | |
id: 2, | |
url: | |
'http://video.artiya.me/uQHLJoXXjL8/playlist.m3u8', | |
poster: | |
'https://i.ytimg.com/vi/uQHLJoXXjL8/maxresdefault.jpg', | |
}, | |
{ | |
id: 3, | |
url: | |
'http://video.artiya.me/yW2XcfO1WxQ/playlist.m3u8', | |
poster: | |
'https://i.ytimg.com/vi/yW2XcfO1WxQ/maxresdefault.jpg', | |
}, | |
]; | |
class Item extends React.PureComponent { | |
private video: any; | |
componentWillUnmount() { | |
if (this.video) { | |
this.video.unloadAsync(); | |
} | |
} | |
async play() { | |
const status = await this.video.getStatusAsync(); | |
if (status.isPlaying) { | |
return; | |
} | |
return this.video.playAsync(); | |
} | |
pause() { | |
if (this.video) { | |
this.video.stopAsync(); | |
} | |
} | |
render() { | |
const {id, poster, url} = this.props; | |
const uri = url; | |
return ( | |
<View style={styles.cell}> | |
<Image | |
source={{ | |
uri: poster, | |
cache: 'force-cache', | |
}} | |
style={[styles.full, styles.poster]} | |
/> | |
<Video | |
ref={(ref) => { | |
this.video = ref; | |
}} | |
source={{uri}} | |
shouldPlay={false} | |
isMuted={false} | |
resizeMode='cover' | |
style={styles.full} | |
/> | |
{/*<View style={styles.overlay}>*/} | |
{/* <Text style={styles.overlayText}>Item no. {id}</Text>*/} | |
{/* <Text style={styles.overlayText}>Overlay text here</Text>*/} | |
{/*</View>*/} | |
</View> | |
); | |
} | |
} | |
export default class App extends React.PureComponent { | |
state = { | |
items: [], | |
}; | |
constructor(props) { | |
super(props); | |
this.cellRefs = {}; | |
} | |
componentDidMount() { | |
this.loadItems(); | |
setTimeout(this.loadItems, 1000); | |
setTimeout(this.loadItems, 1100); | |
setTimeout(this.loadItems, 1200); | |
setTimeout(this.loadItems, 1300); | |
} | |
_onViewableItemsChanged = (props) => { | |
const changed = props.changed; | |
changed.forEach((item) => { | |
const cell = this.cellRefs[item.key]; | |
if (cell) { | |
if (item.isViewable) { | |
cell.play(); | |
} else { | |
cell.pause(); | |
} | |
} | |
}); | |
}; | |
loadItems = () => { | |
const start = this.state.items.length; | |
const newItems = initialItems.map((item, i) => ({ | |
...item, | |
id: start + i, | |
})); | |
const items = [...this.state.items, ...newItems]; | |
this.setState({items}); | |
}; | |
_renderItem = ({item}) => { | |
return ( | |
<Item | |
ref={(ref) => { | |
this.cellRefs[item.id] = ref; | |
}} | |
{...item} | |
/> | |
); | |
}; | |
render() { | |
const {items} = this.state; | |
return ( | |
<View style={styles.container}> | |
<FlatList | |
snapToAlignment={'start'} | |
snapToInterval={height} | |
decelerationRate={'fast'} | |
pagingEnabled | |
style={{flex: 1}} | |
data={items} | |
renderItem={this._renderItem} | |
keyExtractor={(item) => item.id} | |
onViewableItemsChanged={this._onViewableItemsChanged} | |
initialNumToRender={3} | |
maxToRenderPerBatch={3} | |
windowSize={5} | |
getItemLayout={(_data, index) => ({ | |
length: cellHeight, | |
offset: cellHeight * index, | |
index, | |
})} | |
viewabilityConfig={viewabilityConfig} | |
removeClippedSubviews={true} | |
ListFooterComponent={ | |
<TouchableOpacity onPress={this.loadItems}> | |
<Text style={{padding: 30}}>Load more</Text> | |
</TouchableOpacity> | |
} | |
/> | |
</View> | |
); | |
} | |
} | |
const styles = StyleSheet.create({ | |
container: { | |
flex: 1, | |
backgroundColor: '#fff', | |
}, | |
cell: { | |
width: cellWidth - 20, | |
height: cellHeight - 20, | |
backgroundColor: '#eee', | |
borderRadius: 8, | |
overflow: 'hidden', | |
margin: 10, | |
}, | |
overlay: { | |
position: 'absolute', | |
top: 0, | |
right: 0, | |
bottom: 0, | |
left: 0, | |
backgroundColor: 'rgba(0,0,0,0.4)', | |
padding: 40, | |
}, | |
full: { | |
position: 'absolute', | |
top: 0, | |
right: 0, | |
bottom: 0, | |
left: 0, | |
}, | |
poster: { | |
resizeMode: 'cover', | |
}, | |
overlayText: { | |
color: '#fff', | |
}, | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment