userCenter.js 7.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324
  1. /*
  2. * 个人中心页面
  3. */
  4. import React, { Component } from "react";
  5. import {
  6. Platform,
  7. StyleSheet,
  8. Text,
  9. View,
  10. Image,
  11. TouchableOpacity,
  12. ImageBackground,
  13. Button,
  14. StatusBar,
  15. Modal,
  16. TouchableHighlight,
  17. DeviceEventEmitter,
  18. ScrollView
  19. } from "react-native";
  20. import BasePage from "./BasePage";
  21. import Dimensions from "./utils/dimensions";
  22. import ShopBox from "./components/ShopBox";
  23. import TopicTitle from "./components/TopicTitle";
  24. import ScrollRow from "./components/ScrollRow";
  25. import CourseTitle from "./components/CourseTitle";
  26. import user from "./services/user";
  27. export default class userCenter extends BasePage {
  28. componentDidMount() {
  29. console.log(4444);
  30. user.userMember().then(res => {
  31. console.log("个人列表", res);
  32. // 收藏
  33. const favoritesList = res.data.favoritesList;
  34. //观看记录
  35. const playLogList = res.data.playLogList;
  36. // 用户消息
  37. const user = res.data.user;
  38. // VIP
  39. const vip = res.data.vip;
  40. this.setState({
  41. favoritesList,
  42. playLogList,
  43. user,
  44. vip
  45. });
  46. });
  47. }
  48. state = {
  49. nickName: "初始昵称",
  50. user: {},
  51. ifDiscount: true,
  52. isVIP: false,
  53. btnArr: [
  54. {
  55. title: "订单",
  56. icon: require("./images/userCenter/order.png"),
  57. goTo: "Order"
  58. },
  59. {
  60. title: "抵用券",
  61. icon: require("./images/userCenter/discount.png"),
  62. goTo: "Ticket"
  63. },
  64. {
  65. title: "客服",
  66. icon: require("./images/userCenter/service.png"),
  67. goTo: "Order"
  68. }
  69. ],
  70. shopData: [
  71. {
  72. title: "1个月",
  73. originPrice: "199",
  74. price: "49",
  75. background: require("./images/shopBox/left.png")
  76. },
  77. {
  78. title: "12个月",
  79. originPrice: "499",
  80. price: "199",
  81. background: require("./images/shopBox/right.png")
  82. }
  83. ],
  84. discount: {
  85. title: "限时秒杀",
  86. icon: require("./images/shopBox/discount.png")
  87. },
  88. favoritesList: [],
  89. playLogList: [],
  90. vip: false
  91. };
  92. renderBtn = (item, index) => {
  93. return (
  94. <TouchableOpacity
  95. key={index}
  96. onPress={() => this.goTo(`${item.goTo}`)}
  97. style={{ display: "flex", justifyContent: "space-between" }}
  98. >
  99. <View style={styles.btnItem}>
  100. <Image source={item.icon} style={styles.btnIcon} />
  101. <Text style={styles.btnTitle}>{item.title}</Text>
  102. </View>
  103. </TouchableOpacity>
  104. );
  105. };
  106. goBack() {
  107. //返回上一页
  108. this.props.navigation.goBack();
  109. }
  110. render() {
  111. return (
  112. <ScrollView
  113. style={{ height: 1100, overflow: "scroll", backgroundColor: "#fff" }}
  114. >
  115. <View style={styles.topSection}>
  116. <ImageBackground
  117. source={require("./images/userCenter/top-bg.png")}
  118. style={{ width: "100%", height: 203 }}
  119. >
  120. <StatusBar
  121. backgroundColor={"transparent"}
  122. barStyle={"dark-content"}
  123. // backgroundColor={"white"}
  124. translucent={true}
  125. hidden={false}
  126. />
  127. <View
  128. style={{
  129. height: 30,
  130. // backgroundColor: "white"
  131. marginTop: 20
  132. }}
  133. >
  134. <CourseTitle
  135. width={this.getWindowWidth()}
  136. title="个人中心"
  137. lefttype={2}
  138. righttype={2}
  139. textcolor={"#fff"}
  140. backPress={() => this.goBack()}
  141. // backgroundColor={"transparent"}
  142. // rightPress={this.showSharedDialog.bind(this)}
  143. />
  144. </View>
  145. <View style={styles.userInfo}>
  146. <TouchableOpacity onPress={this.setInfo.bind(this)}>
  147. <Image
  148. style={styles.userAvatar}
  149. source={{ uri: this.state.user.avatar }}
  150. />
  151. </TouchableOpacity>
  152. <View style={styles.userRight}>
  153. <View style={styles.userName}>
  154. <Text style={styles.userNameText}>
  155. {this.state.user.nickName}
  156. </Text>
  157. {this.state.vip ? (
  158. <Image
  159. style={styles.vipTag}
  160. source={require("./images/common/vip.png")}
  161. />
  162. ) : null}
  163. </View>
  164. {this.state.vip ? null : (
  165. <View style={styles.userName}>
  166. <Text style={styles.vipSologan}>开通vip</Text>
  167. </View>
  168. )}
  169. </View>
  170. </View>
  171. <View style={styles.btnBoxWrapper}>
  172. <View style={styles.btnBox}>
  173. {this.state.btnArr.map((item, index) =>
  174. this.renderBtn(item, index)
  175. )}
  176. </View>
  177. </View>
  178. </ImageBackground>
  179. </View>
  180. <View style={styles.discountSection}>
  181. <ShopBox
  182. data={this.state.shopData}
  183. discount={this.state.discount}
  184. nav={this.props.navigation.navigate}
  185. />
  186. </View>
  187. <View style={styles.recordSection}>
  188. <TopicTitle title={"观看记录"} ifTubeShow={true} />
  189. <ScrollRow
  190. itemWidth={106}
  191. itemHeight={153}
  192. data={this.state.playLogList}
  193. />
  194. </View>
  195. <View style={styles.collectSection}>
  196. <TopicTitle title={"我的收藏"} ifTubeShow={true} />
  197. <ScrollRow
  198. itemWidth={106}
  199. itemHeight={150}
  200. data={this.state.favoritesList}
  201. />
  202. </View>
  203. </ScrollView>
  204. );
  205. }
  206. goTo(index) {
  207. this.toNextPage(index);
  208. }
  209. setInfo() {
  210. this.props.navigation.navigate("PersonalInfo", {
  211. infoback: this.infoback.bind(this)
  212. });
  213. }
  214. infoback() {
  215. user.userMember().then(res => {
  216. console.log("个人列表", res);
  217. // 收藏
  218. const favoritesList = res.data.favoritesList;
  219. //观看记录
  220. const playLogList = res.data.playLogList;
  221. // 用户消息
  222. const user = res.data.user;
  223. // VIP
  224. const vip = res.data.vip;
  225. this.setState({
  226. favoritesList,
  227. playLogList,
  228. user,
  229. vip
  230. });
  231. });
  232. }
  233. }
  234. const styles = StyleSheet.create({
  235. topSection: {
  236. height: 250,
  237. width: Dimensions.width
  238. // backgroundColor: 'red'
  239. },
  240. userInfo: {
  241. width: Dimensions.width,
  242. height: 70,
  243. flexDirection: "row",
  244. justifyContent: "flex-start",
  245. alignItems: "center"
  246. },
  247. userAvatar: {
  248. width: 67,
  249. height: 67,
  250. borderRadius: 55,
  251. marginHorizontal: 12
  252. },
  253. userRight: {
  254. flexDirection: "column"
  255. },
  256. userName: {
  257. flexDirection: "row",
  258. alignItems: "center"
  259. },
  260. userNameText: {
  261. fontSize: 18,
  262. color: "#fff",
  263. fontWeight: "500",
  264. marginRight: 9
  265. },
  266. vipSologan: {
  267. fontSize: 14,
  268. color: "#fff"
  269. },
  270. btnBoxWrapper: {
  271. width: Dimensions.width,
  272. alignItems: "center",
  273. marginTop: 16
  274. },
  275. btnBox: {
  276. width: (Dimensions.width * 343) / 375,
  277. height: 100,
  278. borderRadius: 10,
  279. shadowColor: "#000",
  280. // shadowOffset: 1,
  281. shadowOpacity: 2,
  282. shadowRadius: 5,
  283. elevation: 4,
  284. backgroundColor: "#fff",
  285. justifyContent: "space-around",
  286. flexDirection: "row"
  287. },
  288. btnItem: {
  289. height: "100%",
  290. flexDirection: "column",
  291. justifyContent: "center",
  292. alignItems: "center"
  293. },
  294. btnIcon: {
  295. width: 36,
  296. height: 24,
  297. marginBottom: 7
  298. },
  299. btnTitle: {
  300. color: "#3f3f3f",
  301. fontSize: 16
  302. },
  303. discountSection: {
  304. width: Dimensions.width
  305. // height: 242,
  306. // backgroundColor: 'green'
  307. },
  308. recordSection: {
  309. width: Dimensions.width,
  310. height: 235
  311. // backgroundColor: 'blue'
  312. },
  313. collectSection: {
  314. width: Dimensions.width,
  315. height: 255,
  316. marginBottom: 20
  317. // backgroundColor: 'yellow'
  318. }
  319. });