'use strict'; import React, { Component } from 'react'; import { AppRegistry, StyleSheet, Text, TouchableOpacity, View, } from 'react-native'; import Video from 'react-native-video'; class VideoPlayer extends Component { state = { rate: 1, volume: 1, muted: false, resizeMode: 'contain', duration: 0.0, currentTime: 0.0, paused: true, }; video: Video; onLoad = (data) => { this.setState({ duration: data.duration }); }; onProgress = (data) => { this.setState({ currentTime: data.currentTime }); }; onEnd = () => { this.setState({ paused: true }) this.video.seek(0) }; onAudioBecomingNoisy = () => { this.setState({ paused: true }) }; onAudioFocusChanged = (event: { hasAudioFocus: boolean }) => { this.setState({ paused: !event.hasAudioFocus }) }; getCurrentTimePercentage() { if (this.state.currentTime > 0) { return parseFloat(this.state.currentTime) / parseFloat(this.state.duration); } return 0; }; renderRateControl(rate) { const isSelected = (this.state.rate === rate); return ( { this.setState({ rate }) }}> {rate}x ); } renderResizeModeControl(resizeMode) { const isSelected = (this.state.resizeMode === resizeMode); return ( { this.setState({ resizeMode }) }}> {resizeMode} ) } renderVolumeControl(volume) { const isSelected = (this.state.volume === volume); return ( { this.setState({ volume }) }}> {volume * 100}% ) } render() { const flexCompleted = this.getCurrentTimePercentage() * 100; const flexRemaining = (1 - this.getCurrentTimePercentage()) * 100; return ( this.setState({ paused: !this.state.paused })} > {this.renderRateControl(0.25)} {this.renderRateControl(0.5)} {this.renderRateControl(1.0)} {this.renderRateControl(1.5)} {this.renderRateControl(2.0)} {this.renderVolumeControl(0.5)} {this.renderVolumeControl(1)} {this.renderVolumeControl(1.5)} {this.renderResizeModeControl('cover')} {this.renderResizeModeControl('contain')} {this.renderResizeModeControl('stretch')} ); } } 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', bottom: 20, left: 20, right: 20, }, progress: { flex: 1, flexDirection: 'row', borderRadius: 3, overflow: 'hidden', }, innerProgressCompleted: { height: 20, backgroundColor: '#cccccc', }, innerProgressRemaining: { height: 20, backgroundColor: '#2C2C2C', }, generalControls: { flex: 1, flexDirection: 'row', borderRadius: 4, overflow: 'hidden', paddingBottom: 10, }, rateControl: { flex: 1, flexDirection: 'row', justifyContent: 'center', }, volumeControl: { flex: 1, flexDirection: 'row', justifyContent: 'center', }, resizeModeControl: { flex: 1, flexDirection: 'row', alignItems: 'center', justifyContent: 'center', }, controlOption: { alignSelf: 'center', fontSize: 11, color: 'white', paddingLeft: 2, paddingRight: 2, lineHeight: 12, }, }); AppRegistry.registerComponent('VideoPlayer', () => VideoPlayer);