react-native-video/example/index.ios.js

308 lines
8.0 KiB
JavaScript
Raw Normal View History

'use strict';
2016-02-10 04:39:54 -07:00
import React, {
2016-04-21 22:01:44 -06:00
Component
} from 'react';
import {
2016-02-10 04:39:54 -07:00
AlertIOS,
AppRegistry,
StyleSheet,
Text,
TouchableOpacity,
2016-02-10 04:39:54 -07:00
View,
} from 'react-native';
2016-02-10 04:39:54 -07:00
import Video from 'react-native-video';
class VideoPlayer extends Component {
constructor(props) {
super(props);
this.onLoad = this.onLoad.bind(this);
this.onProgress = this.onProgress.bind(this);
2017-01-11 05:51:45 -07:00
this.onBuffer = this.onBuffer.bind(this);
2016-02-10 04:39:54 -07:00
}
state = {
rate: 1,
volume: 1,
muted: false,
resizeMode: 'contain',
duration: 0.0,
currentTime: 0.0,
controls: false,
paused: true,
2017-01-11 05:51:45 -07:00
skin: 'custom',
isBuffering: false,
2016-02-10 04:39:54 -07:00
};
2016-04-12 12:31:05 -06:00
onLoad(data) {
console.log('On load fired!');
this.setState({duration: data.duration});
2016-02-10 04:39:54 -07:00
}
onProgress(data) {
this.setState({currentTime: data.currentTime});
2016-02-10 04:39:54 -07:00
}
2017-01-11 05:51:45 -07:00
onBuffer({ isBuffering }: { isBuffering: boolean }) {
this.setState({ isBuffering });
}
getCurrentTimePercentage() {
if (this.state.currentTime > 0) {
return parseFloat(this.state.currentTime) / parseFloat(this.state.duration);
} else {
return 0;
}
2016-02-10 04:39:54 -07:00
}
2015-12-22 16:39:04 -07:00
renderSkinControl(skin) {
2016-02-10 04:39:54 -07:00
const isSelected = this.state.skin == skin;
const selectControls = skin == 'native' || skin == 'embed';
2015-12-22 16:39:04 -07:00
return (
<TouchableOpacity onPress={() => { this.setState({
controls: selectControls,
skin: skin
}) }}>
<Text style={[styles.controlOption, {fontWeight: isSelected ? "bold" : "normal"}]}>
{skin}
</Text>
</TouchableOpacity>
);
2016-02-10 04:39:54 -07:00
}
2015-12-22 16:39:04 -07:00
renderRateControl(rate) {
2016-02-10 04:39:54 -07:00
const isSelected = (this.state.rate == rate);
return (
<TouchableOpacity onPress={() => { this.setState({rate: rate}) }}>
<Text style={[styles.controlOption, {fontWeight: isSelected ? "bold" : "normal"}]}>
{rate}x
</Text>
</TouchableOpacity>
)
2016-02-10 04:39:54 -07:00
}
renderResizeModeControl(resizeMode) {
2016-02-10 04:39:54 -07:00
const isSelected = (this.state.resizeMode == resizeMode);
return (
<TouchableOpacity onPress={() => { this.setState({resizeMode: resizeMode}) }}>
<Text style={[styles.controlOption, {fontWeight: isSelected ? "bold" : "normal"}]}>
{resizeMode}
</Text>
</TouchableOpacity>
)
2016-02-10 04:39:54 -07:00
}
renderVolumeControl(volume) {
2016-02-10 04:39:54 -07:00
const isSelected = (this.state.volume == volume);
return (
<TouchableOpacity onPress={() => { this.setState({volume: volume}) }}>
<Text style={[styles.controlOption, {fontWeight: isSelected ? "bold" : "normal"}]}>
{volume * 100}%
</Text>
</TouchableOpacity>
)
2016-02-10 04:39:54 -07:00
}
2015-12-22 16:39:04 -07:00
renderCustomSkin() {
2016-02-10 04:39:54 -07:00
const flexCompleted = this.getCurrentTimePercentage() * 100;
const flexRemaining = (1 - this.getCurrentTimePercentage()) * 100;
return (
<View style={styles.container}>
<TouchableOpacity style={styles.fullScreen} onPress={() => {this.setState({paused: !this.state.paused})}}>
2016-04-12 12:31:05 -06:00
<Video
source={{uri: "broadchurch"}}
style={styles.fullScreen}
rate={this.state.rate}
paused={this.state.paused}
volume={this.state.volume}
muted={this.state.muted}
resizeMode={this.state.resizeMode}
onLoad={this.onLoad}
2017-01-11 05:51:45 -07:00
onBuffer={this.onBuffer}
2016-04-12 12:31:05 -06:00
onProgress={this.onProgress}
onEnd={() => { AlertIOS.alert('Done!') }}
repeat={true}
/>
</TouchableOpacity>
<View style={styles.controls}>
2015-12-22 16:39:04 -07:00
<View style={styles.generalControls}>
<View style={styles.skinControl}>
{this.renderSkinControl('custom')}
{this.renderSkinControl('native')}
{this.renderSkinControl('embed')}
</View>
</View>
<View style={styles.generalControls}>
<View style={styles.rateControl}>
{this.renderRateControl(0.5)}
{this.renderRateControl(1.0)}
{this.renderRateControl(2.0)}
</View>
<View style={styles.volumeControl}>
{this.renderVolumeControl(0.5)}
{this.renderVolumeControl(1)}
{this.renderVolumeControl(1.5)}
</View>
<View style={styles.resizeModeControl}>
{this.renderResizeModeControl('cover')}
{this.renderResizeModeControl('contain')}
{this.renderResizeModeControl('stretch')}
</View>
</View>
<View style={styles.trackingControls}>
<View style={styles.progress}>
<View style={[styles.innerProgressCompleted, {flex: flexCompleted}]} />
<View style={[styles.innerProgressRemaining, {flex: flexRemaining}]} />
</View>
</View>
</View>
</View>
);
2016-02-10 04:39:54 -07:00
}
2015-12-22 16:39:04 -07:00
renderNativeSkin() {
2016-02-10 04:39:54 -07:00
const videoStyle = this.state.skin == 'embed' ? styles.nativeVideoControls : styles.fullScreen;
2015-12-22 16:39:04 -07:00
return (
<View style={styles.container}>
<View style={styles.fullScreen}>
2016-04-12 12:31:05 -06:00
<Video
source={{uri: "broadchurch"}}
style={videoStyle}
rate={this.state.rate}
paused={this.state.paused}
volume={this.state.volume}
muted={this.state.muted}
resizeMode={this.state.resizeMode}
onLoad={this.onLoad}
2017-01-11 05:51:45 -07:00
onBuffer={this.onBuffer}
2016-04-12 12:31:05 -06:00
onProgress={this.onProgress}
onEnd={() => { AlertIOS.alert('Done!') }}
repeat={true}
controls={this.state.controls}
/>
2015-12-22 16:39:04 -07:00
</View>
<View style={styles.controls}>
<View style={styles.generalControls}>
<View style={styles.skinControl}>
{this.renderSkinControl('custom')}
{this.renderSkinControl('native')}
{this.renderSkinControl('embed')}
</View>
</View>
<View style={styles.generalControls}>
<View style={styles.rateControl}>
{this.renderRateControl(0.5)}
{this.renderRateControl(1.0)}
{this.renderRateControl(2.0)}
</View>
<View style={styles.volumeControl}>
{this.renderVolumeControl(0.5)}
{this.renderVolumeControl(1)}
{this.renderVolumeControl(1.5)}
</View>
<View style={styles.resizeModeControl}>
{this.renderResizeModeControl('cover')}
{this.renderResizeModeControl('contain')}
{this.renderResizeModeControl('stretch')}
</View>
</View>
</View>
</View>
);
2016-02-10 04:39:54 -07:00
}
2015-12-22 16:39:04 -07:00
render() {
return this.state.controls ? this.renderNativeSkin() : this.renderCustomSkin();
}
2016-02-10 04:39:54 -07:00
}
2016-02-10 04:39:54 -07:00
const styles = StyleSheet.create({
container: {
flex: 1,
justifyContent: 'center',
alignItems: 'center',
backgroundColor: 'black',
},
fullScreen: {
position: 'absolute',
top: 0,
left: 0,
bottom: 0,
right: 0,
},
controls: {
backgroundColor: "transparent",
borderRadius: 5,
position: 'absolute',
2015-12-22 16:39:04 -07:00
bottom: 44,
left: 4,
right: 4,
},
progress: {
flex: 1,
flexDirection: 'row',
borderRadius: 3,
overflow: 'hidden',
},
innerProgressCompleted: {
height: 20,
backgroundColor: '#cccccc',
},
innerProgressRemaining: {
height: 20,
backgroundColor: '#2C2C2C',
},
generalControls: {
flex: 1,
flexDirection: 'row',
overflow: 'hidden',
paddingBottom: 10,
},
2015-12-22 16:39:04 -07:00
skinControl: {
flex: 1,
flexDirection: 'row',
justifyContent: 'center',
},
rateControl: {
flex: 1,
flexDirection: 'row',
justifyContent: 'center',
},
volumeControl: {
flex: 1,
flexDirection: 'row',
justifyContent: 'center',
},
resizeModeControl: {
flex: 1,
flexDirection: 'row',
alignItems: 'center',
2015-12-22 16:39:04 -07:00
justifyContent: 'center'
},
controlOption: {
alignSelf: 'center',
fontSize: 11,
color: "white",
paddingLeft: 2,
paddingRight: 2,
lineHeight: 12,
},
2015-12-22 16:39:04 -07:00
nativeVideoControls: {
top: 184,
height: 300
}
});
AppRegistry.registerComponent('VideoPlayer', () => VideoPlayer);