VideoExplain.js 3.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174
  1. /**
  2. * Sample React Native App
  3. * https://github.com/facebook/react-native
  4. *
  5. * @format
  6. * @flow
  7. */
  8. import React, { Component } from "react";
  9. import {
  10. StyleSheet,
  11. Text,
  12. View,
  13. Image,
  14. ScrollView,
  15. StatusBar,
  16. BackHandler,
  17. FlatList
  18. } from "react-native";
  19. import Orientation from "react-native-orientation";
  20. import CusVideo from "./CusVideo";
  21. // 获取屏幕宽高
  22. import { Dimensions } from 'react-native'
  23. const { height, width } = Dimensions.get('window');
  24. export default class VideoExplain extends Component {
  25. static propTypes = {
  26. // uri: PropTypes.string,
  27. // title: PropTypes.string,
  28. // details: PropTypes.string,
  29. };
  30. state = {
  31. isFull: false,
  32. video_height: 210,
  33. statusbar_hidden: false,
  34. videoStyle: {
  35. width: "100%"
  36. }
  37. };
  38. render() {
  39. return (
  40. <View style={this.state.videoStyle}>
  41. <StatusBar
  42. // backgroundColor={"transparent"}
  43. barStyle={"dark-content"}
  44. backgroundColor={"white"}
  45. translucent={false}
  46. hidden={this.state.statusbar_hidden}
  47. />
  48. {/* <View style={{ width: "100%", height: 210 }} /> */}
  49. <CusVideo
  50. show={true} //是否显示
  51. uri={this.props.uri} //播放路径
  52. ref={view => (this.video = view)} //设置ID
  53. needback={true}
  54. videoback={() => alert("videoback")}
  55. videofullScreenPlayer={this.fullScreenPlayer.bind(this)}
  56. onError={this.onError.bind(this)}
  57. onEnd={this.onEnd.bind(this)}
  58. style={{
  59. width: "100%",
  60. height: this.state.video_height
  61. }}
  62. />
  63. <View style={styles.videoExplain}>
  64. <View style={styles.title}>
  65. <Text style={styles.font}>{this.props.title}</Text>
  66. <View style={styles.icon}>
  67. <Image src="" style={styles.iconSize} />
  68. <Image src="" style={styles.iconSize} />
  69. </View>
  70. </View>
  71. <View style={[styles.title, styles.tops]}>
  72. <Text style={styles.font}>课程介绍:</Text>
  73. <Text style={styles.clor}>更多 ></Text>
  74. </View>
  75. <Text style={styles.clor}>{this.props.details}</Text>
  76. </View>
  77. </View>
  78. );
  79. }
  80. fullScreenPlayer() {
  81. if (!this.state.isFull) {
  82. Orientation.lockToLandscape();
  83. this.setState({
  84. statusbar_hidden: true,
  85. isFull: true,
  86. video_height: "100%",
  87. videoStyle: {
  88. width: "100%",
  89. height: width
  90. }
  91. });
  92. } else {
  93. Orientation.lockToPortrait();
  94. this.setState({
  95. statusbar_hidden: false,
  96. isFull: false,
  97. video_height: 210,
  98. videoStyle: {
  99. width: "100%"
  100. }
  101. });
  102. }
  103. this.props.full(this.state.isFull);
  104. }
  105. onError() {
  106. alert("播放器异常");
  107. }
  108. onEnd() {
  109. alert("播放结束");
  110. this.video.refreshVideo();
  111. }
  112. componentWillMount() {
  113. BackHandler.addEventListener(
  114. "hardwareBackPress",
  115. this.onBackAndroid.bind(this)
  116. );
  117. }
  118. componentWillUnmount() {
  119. BackHandler.removeEventListener(
  120. "hardwareBackPress",
  121. this.onBackAndroid.bind(this)
  122. );
  123. }
  124. onBackAndroid() {
  125. if (this.state.isFull) {
  126. return true;
  127. } else {
  128. alert("返回。。。");
  129. }
  130. }
  131. }
  132. const styles = StyleSheet.create({
  133. videoExplain: {
  134. width: "100%",
  135. backgroundColor: "white",
  136. paddingLeft: 20,
  137. paddingRight: 20,
  138. paddingTop: 13,
  139. paddingBottom: 13
  140. },
  141. title: {
  142. width: "100%",
  143. display: "flex",
  144. flexDirection: "row",
  145. justifyContent: "space-between",
  146. alignItems: "center"
  147. },
  148. font: {
  149. fontSize: 18,
  150. color: "black",
  151. fontWeight: "bold"
  152. },
  153. clor: {
  154. fontSize: 14,
  155. color: "black"
  156. },
  157. icon: {
  158. display: "flex",
  159. flexDirection: "row"
  160. },
  161. iconSize: {
  162. width: 20,
  163. height: 20,
  164. backgroundColor: "red",
  165. marginLeft: 10
  166. },
  167. tops: {
  168. marginTop: 18
  169. }
  170. });