PersonalInfo.js 21 KB

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