PersonalInfo.js 16 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627
  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 ChosePhoto from "./ChosePhoto";
  27. import RegionModal from "./RegionModal";
  28. import Header from "./Header";
  29. import PersonalInfoDialog from "./PersonalInfoDialog";
  30. type Props = {};
  31. export default class PersonalInfo extends BasePage {
  32. state = {
  33. nickName: "初始昵称",
  34. schoolName: "未设置",
  35. cisys: "所在地区"
  36. };
  37. updateState(data) {
  38. this.setState(data);
  39. }
  40. render() {
  41. return (
  42. <View style={{ flex: 1 }}>
  43. <PersonalInfoDialog
  44. ref={view => (this.dialog = view)}
  45. updateParentState={this.updateState.bind(this)}
  46. />
  47. <ChosePhoto ref={view => (this.chosephoto = view)} />
  48. <RegionModal
  49. ref={view => (this.regionmodal = view)}
  50. cityscommit={this.cityscommit.bind(this)}
  51. />
  52. <StatusBar
  53. backgroundColor={"transparent"}
  54. barStyle={"dark-content"}
  55. backgroundColor={"white"}
  56. translucent={false}
  57. />
  58. <View
  59. style={{
  60. flex: 1,
  61. flexDirection: "column"
  62. }}
  63. >
  64. <ImageBackground
  65. source={require("../images/userInfo/top.png")}
  66. style={{
  67. flex: 5,
  68. width: "100%",
  69. backgroundColor: "#F0F1F5",
  70. height: "73%"
  71. }}
  72. imageStyle={{ resizeMode: "contain" }}
  73. >
  74. <View
  75. style={{
  76. flex: 1,
  77. alignItems: "center",
  78. justifyContent: "center",
  79. flexDirection: "column"
  80. }}
  81. >
  82. <CourseTitle
  83. style={{ flex: 1 }}
  84. width={this.getWindowWidth()}
  85. title="个人信息"
  86. backPress={() => this.goBack()}
  87. lefttype={2}
  88. righttype={0}
  89. textcolor={"white"}
  90. backPress={() => this.goBack()}
  91. />
  92. <TouchableOpacity
  93. style={{
  94. flex: 1,
  95. backgroundColor: "white",
  96. width: "90%",
  97. alignItems: "center",
  98. justifyContent: "center",
  99. borderRadius: 20,
  100. overflow: "hidden"
  101. }}
  102. activeOpacity={1}
  103. onPress={() => this.arrowpress(0)}
  104. >
  105. <View
  106. style={{
  107. flex: 1,
  108. borderRadius: 20,
  109. overflow: "hidden",
  110. alignItems: "center",
  111. justifyContent: "center",
  112. flexDirection: "row"
  113. }}
  114. >
  115. <View style={{ flex: 0.5 }} />
  116. <View
  117. style={{
  118. flex: 3,
  119. height: "100%",
  120. alignItems: "center",
  121. justifyContent: "center"
  122. }}
  123. >
  124. <Image
  125. style={{
  126. borderRadius: 50,
  127. width: "100%",
  128. height: "78%",
  129. borderWidth: 3,
  130. borderColor: "red"
  131. }}
  132. source={{
  133. uri:
  134. "https://timgsa.baidu.com/timg?image&quality=80&size=b9999_10000&sec=1556277324856&di=dc1548a0c5ba10481af922e174912937&imgtype=0&src=http%3A%2F%2Fwww.51pptmoban.com%2Fd%2Ffile%2F2012%2F05%2F12%2F82c4568a90055adcf8fbb896f0841c69.jpg"
  135. }}
  136. />
  137. </View>
  138. <View
  139. style={{
  140. flex: 9,
  141. backgroundColor: "white",
  142. height: "100%",
  143. justifyContent: "center"
  144. }}
  145. >
  146. <Text style={{ left: 10, color: "black", fontSize: 20 }}>
  147. 修改头像
  148. </Text>
  149. </View>
  150. <View
  151. style={{
  152. flex: 1.5,
  153. alignItems: "center",
  154. height: "56%",
  155. justifyContent: "center"
  156. }}
  157. >
  158. {this.getArraowImg(0)}
  159. </View>
  160. </View>
  161. </TouchableOpacity>
  162. </View>
  163. </ImageBackground>
  164. <View
  165. style={{
  166. width: "100%",
  167. flex: 8,
  168. alignItems: "center",
  169. justifyContent: "center",
  170. backgroundColor: "#F0F1F5"
  171. }}
  172. >
  173. <View
  174. style={{
  175. backgroundColor: "rgba(242, 242, 242, 1)",
  176. width: "90%",
  177. alignItems: "center",
  178. justifyContent: "center",
  179. height: "90%",
  180. overflow: "hidden",
  181. borderRadius: 20
  182. }}
  183. >
  184. {this.userInfo123()}
  185. </View>
  186. </View>
  187. {/* <View
  188. style={{
  189. width: "100%",
  190. alignItems: "center",
  191. justifyContent: "center",
  192. flex: 4.1,
  193. backgroundColor: "#F0F1F5"
  194. }}
  195. >
  196. <View
  197. style={{
  198. backgroundColor: "#F3F3F3",
  199. width: "90%",
  200. height: "90%",
  201. overflow: "hidden",
  202. borderRadius: 20
  203. }}
  204. >
  205. {this.userInfo456()}
  206. </View>
  207. </View> */}
  208. <View
  209. style={{ flex: 0.5, backgroundColor: "rgba(242, 242, 242, 1)" }}
  210. />
  211. <View
  212. style={{
  213. width: "100%",
  214. flex: 4,
  215. backgroundColor: "#F0F1F5",
  216. flexDirection: "column"
  217. }}
  218. >
  219. <View style={{ flex: 0.5 }} />
  220. <View style={{ flex: 1, flexDirection: "row" }}>
  221. <View style={{ flex: 1 }} />
  222. <View
  223. style={{
  224. flex: 7,
  225. width: "100%",
  226. height: "100%"
  227. }}
  228. >
  229. <TouchableOpacity
  230. activeOpacity={1}
  231. style={{
  232. flex: 1,
  233. width: "100%",
  234. alignItems: "center",
  235. justifyContent: "center",
  236. height: "100%"
  237. }}
  238. onPress={() => this.logout()}
  239. >
  240. <ImageBackground
  241. source={require("../images/userInfo/logoutbg1.png")}
  242. style={{
  243. flex: 1,
  244. width: "100%",
  245. resizeMode: "repeat",
  246. alignItems: "center",
  247. justifyContent: "center",
  248. height: "100%"
  249. }}
  250. imageStyle={{ resizeMode: "contain" }}
  251. >
  252. <Text
  253. style={{
  254. fontSize: 30,
  255. color: "white",
  256. width: "100%",
  257. textAlign: "center"
  258. }}
  259. >
  260. 退出登录
  261. </Text>
  262. </ImageBackground>
  263. </TouchableOpacity>
  264. <View style={{ flex: 1 }} />
  265. </View>
  266. <View style={{ flex: 1 }} />
  267. </View>
  268. </View>
  269. </View>
  270. </View>
  271. );
  272. }
  273. userInfo123() {
  274. return (
  275. <View
  276. style={{
  277. width: "100%",
  278. alignItems: "center",
  279. justifyContent: "center",
  280. height: "100%"
  281. }}
  282. >
  283. <TouchableOpacity
  284. style={styles.item}
  285. activeOpacity={1}
  286. onPress={() => this.arrowpress(1)}
  287. >
  288. <View style={styles.item}>
  289. <View
  290. style={{
  291. flex: 2,
  292. alignItems: "center",
  293. justifyContent: "center"
  294. }}
  295. >
  296. {this.choseheadericon(1)}
  297. </View>
  298. <Text style={styles.item_text}>昵称</Text>
  299. <View
  300. style={{
  301. flex: 5,
  302. alignItems: "flex-end"
  303. }}
  304. >
  305. <Text
  306. style={{
  307. flex: 1,
  308. fontSize: 16,
  309. textAlignVertical: "center"
  310. }}
  311. >
  312. {this.state.nickName}
  313. </Text>
  314. </View>
  315. <View
  316. style={{
  317. flex: 1.1,
  318. alignItems: "center",
  319. justifyContent: "center"
  320. }}
  321. >
  322. {this.getArraowImg(1)}
  323. </View>
  324. </View>
  325. </TouchableOpacity>
  326. <View style={{ flex: 0.05 }} />
  327. <TouchableOpacity
  328. style={styles.item}
  329. activeOpacity={1}
  330. onPress={() => this.arrowpress(2)}
  331. >
  332. <View style={styles.item}>
  333. <View
  334. style={{
  335. flex: 2,
  336. alignItems: "center",
  337. justifyContent: "center"
  338. }}
  339. >
  340. {this.choseheadericon(2)}
  341. </View>
  342. <Text style={styles.item_text}>生日</Text>
  343. <View
  344. style={{
  345. flex: 5,
  346. alignItems: "flex-end"
  347. }}
  348. >
  349. <Text
  350. style={{
  351. flex: 1,
  352. fontSize: 16,
  353. textAlignVertical: "center"
  354. }}
  355. >
  356. 生日。。。。
  357. </Text>
  358. </View>
  359. <View
  360. style={{
  361. flex: 1.1,
  362. alignItems: "center",
  363. justifyContent: "center"
  364. }}
  365. >
  366. {this.getArraowImg(2)}
  367. </View>
  368. </View>
  369. </TouchableOpacity>
  370. <View style={{ flex: 0.05 }} />
  371. <TouchableOpacity
  372. style={styles.item}
  373. activeOpacity={1}
  374. onPress={() => this.arrowpress(3)}
  375. >
  376. <View style={styles.item}>
  377. <View
  378. style={{
  379. flex: 2,
  380. alignItems: "center",
  381. justifyContent: "center"
  382. }}
  383. >
  384. {this.choseheadericon(3)}
  385. </View>
  386. <Text style={styles.item_text}>所在地区</Text>
  387. <View
  388. style={{
  389. flex: 5,
  390. alignItems: "flex-end"
  391. }}
  392. >
  393. <Text
  394. style={{
  395. flex: 1,
  396. fontSize: 16,
  397. textAlignVertical: "center"
  398. }}
  399. >
  400. {this.state.cisys}
  401. </Text>
  402. </View>
  403. <View
  404. style={{
  405. flex: 1.1,
  406. alignItems: "center",
  407. justifyContent: "center"
  408. }}
  409. >
  410. {this.getArraowImg(3)}
  411. </View>
  412. </View>
  413. </TouchableOpacity>
  414. <View style={{ flex: 0.05 }} />
  415. <TouchableOpacity
  416. style={styles.item}
  417. activeOpacity={1}
  418. onPress={() => this.arrowpress(4)}
  419. >
  420. <View style={styles.item}>
  421. <View
  422. style={{
  423. flex: 2,
  424. alignItems: "center",
  425. justifyContent: "center"
  426. }}
  427. >
  428. {this.choseheadericon(4)}
  429. </View>
  430. <Text style={styles.item_text}>我的学校</Text>
  431. <View
  432. style={{
  433. flex: 5,
  434. alignItems: "flex-end"
  435. }}
  436. >
  437. <Text
  438. style={{
  439. flex: 1,
  440. fontSize: 16,
  441. textAlignVertical: "center"
  442. }}
  443. >
  444. {this.state.schoolName}
  445. </Text>
  446. </View>
  447. <View
  448. style={{
  449. flex: 1.1,
  450. alignItems: "center",
  451. justifyContent: "center"
  452. }}
  453. >
  454. {this.getArraowImg(4)}
  455. </View>
  456. </View>
  457. </TouchableOpacity>
  458. <View style={{ flex: 0.05 }} />
  459. <TouchableOpacity
  460. style={styles.item}
  461. activeOpacity={1}
  462. onPress={() => this.arrowpress(5)}
  463. >
  464. <View style={styles.item}>
  465. <View
  466. style={{
  467. flex: 2,
  468. alignItems: "center",
  469. justifyContent: "center"
  470. }}
  471. >
  472. {this.choseheadericon(5)}
  473. </View>
  474. <Text style={styles.item_text}>我的年级</Text>
  475. <View
  476. style={{
  477. flex: 5,
  478. alignItems: "flex-end"
  479. }}
  480. >
  481. <Text
  482. style={{
  483. flex: 1.1,
  484. fontSize: 16,
  485. textAlignVertical: "center"
  486. }}
  487. >
  488. 年级。。。
  489. </Text>
  490. </View>
  491. <View
  492. style={{
  493. flex: 1.1,
  494. alignItems: "center",
  495. justifyContent: "center"
  496. }}
  497. >
  498. {this.getArraowImg(5)}
  499. </View>
  500. </View>
  501. </TouchableOpacity>
  502. </View>
  503. );
  504. }
  505. getArraowImg(type) {
  506. return (
  507. <TouchableOpacity
  508. style={{
  509. width: "100%",
  510. height: "100%",
  511. alignItems: "center",
  512. justifyContent: "center"
  513. }}
  514. onPress={() => this.arrowpress(type)}
  515. >
  516. <Image
  517. source={require("../images/userInfo/arrow.png")}
  518. style={{
  519. width: "20%",
  520. height: "30%"
  521. }}
  522. />
  523. </TouchableOpacity>
  524. );
  525. }
  526. choseheadericon(type) {
  527. let headerpath;
  528. switch (type) {
  529. case 0:
  530. headerpath = require("../images/userInfo/headportrait.png");
  531. break;
  532. case 1:
  533. headerpath = require("../images/userInfo/nickname.png");
  534. break;
  535. case 2:
  536. headerpath = require("../images/userInfo/birthday.png");
  537. break;
  538. case 3:
  539. headerpath = require("../images/userInfo/location.png");
  540. break;
  541. case 4:
  542. headerpath = require("../images/userInfo/school.png");
  543. break;
  544. case 5:
  545. headerpath = require("../images/userInfo/grade.png");
  546. break;
  547. }
  548. // alert(headerpath);
  549. return (
  550. <Image
  551. source={headerpath}
  552. style={{
  553. width: "60%",
  554. height: "60%",
  555. resizeMode: "contain"
  556. }}
  557. />
  558. );
  559. }
  560. arrowpress(type) {
  561. switch (type) {
  562. case 0:
  563. this.chosephoto.setModalVisible(true);
  564. break;
  565. case 1:
  566. this.dialog.setInfo("修改昵称", "昵称");
  567. this.dialog.setModalVisible(true, 1);
  568. break;
  569. case 2:
  570. alert("生日");
  571. break;
  572. case 3:
  573. this.regionmodal.setModalVisible(true);
  574. break;
  575. case 4:
  576. this.dialog.setInfo("我的学校", "学校名称");
  577. this.dialog.setModalVisible(true, 2);
  578. break;
  579. case 5:
  580. alert("我的年级");
  581. break;
  582. }
  583. }
  584. logout() {
  585. alert("点击退出了");
  586. }
  587. cityscommit(provinces_name, citys_name) {
  588. this.setState({
  589. cisys: provinces_name + citys_name
  590. });
  591. }
  592. }
  593. const styles = StyleSheet.create({
  594. item: {
  595. flex: 1,
  596. width: "100%",
  597. flexDirection: "row",
  598. backgroundColor: "white"
  599. },
  600. item_text: {
  601. flex: 2,
  602. textAlignVertical: "center",
  603. color: "black",
  604. fontSize: 20
  605. }
  606. });