ScrollRow.js 3.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123
  1. /**
  2. * @param:
  3. * itemWidth: 每一个图片宽度
  4. * itemHeight: 每一个图片高度
  5. * data: 数据 Arrary
  6. * nav: 路由方法
  7. */
  8. import React, { Component } from "react";
  9. import {
  10. StyleSheet,
  11. Text,
  12. View,
  13. FlatList,
  14. TouchableOpacity,
  15. Image
  16. } from "react-native";
  17. import BasePage from '../BasePage'
  18. import Dimensions from '../utils/dimensions'
  19. import courseDetails from '../services/courseDetails'
  20. export default class ScrollRow extends Component {
  21. render() {
  22. return (
  23. <FlatList
  24. data={this.props.data}
  25. horizontal={true}
  26. renderItem={({ item, separators }) => this.renderItem(item, separators)}
  27. keyExtractor={(item, index) => index.toString()}
  28. showsHorizontalScrollIndicator = {false}
  29. />
  30. )
  31. }
  32. renderItem(item, separators) {
  33. const courseId = item.course ? item.course.id : item.operationContent;
  34. return (
  35. <TouchableOpacity
  36. style={{
  37. // flex: 1,
  38. height: this.props.itemHeight,
  39. width: this.props.itemWidth,
  40. flexDirection: 'row',
  41. alignItems: 'center',
  42. marginLeft: 9,
  43. }}
  44. onPress={() => this.playOrGoback(courseId, item.playUrl, item)}
  45. activeOpacity={1}
  46. >
  47. <View style={{
  48. height: this.props.itemHeight,
  49. width: this.props.itemWidth,
  50. flexDirection: 'column',
  51. alignItems: 'center',
  52. // flex: 1,
  53. }}>
  54. <Image
  55. source={{
  56. uri: item.zoneCourse ? item.zoneCourse.iconImg : item.iconImg ? item.iconImg : item.boothContent
  57. // uri: item.icon
  58. }}
  59. style={{
  60. borderRadius: 10,
  61. width: this.props.itemWidth,
  62. height: this.props.itemHeight,
  63. marginBottom: 6,
  64. }}
  65. />
  66. {item.summary
  67. ?
  68. <Text style={styles.itemSummary}>
  69. {item.summary}
  70. </Text>
  71. :
  72. item.title
  73. ?
  74. <Text style={styles.itemSummary}>
  75. {item.title}
  76. </Text>
  77. :
  78. null
  79. }
  80. </View>
  81. </TouchableOpacity>
  82. )
  83. }
  84. playOrGoback(courseId, playUrl, item) {
  85. if (this.props.type) {
  86. this.props.changeUri(playUrl)
  87. courseDetails.playLog({
  88. "title": item.title,
  89. "url": item.playUrl,
  90. courseId,
  91. "courseWareId": item.id,
  92. "playStopTime": "",
  93. "type": "LIBRARY",
  94. "platFormType": "MOBILE"
  95. }).then( res => console.log('添加播放记录', res))
  96. .catch( error => console.log(error))
  97. } else {
  98. this.props.nav('CourseDetails', {courseId})
  99. }
  100. }
  101. }
  102. const styles = StyleSheet.create({
  103. wrapper: {
  104. },
  105. itemSummary: {
  106. // flex:1,
  107. width: '100%',
  108. height: 20,
  109. alignItems: 'center',
  110. justifyContent: "flex-start",
  111. color: '#151515',
  112. fontSize: 13,
  113. }
  114. })