Created
November 20, 2017 11:08
-
-
Save gHashTag/909fbe8438e202c3bdd835aa71fc33e5 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
| 'use strict' | |
| import React, { Component } from 'react' | |
| import { | |
| AlertIOS, | |
| Platform, | |
| StyleSheet, | |
| Text, | |
| TouchableOpacity, | |
| View, | |
| } from 'react-native' | |
| import Video from 'react-native-video' | |
| export default class Contact extends Component { | |
| constructor(props) { | |
| super(props) | |
| this.onLoad = this.onLoad.bind(this) | |
| this.onProgress = this.onProgress.bind(this) | |
| this.onBuffer = this.onBuffer.bind(this) | |
| } | |
| state = { | |
| rate: 1, | |
| volume: 0, | |
| muted: false, | |
| resizeMode: 'cover', | |
| duration: 0.0, | |
| currentTime: 8.0, | |
| controls: false, | |
| paused: false, | |
| skin: 'custom', | |
| ignoreSilentSwitch: null, | |
| isBuffering: false, | |
| } | |
| onLoad(data) { | |
| console.log('On load fired!') | |
| this.setState({duration: data.duration}) | |
| } | |
| onProgress(data) { | |
| this.setState({currentTime: data.currentTime}) | |
| } | |
| onBuffer({ isBuffering }: { isBuffering: boolean }) { | |
| this.setState({ isBuffering }) | |
| } | |
| renderCustomSkin() { | |
| return ( | |
| <View style={styles.container}> | |
| <TouchableOpacity style={styles.fullScreen} onPress={() => {this.setState({paused: !this.state.paused})}}> | |
| <Video | |
| source={require('./broadchurch.mp4')} | |
| style={styles.fullScreen} | |
| rate={this.state.rate} | |
| paused={this.state.paused} | |
| volume={this.state.volume} | |
| muted={this.state.muted} | |
| ignoreSilentSwitch={this.state.ignoreSilentSwitch} | |
| resizeMode={this.state.resizeMode} | |
| onLoad={this.onLoad} | |
| onBuffer={this.onBuffer} | |
| onProgress={this.onProgress} | |
| repeat={true} | |
| /> | |
| </TouchableOpacity> | |
| </View> | |
| ) | |
| } | |
| renderNativeSkin() { | |
| const videoStyle = this.state.skin == 'embed' ? styles.nativeVideoControls : styles.fullScreen | |
| return ( | |
| <View style={styles.container}> | |
| <View style={styles.fullScreen}> | |
| <Video | |
| source={require('./broadchurch.mp4')} | |
| style={videoStyle} | |
| rate={this.state.rate} | |
| paused={this.state.paused} | |
| volume={this.state.volume} | |
| muted={this.state.muted} | |
| ignoreSilentSwitch={this.state.ignoreSilentSwitch} | |
| resizeMode={this.state.resizeMode} | |
| onLoad={this.onLoad} | |
| onBuffer={this.onBuffer} | |
| onProgress={this.onProgress} | |
| onEnd={() => { AlertIOS.alert('Done!') }} | |
| repeat={true} | |
| controls={this.state.controls} | |
| /> | |
| </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 style={styles.generalControls}> | |
| { | |
| (Platform.OS === 'ios') ? | |
| <View style={styles.ignoreSilentSwitchControl}> | |
| {this.renderIgnoreSilentSwitchControl('ignore')} | |
| {this.renderIgnoreSilentSwitchControl('obey')} | |
| </View> : null | |
| } | |
| </View> | |
| </View> | |
| </View> | |
| ) | |
| } | |
| render() { | |
| return this.state.controls ? this.renderNativeSkin() : this.renderCustomSkin() | |
| } | |
| } | |
| 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: 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, | |
| }, | |
| 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', | |
| justifyContent: 'center' | |
| }, | |
| ignoreSilentSwitchControl: { | |
| flex: 1, | |
| flexDirection: 'row', | |
| alignItems: 'center', | |
| justifyContent: 'center' | |
| }, | |
| controlOption: { | |
| alignSelf: 'center', | |
| fontSize: 11, | |
| color: "white", | |
| paddingLeft: 2, | |
| paddingRight: 2, | |
| lineHeight: 12, | |
| }, | |
| nativeVideoControls: { | |
| top: 184, | |
| height: 300 | |
| } | |
| }) | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment