PersonalInfo.js 19 KB

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