CourseDetails.js 1.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374
  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. export default class CourseDetails extends Component {
  23. state = {
  24. fullStyle: {},
  25. lefts: 0
  26. }
  27. render() {
  28. return (
  29. <View style={{backgroundColor: '#F0F1F5', width: '100%', height: '100%', position: 'relative'}}>
  30. <ScrollView>
  31. <View>
  32. <VideoExplain
  33. full={this.full.bind(this)}
  34. title={'同步辅导语文一年级下册'}
  35. details={'汉字,作为象形文字,是中华文化的载体,本课程从甲骨文开始,让孩子爱上识字爱上文字的美。了解文字…'}
  36. uri={'http://chimee.org/vod/1.mp4'}
  37. />
  38. </View>
  39. <View style={ this.state.fullStyle }>
  40. <CourseListRow title={'课件'}></CourseListRow>
  41. <CourseListLine title={'课件'}></CourseListLine>
  42. <Comment title={ '全部评论' }></Comment>
  43. </View>
  44. </ScrollView>
  45. <Order left={ this.state.lefts }></Order>
  46. </View>
  47. );
  48. }
  49. full(isFull){
  50. if(isFull) {
  51. // 全屏时隐藏多余的view
  52. this.setState({
  53. fullStyle: {},
  54. lefts: 0
  55. })
  56. }else {
  57. // 全屏时隐藏多余的view
  58. this.setState({
  59. fullStyle: {
  60. display: 'none'
  61. },
  62. lefts: '-100%'
  63. })
  64. }
  65. }
  66. }
  67. const styles = StyleSheet.create({
  68. });