CourseDetails.js 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105
  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. FlatList
  16. } from "react-native";
  17. import VideoExplain from './components/VideoExplain'
  18. import CourseListRow from './components/CourseListRow'
  19. import CourseListLine from './components/CourseListLine'
  20. import Comment from './components/Comment'
  21. import Order from './components/Order'
  22. import courseDetails from './services/courseDetails'
  23. export default class CourseDetails extends Component {
  24. componentDidMount() {
  25. const { courseId } = this.props.navigation.state.params;
  26. console.log('id',courseId)
  27. courseDetails.getCourseDetails(courseId).then(res => {
  28. console.log('列表',res.data)
  29. const courseList = res.data.course;
  30. const wareList = res.data.wareList;
  31. this.setState({
  32. courseList,
  33. wareList
  34. })
  35. }).catch(err => {
  36. console.log(err)
  37. });
  38. }
  39. state = {
  40. fullStyle: {},
  41. lefts: 0,
  42. courseList: {},
  43. wareList: [],
  44. uri: 'http://chimee.org/vod/1.mp4'
  45. }
  46. render() {
  47. return (
  48. <View style={{backgroundColor: '#F0F1F5', width: '100%', height: '100%', position: 'relative'}}>
  49. <ScrollView keyboardShouldPersistTaps="handled">
  50. <View>
  51. <VideoExplain
  52. full={this.full.bind(this)}
  53. uri={ this.state.uri }
  54. dataList={ this.state.courseList }
  55. ref={view => (this.video = view)} //设置ID
  56. videoback={this.back.bind(this) }
  57. />
  58. </View>
  59. <View style={ this.state.fullStyle }>
  60. <CourseListRow title={'课件'} wareList={ this.state.wareList} changeUri={ this.changeUri.bind(this) }></CourseListRow>
  61. {/* <CourseListLine title={'课件'} wareList={ this.state.wareList}></CourseListLine> */}
  62. <Comment title={ '全部评论' } courseId= { this.state.courseList.id }></Comment>
  63. </View>
  64. </ScrollView>
  65. {/* <Order left={ this.state.lefts }></Order> */}
  66. </View>
  67. );
  68. }
  69. back(){
  70. this.props.navigation.goBack()
  71. }
  72. full(isFull){
  73. if(isFull) {
  74. // 全屏时隐藏多余的view
  75. this.setState({
  76. fullStyle: {},
  77. lefts: 0
  78. })
  79. }else {
  80. // 全屏时隐藏多余的view
  81. this.setState({
  82. fullStyle: {
  83. display: 'none'
  84. },
  85. lefts: '-100%'
  86. })
  87. }
  88. }
  89. changeUri(uri) {
  90. console.log(uri)
  91. this.setState({
  92. uri
  93. })
  94. // 开始播放
  95. this.video.start();
  96. }
  97. }
  98. const styles = StyleSheet.create({
  99. });