Comment.js 6.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266
  1. import React, { Component } from "react";
  2. import {
  3. StyleSheet,
  4. Text,
  5. View,
  6. Image,
  7. TextInput,
  8. TouchableOpacity
  9. } from "react-native";
  10. import courseDetails from '../services/courseDetails'
  11. export default class Comment extends Component {
  12. constructor(props) {
  13. super(props);
  14. this.state = {
  15. text: '',
  16. input: false,
  17. default: '写评论',
  18. postsList: [],
  19. postsId: ''
  20. };
  21. }
  22. componentWillReceiveProps(nextProps) {
  23. console.log('id--------', nextProps.courseId)
  24. // this.setState({
  25. // postsList: nextProps.postsList
  26. // })
  27. // courseDetails.getPostsList(nextProps.columnId).success(res => {
  28. // const postsList = res.data.list;
  29. // console.log('==========', postsList)
  30. // this.setState({
  31. // postsList,
  32. // })
  33. // }).fail(error => {
  34. // console.log('失败', error)
  35. // })
  36. courseDetails.getPostsList(nextProps.courseId).then(res => {
  37. console.log('评论列表', res)
  38. const postsList = res.data.list;
  39. console.log(postsList)
  40. this.setState({
  41. postsList,
  42. })
  43. }).catch(error => {
  44. console.log('失败', error)
  45. })
  46. }
  47. render() {
  48. return (
  49. <View style={styles.courseComment}>
  50. <View style={[styles.padding, styles.title]}>
  51. <Text style={styles.font}>{this.props.title}</Text>
  52. <TouchableOpacity onPress={() => this.comments()}>
  53. <View style={[ styles.button, styles.center ]}>
  54. <Image source={require('../images/courseDetails/comment.png')} style={styles.iconSize} />
  55. <Text>写评论</Text>
  56. </View>
  57. </TouchableOpacity>
  58. </View>
  59. {
  60. this.state.postsList.map((item, index) =>
  61. this.listRender(item, index)
  62. )
  63. }
  64. {
  65. this.state.input ?
  66. <View style={[ styles.input, this.state.fullStyle]}>
  67. <TextInput
  68. style={{height: '100%', borderColor: '#DFDFDF', borderWidth: 1, width: '90%', backgroundColor: '#fff', borderRadius: 6, padding: 0, textAlignVertical: 'top', padding: 10}}
  69. onChangeText={(text) => this.setState({text})}
  70. value={this.state.text}
  71. numberOfLines={7}
  72. multiline = {true}
  73. autoFocus = {true}
  74. defaultValue= {this.state.default}
  75. />
  76. <Text style={{ color: '#58A8FA', fontSize: 18}} onPress={() => this.send()}>发送</Text>
  77. </View>
  78. :
  79. null
  80. }
  81. </View>
  82. );
  83. }
  84. listRender(item, index) {
  85. return (
  86. <View style={[ styles.padding ]} key={ index }>
  87. <View style={[ styles.title ]}>
  88. <View style={[ styles.center ]}>
  89. <Image style={[styles.headImg ]}></Image>
  90. <View>
  91. <Text style={{ fontSize: 16, color: '#373737' }}>{item.posts.columnNames}</Text>
  92. <Text style={{ fontSize: 14, color: '#7F7F7F' } }>2019-07-05</Text>
  93. </View>
  94. </View>
  95. <TouchableOpacity onPress={() => this.comments(item.posts.id)}>
  96. <View style={[ styles.center ]}>
  97. <Image source={require('../images/courseDetails/reply.png')} style={styles.reply} />
  98. <Text>回复</Text>
  99. </View>
  100. </TouchableOpacity>
  101. </View>
  102. <View style={ styles.padding }>
  103. <Text>{item.posts.content}</Text>
  104. </View>
  105. {
  106. item.replies.map((items, indexs) =>
  107. this.repliesList(items, indexs)
  108. )
  109. }
  110. </View>
  111. )
  112. }
  113. repliesList (items, indexs) {
  114. return (
  115. <View style={[ styles.padding, styles.column ]} key={ indexs }>
  116. <Text style={ styles.color }>卡通小熊</Text>
  117. <Text>{ items.content }</Text>
  118. </View>
  119. )
  120. }
  121. comments(id) {
  122. this.setState({
  123. input: true
  124. })
  125. if (id) {
  126. this.setState({
  127. postsId: id
  128. })
  129. }
  130. }
  131. send() {
  132. const columnId = this.props.courseId;
  133. const content = this.state.text;
  134. const postsId = this.state.postsId;
  135. console.log(postsId)
  136. if (!content) {
  137. alert('请输入内容')
  138. return false
  139. }
  140. if (!postsId) {
  141. courseDetails.addCommentList({
  142. columnId,
  143. columnNames: "卡通小熊",
  144. content
  145. }).then(res => {
  146. console.log(res)
  147. if ( res.code == 200) {
  148. courseDetails.getPostsList(columnId).then(res => {
  149. const postsList = res.data.list;
  150. this.setState({
  151. input: false,
  152. postsList,
  153. text: ''
  154. })
  155. }).catch(error => {
  156. console.log('失败', error)
  157. })
  158. }
  159. }).catch( err => console.log(err))
  160. }else {
  161. courseDetails.addReplyList({
  162. postsId,
  163. content
  164. }).then(res => {
  165. console.log(res)
  166. if ( res.code == 200) {
  167. courseDetails.getPostsList(columnId).then(res => {
  168. const postsList = res.data.list;
  169. console.log('==========', postsList)
  170. this.setState({
  171. input: false,
  172. postsList,
  173. text: ''
  174. })
  175. }).catch(error => {
  176. console.log('失败', error)
  177. })
  178. }
  179. }).catch( err => console.log(err))
  180. }
  181. }
  182. }
  183. const styles = StyleSheet.create({
  184. courseComment: {
  185. width: '100%',
  186. backgroundColor: '#fff',
  187. marginTop: 8,
  188. // marginBottom: 60
  189. },
  190. padding: {
  191. paddingLeft: 20,
  192. paddingRight: 20,
  193. paddingTop: 10,
  194. paddingBottom: 10,
  195. },
  196. title: {
  197. display: 'flex',
  198. flexDirection: 'row',
  199. justifyContent: 'space-between',
  200. alignItems: 'center',
  201. },
  202. font: {
  203. fontSize: 18,
  204. color: 'black',
  205. fontWeight: 'bold',
  206. },
  207. center: {
  208. display: 'flex',
  209. flexDirection: 'row',
  210. alignItems: 'center',
  211. justifyContent: 'center',
  212. },
  213. button: {
  214. width: 98,
  215. height: 28,
  216. fontSize: 20,
  217. borderRadius: 28,
  218. color: 'black',
  219. backgroundColor: '#F0F1F5'
  220. },
  221. headImg: {
  222. width: 40,
  223. height: 40,
  224. backgroundColor: "red",
  225. marginRight: 10,
  226. borderRadius: 40
  227. },
  228. iconSize: {
  229. width: 20,
  230. height: 20,
  231. marginRight: 10
  232. },
  233. reply: {
  234. width: 16,
  235. height: 15,
  236. marginRight: 5
  237. },
  238. courseFont: {
  239. color: '#373737',
  240. fontSize: 16
  241. },
  242. column: {
  243. display: 'flex',
  244. flexDirection: 'column',
  245. backgroundColor: '#F3F6FF',
  246. borderColor: '#D8D8D8',
  247. borderBottomWidth: 1
  248. },
  249. color: {
  250. color: '#518AD1'
  251. },
  252. input: {
  253. width: '100%',
  254. height: 124,
  255. backgroundColor: '#F9F9F9',
  256. paddingLeft: 18,
  257. paddingTop: 18,
  258. paddingBottom: 18,
  259. paddingRight: 24,
  260. display: 'flex',
  261. flexDirection: 'row',
  262. justifyContent: 'space-between',
  263. alignItems: 'flex-end'
  264. }
  265. });