PersonalInfo.js 20 KB

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