PersonalInfo.js 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479
  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. Platform,
  11. StyleSheet,
  12. Text,
  13. View,
  14. Image,
  15. TouchableOpacity,
  16. ImageBackground,
  17. Button,
  18. StatusBar,
  19. Modal,
  20. TouchableHighlight,
  21. DeviceEventEmitter
  22. } from "react-native";
  23. import AndroidUtil from "../../util/AndroidUtil";
  24. import BasePage from "../BasePage";
  25. import CourseTitle from "./CourseTitle";
  26. import Header from "./Header";
  27. import PersonalInfoDialog from "./PersonalInfoDialog";
  28. type Props = {};
  29. export default class PersonalInfo extends BasePage {
  30. state = {
  31. modalVisible: false
  32. };
  33. setModalVisible(visible) {
  34. this.setState({ modalVisible: visible });
  35. }
  36. render() {
  37. return (
  38. <View style={{ flex: 1 }}>
  39. <PersonalInfoDialog ref={view => (this.dialog = view)} />
  40. <StatusBar
  41. backgroundColor={"transparent"}
  42. barStyle={"dark-content"}
  43. backgroundColor={"white"}
  44. translucent={false}
  45. />
  46. <ImageBackground
  47. source={require("../../imgs/topbg.png")}
  48. style={{ flex: 1 }}
  49. imageStyle={{ resizeMode: "contain" }}
  50. >
  51. <View
  52. style={{
  53. flex: 1,
  54. flexDirection: "column"
  55. }}
  56. >
  57. <View
  58. style={{
  59. width: "100%",
  60. flex: 2
  61. }}
  62. >
  63. <CourseTitle
  64. width={this.getWindowWidth()}
  65. title="个人信息"
  66. backPress={() => this.goBack()}
  67. lefttype={2}
  68. textcolor={"white"}
  69. backPress={() => alert("点击左侧")}
  70. />
  71. </View>
  72. <View
  73. style={{
  74. width: "100%",
  75. flex: 3,
  76. alignItems: "center",
  77. justifyContent: "center"
  78. }}
  79. >
  80. <View
  81. style={{
  82. backgroundColor: "white",
  83. width: "90%",
  84. height: "90%",
  85. alignItems: "center",
  86. justifyContent: "center",
  87. borderRadius: 20,
  88. overflow: "hidden"
  89. }}
  90. >
  91. <Header
  92. uri="https://ss1.bdstatic.com/70cFvXSh_Q1YnxGkpoWK1HF6hhy/it/u=1295208965,3056573814&amp;fm=26&amp;gp=0.jpg"
  93. username="卡通笨笨熊"
  94. flowerNumber="123234"
  95. onPress={() => this.toNextPage("MainActivity")}
  96. />
  97. </View>
  98. </View>
  99. <View style={{ flex: 0.1 }} />
  100. <View
  101. style={{
  102. width: "100%",
  103. flex: 4.1,
  104. alignItems: "center",
  105. justifyContent: "center"
  106. }}
  107. >
  108. <View
  109. style={{
  110. backgroundColor: "#F3F3F3",
  111. width: "90%",
  112. alignItems: "center",
  113. justifyContent: "center",
  114. height: "90%",
  115. overflow: "hidden",
  116. borderRadius: 20
  117. }}
  118. >
  119. {this.userInfo123()}
  120. </View>
  121. </View>
  122. <View style={{ flex: 0.1 }} />
  123. <View
  124. style={{
  125. width: "100%",
  126. alignItems: "center",
  127. justifyContent: "center",
  128. flex: 4.1
  129. }}
  130. >
  131. <View
  132. style={{
  133. backgroundColor: "#F3F3F3",
  134. width: "90%",
  135. height: "90%",
  136. overflow: "hidden",
  137. borderRadius: 20
  138. }}
  139. >
  140. {this.userInfo456()}
  141. </View>
  142. </View>
  143. <View
  144. style={{
  145. width: "100%",
  146. flex: 4,
  147. flexDirection: "column"
  148. }}
  149. >
  150. <View style={{ flex: 0.5 }} />
  151. <View style={{ flex: 1, flexDirection: "row" }}>
  152. <View style={{ flex: 1 }} />
  153. <View
  154. style={{
  155. flex: 7,
  156. width: "100%",
  157. height: "100%"
  158. }}
  159. >
  160. <TouchableOpacity
  161. activeOpacity={1}
  162. style={{
  163. flex: 1,
  164. width: "100%",
  165. alignItems: "center",
  166. justifyContent: "center",
  167. height: "100%"
  168. }}
  169. onPress={() => this.logout()}
  170. >
  171. <ImageBackground
  172. source={require("../../imgs/logoutbg1.png")}
  173. style={{
  174. flex: 1,
  175. width: "100%",
  176. resizeMode: "repeat",
  177. alignItems: "center",
  178. justifyContent: "center",
  179. height: "100%"
  180. }}
  181. imageStyle={{ resizeMode: "contain" }}
  182. >
  183. <Text
  184. style={{
  185. fontSize: 30,
  186. color: "white",
  187. width: "100%",
  188. textAlign: "center"
  189. }}
  190. >
  191. 退出登录
  192. </Text>
  193. </ImageBackground>
  194. </TouchableOpacity>
  195. <View style={{ flex: 1 }} />
  196. </View>
  197. <View style={{ flex: 1 }} />
  198. </View>
  199. </View>
  200. </View>
  201. </ImageBackground>
  202. </View>
  203. );
  204. }
  205. userInfo123() {
  206. return (
  207. <View
  208. style={{
  209. width: "100%",
  210. alignItems: "center",
  211. justifyContent: "center",
  212. height: "100%"
  213. }}
  214. >
  215. <View style={styles.item}>
  216. <View
  217. style={{
  218. flex: 2,
  219. alignItems: "center",
  220. justifyContent: "center"
  221. }}
  222. >
  223. {this.choseheadericon(0)}
  224. </View>
  225. <Text style={styles.item_text}>头像</Text>
  226. <View
  227. style={{
  228. flex: 2,
  229. alignItems: "center",
  230. justifyContent: "center"
  231. }}
  232. >
  233. {this.getArraowImg(0)}
  234. </View>
  235. </View>
  236. <View style={{ flex: 0.05 }} />
  237. <View style={styles.item}>
  238. <View
  239. style={{
  240. flex: 2,
  241. alignItems: "center",
  242. justifyContent: "center"
  243. }}
  244. >
  245. {this.choseheadericon(1)}
  246. </View>
  247. <Text style={styles.item_text}>昵称</Text>
  248. <View
  249. style={{
  250. flex: 2,
  251. alignItems: "center",
  252. justifyContent: "center"
  253. }}
  254. >
  255. {this.getArraowImg(1)}
  256. </View>
  257. </View>
  258. <View style={{ flex: 0.05 }} />
  259. <View style={styles.item}>
  260. <View
  261. style={{
  262. flex: 2,
  263. alignItems: "center",
  264. justifyContent: "center"
  265. }}
  266. >
  267. {this.choseheadericon(2)}
  268. </View>
  269. <Text style={styles.item_text}>生日</Text>
  270. <View
  271. style={{
  272. flex: 2,
  273. alignItems: "center",
  274. justifyContent: "center"
  275. }}
  276. >
  277. {this.getArraowImg(2)}
  278. </View>
  279. </View>
  280. </View>
  281. );
  282. }
  283. userInfo456() {
  284. return (
  285. <View
  286. style={{
  287. width: "100%",
  288. alignItems: "center",
  289. justifyContent: "center",
  290. height: "100%"
  291. }}
  292. >
  293. <View style={styles.item}>
  294. <View
  295. style={{
  296. flex: 2,
  297. alignItems: "center",
  298. justifyContent: "center"
  299. }}
  300. >
  301. {this.choseheadericon(3)}
  302. </View>
  303. <Text style={styles.item_text}>所在地区</Text>
  304. <View
  305. style={{
  306. flex: 2,
  307. alignItems: "center",
  308. justifyContent: "center"
  309. }}
  310. >
  311. {this.getArraowImg(3)}
  312. </View>
  313. </View>
  314. <View style={{ flex: 0.05 }} />
  315. <View style={styles.item}>
  316. <View
  317. style={{
  318. flex: 2,
  319. alignItems: "center",
  320. justifyContent: "center"
  321. }}
  322. >
  323. {this.choseheadericon(4)}
  324. </View>
  325. <Text style={styles.item_text}>我的学校</Text>
  326. <View
  327. style={{
  328. flex: 2,
  329. alignItems: "center",
  330. justifyContent: "center"
  331. }}
  332. >
  333. {this.getArraowImg(4)}
  334. </View>
  335. </View>
  336. <View style={{ flex: 0.05 }} />
  337. <View style={styles.item}>
  338. <View
  339. style={{
  340. flex: 2,
  341. alignItems: "center",
  342. justifyContent: "center"
  343. }}
  344. >
  345. {this.choseheadericon(5)}
  346. </View>
  347. <Text style={styles.item_text}>我的年级</Text>
  348. <View
  349. style={{
  350. flex: 2,
  351. alignItems: "center",
  352. justifyContent: "center"
  353. }}
  354. >
  355. {this.getArraowImg(5)}
  356. </View>
  357. </View>
  358. </View>
  359. );
  360. }
  361. getArraowImg(type) {
  362. return (
  363. <TouchableOpacity
  364. style={{
  365. width: "100%",
  366. height: "100%",
  367. alignItems: "center",
  368. justifyContent: "center"
  369. }}
  370. onPress={() => this.arrowpress(type)}
  371. >
  372. <Image
  373. source={require("../../imgs/arrow.png")}
  374. style={{
  375. width: "20%",
  376. height: "30%"
  377. }}
  378. />
  379. </TouchableOpacity>
  380. );
  381. }
  382. choseheadericon(type) {
  383. let headerpath;
  384. switch (type) {
  385. case 0:
  386. headerpath = require("../../imgs/headportrait.png");
  387. break;
  388. case 1:
  389. headerpath = require("../../imgs/nickname.png");
  390. break;
  391. case 2:
  392. headerpath = require("../../imgs/birthday.png");
  393. break;
  394. case 3:
  395. headerpath = require("../../imgs/location.png");
  396. break;
  397. case 4:
  398. headerpath = require("../../imgs/school.png");
  399. break;
  400. case 5:
  401. headerpath = require("../../imgs/grade.png");
  402. break;
  403. }
  404. // alert(headerpath);
  405. return (
  406. <Image
  407. source={headerpath}
  408. style={{
  409. width: "60%",
  410. height: "60%",
  411. resizeMode: "contain"
  412. }}
  413. />
  414. );
  415. }
  416. arrowpress(type) {
  417. switch (type) {
  418. case 0:
  419. alert("点击头像");
  420. break;
  421. case 1:
  422. this.modalDialog();
  423. break;
  424. case 2:
  425. alert("生日");
  426. break;
  427. case 3:
  428. alert("所在地区");
  429. break;
  430. case 4:
  431. alert("我的学校");
  432. break;
  433. case 5:
  434. alert("我的年级");
  435. break;
  436. }
  437. }
  438. logout() {
  439. alert("点击退出了");
  440. }
  441. modalDialog() {
  442. this.dialog.setModalVisible(true);
  443. }
  444. }
  445. const styles = StyleSheet.create({
  446. item: {
  447. flex: 1,
  448. width: "100%",
  449. flexDirection: "row",
  450. backgroundColor: "white"
  451. },
  452. item_text: {
  453. flex: 10,
  454. marginLeft: 10,
  455. textAlignVertical: "center",
  456. color: "black",
  457. fontSize: 20
  458. }
  459. });