PersonalInfo.js 18 KB

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