PersonalInfo.js 20 KB

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