BirthdayModal.js 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527
  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. TextInput,
  18. Button,
  19. StatusBar,
  20. Modal,
  21. ScrollView,
  22. TouchableHighlight,
  23. DeviceEventEmitter,
  24. findNodeHandle,
  25. UIManager
  26. } from "react-native";
  27. type Props = {};
  28. export default class BirthdayModal extends Component<Props> {
  29. state = {
  30. text_height: -1,
  31. modalVisible: false,
  32. year_type: false, //true为闰年,false为平年
  33. year_array_views: [],
  34. year_array: [],
  35. year_array_views_index: -1,
  36. month_array_views: [],
  37. month_array_views_indexs: -1,
  38. month_array: [
  39. "1",
  40. "2",
  41. "3",
  42. "4",
  43. "5",
  44. "6",
  45. "7",
  46. "8",
  47. "9",
  48. "10",
  49. "11",
  50. "12"
  51. ],
  52. day_array: [
  53. "1",
  54. "2",
  55. "3",
  56. "4",
  57. "5",
  58. "6",
  59. "7",
  60. "8",
  61. "9",
  62. "10",
  63. "11",
  64. "12",
  65. "13",
  66. "14",
  67. "15",
  68. "16",
  69. "17",
  70. "18",
  71. "19",
  72. "20",
  73. "21",
  74. "22",
  75. "23",
  76. "24",
  77. "25",
  78. "26",
  79. "27",
  80. "28",
  81. "29",
  82. "30",
  83. "31"
  84. ],
  85. day_array_views: [],
  86. day_array_views_index: -1
  87. };
  88. render() {
  89. return (
  90. <Modal
  91. animationType="slide"
  92. transparent={true}
  93. visible={this.state.modalVisible}
  94. onRequestClose={() => {
  95. this.setState({ modalVisible: false });
  96. }}
  97. >
  98. <View
  99. style={{
  100. flex: 1,
  101. flexDirection: "column"
  102. }}
  103. >
  104. <TouchableOpacity
  105. style={{
  106. flex: 3.2,
  107. backgroundColor: "rgba(0, 0, 0, 0.5)",
  108. width: "100%"
  109. }}
  110. activeOpacity={1}
  111. onPress={() =>
  112. this.setState({
  113. modalVisible: false
  114. })
  115. }
  116. />
  117. <View
  118. style={{
  119. flex: 2,
  120. backgroundColor: "white",
  121. flexDirection: "column",
  122. justifyContent: "center",
  123. alignItems: "center",
  124. width: "100%"
  125. }}
  126. >
  127. <View
  128. style={{
  129. flex: 1,
  130. flexDirection: "row",
  131. alignItems: "center",
  132. justifyContent: "center"
  133. }}
  134. >
  135. <TouchableOpacity
  136. style={{
  137. flex: 1
  138. }}
  139. activeOpacity={1}
  140. onPress={() => this.cancel()}
  141. >
  142. <View
  143. style={{
  144. flex: 1,
  145. alignItems: "center",
  146. justifyContent: "center"
  147. }}
  148. >
  149. <Text
  150. style={{
  151. fontSize: 20,
  152. color: "rgba(59, 59, 59, 1)",
  153. textAlignVertical: "center"
  154. }}
  155. >
  156. 取消
  157. </Text>
  158. </View>
  159. </TouchableOpacity>
  160. <View style={{ flex: 3.5 }} />
  161. <TouchableOpacity
  162. style={{
  163. flex: 1
  164. }}
  165. activeOpacity={1}
  166. onPress={() => this.commit()}
  167. >
  168. <View
  169. style={{
  170. flex: 1,
  171. alignItems: "center",
  172. justifyContent: "center"
  173. }}
  174. >
  175. <Text
  176. style={{
  177. fontSize: 20,
  178. color: "rgba(59, 59, 59, 1)",
  179. textAlignVertical: "center"
  180. }}
  181. >
  182. 完成
  183. </Text>
  184. </View>
  185. </TouchableOpacity>
  186. </View>
  187. <View
  188. style={{
  189. flex: 0.05,
  190. width: "90%",
  191. backgroundColor: "rgba(246, 247, 248, 1)"
  192. }}
  193. />
  194. <View
  195. style={{
  196. flex: 5,
  197. flexDirection: "row"
  198. }}
  199. >
  200. <View
  201. style={{
  202. flex: 1
  203. }}
  204. >
  205. <ScrollView
  206. style={{
  207. flex: 1
  208. }}
  209. ref={view => (this.year_scroll = view)}
  210. onLayout={() => this.year_onlayout()}
  211. showsVerticalScrollIndicator={false}
  212. >
  213. {this.create_year_item()}
  214. </ScrollView>
  215. </View>
  216. <View
  217. style={{
  218. flex: 1
  219. }}
  220. >
  221. <ScrollView
  222. ref={view => (this.month_scroll = view)}
  223. onLayout={() => this.month_onlayout()}
  224. style={{
  225. flex: 1
  226. }}
  227. showsVerticalScrollIndicator={false}
  228. >
  229. {this.create_month_item()}
  230. </ScrollView>
  231. </View>
  232. <View
  233. style={{
  234. flex: 1
  235. }}
  236. >
  237. <ScrollView
  238. ref={view => (this.day_scroll = view)}
  239. onLayout={() => this.day__onlayout()}
  240. style={{
  241. flex: 1
  242. }}
  243. showsVerticalScrollIndicator={false}
  244. >
  245. {this.create_day_item()}
  246. </ScrollView>
  247. </View>
  248. </View>
  249. </View>
  250. </View>
  251. </Modal>
  252. );
  253. }
  254. componentWillMount() {
  255. var date = new Date();
  256. var year = parseInt(this.props.year);
  257. if (this.state.year_array.length == 0) {
  258. let position = 0;
  259. for (
  260. let index = parseInt(year - 50);
  261. index < parseInt(year + 10);
  262. index++
  263. ) {
  264. if (parseInt(year) == index) {
  265. this.setState({
  266. year_array_views_index: position
  267. });
  268. }
  269. this.state.year_array.push(index);
  270. position++;
  271. }
  272. }
  273. console.log(parseInt(date.getDate()));
  274. this.setState({
  275. month_array_views_indexs: parseInt(this.props.month) - 1,
  276. day_array_views_index: parseInt(this.props.day) - 1
  277. });
  278. // var hour = date.getHours().toString();
  279. // var minute = date.getMinutes().toString();
  280. }
  281. year_onlayout() {
  282. if (this.state.year_array_views_index != -1) {
  283. this.year_scroll.scrollTo({
  284. x: 0,
  285. y: (this.state.text_height + 20) * this.state.year_array_views_index,
  286. duration: 500
  287. });
  288. }
  289. }
  290. month_onlayout() {
  291. if (this.state.month_array_views_indexs != -1) {
  292. this.month_scroll.scrollTo({
  293. x: 0,
  294. y: (this.state.text_height + 20) * this.state.month_array_views_indexs,
  295. duration: 500
  296. });
  297. }
  298. }
  299. day__onlayout() {
  300. if (this.state.day_array_views_index != -1) {
  301. this.day_scroll.scrollTo({
  302. x: 0,
  303. y: (this.state.text_height + 20) * this.state.day_array_views_index,
  304. duration: 500
  305. });
  306. }
  307. }
  308. create_year_item() {
  309. this.state.year_array_views = [];
  310. for (var i = 0; i < this.state.year_array.length; i++) {
  311. let index = i;
  312. let textstyle = null;
  313. if (this.state.year_array_views_index == i) {
  314. textstyle = styles.item_text_click;
  315. } else {
  316. textstyle = styles.item_text;
  317. }
  318. this.state.year_array_views.push(
  319. <Text
  320. style={textstyle}
  321. key={i}
  322. onPress={() => this.click_year_item(index)}
  323. onLayout={event => this.text_onLayout(event)}
  324. >
  325. {this.state.year_array[i]}年
  326. </Text>
  327. );
  328. }
  329. return this.state.year_array_views;
  330. }
  331. click_year_item(index) {
  332. this.setState({
  333. year_array_views_index: index,
  334. year_type: this.getRunYear(this.state.year_array[index])
  335. });
  336. }
  337. create_month_item() {
  338. this.state.month_array_views = [];
  339. for (var i = 0; i < this.state.month_array.length; i++) {
  340. let index = i;
  341. let textstyle = null;
  342. if (this.state.month_array_views_indexs == i) {
  343. textstyle = styles.item_text_click;
  344. } else {
  345. textstyle = styles.item_text;
  346. }
  347. this.state.month_array_views.push(
  348. <Text
  349. style={textstyle}
  350. key={i}
  351. onPress={() => this.click_month_item(index)}
  352. >
  353. {this.state.month_array[i]}月
  354. </Text>
  355. );
  356. }
  357. return this.state.month_array_views;
  358. }
  359. click_month_item(index) {
  360. this.setState({
  361. month_array_views_indexs: index
  362. });
  363. }
  364. create_day_item() {
  365. this.state.day_array_views = [];
  366. var forNum = 0;
  367. //获取月份
  368. var month_index = this.state.month_array_views_indexs;
  369. switch (month_index + 1) {
  370. case 1:
  371. case 3:
  372. case 5:
  373. case 7:
  374. case 8:
  375. case 10:
  376. case 12:
  377. //31天
  378. forNum = 31;
  379. break;
  380. case 4:
  381. case 6:
  382. case 9:
  383. case 11:
  384. //30天
  385. forNum = 30;
  386. break;
  387. case 2:
  388. //2月判断平年闰年
  389. if (
  390. this.getRunYear(
  391. this.state.year_array[this.state.year_array_views_index]
  392. )
  393. ) {
  394. //闰年2月29
  395. forNum = 29;
  396. } else {
  397. //平年2月28
  398. forNum = 28;
  399. }
  400. break;
  401. }
  402. for (var i = 0; i < forNum; i++) {
  403. //console.log(i);
  404. let index = i;
  405. let textstyle = null;
  406. if (this.state.day_array_views_index == i) {
  407. textstyle = styles.item_text_click;
  408. } else {
  409. textstyle = styles.item_text;
  410. }
  411. this.state.day_array_views.push(
  412. <Text
  413. style={textstyle}
  414. key={i}
  415. onPress={() => this.click_day_item(index)}
  416. >
  417. {this.state.day_array[i]}日
  418. </Text>
  419. );
  420. }
  421. return this.state.day_array_views;
  422. }
  423. click_day_item(index) {
  424. this.setState({
  425. day_array_views_index: index
  426. });
  427. }
  428. text_onLayout = event => {
  429. if (this.state.text_height == -1) {
  430. this.setState({
  431. text_height: event.nativeEvent.layout.height
  432. });
  433. } else {
  434. }
  435. };
  436. commit() {
  437. if (
  438. this.state.year_array_views_index == -1 ||
  439. this.state.month_array_views_indexs == -1 ||
  440. this.state.day_array_views_index == -1
  441. ) {
  442. alert("请选择完整日期");
  443. } else {
  444. var year = this.state.year_array[this.state.year_array_views_index];
  445. var month = this.state.month_array[this.state.month_array_views_indexs];
  446. var day = this.state.day_array[this.state.day_array_views_index];
  447. this.props.birthdaycommit(year, month, day);
  448. this.setModalVisible(false);
  449. }
  450. }
  451. cancel() {
  452. this.setModalVisible(false);
  453. // alert(this.getmyDate());
  454. }
  455. setModalVisible(visible) {
  456. this.setState({
  457. modalVisible: visible
  458. });
  459. }
  460. getmyDate() {
  461. var date = new Date();
  462. var year = date.getFullYear().toString();
  463. var month = (date.getMonth() + 1).toString();
  464. var day = date.getDate().toString();
  465. var hour = date.getHours().toString();
  466. var minute = date.getMinutes().toString();
  467. return year + "年" + month + "月" + day + "日" + " " + hour + ":" + minute;
  468. }
  469. getRunYear(year) {
  470. if ((year % 4 == 0 && year % 100 != 0) || year % 400 == 0) {
  471. //闰年2月29
  472. // console.log("闰年");
  473. return true;
  474. } else {
  475. //平年2月28
  476. // console.log("平年");
  477. return false;
  478. }
  479. }
  480. }
  481. const styles = StyleSheet.create({
  482. item_text: {
  483. color: "rgba(77, 77, 77, 1)",
  484. fontSize: 18,
  485. justifyContent: "center",
  486. alignItems: "center",
  487. marginTop: 20,
  488. width: "100%",
  489. textAlignVertical: "center",
  490. textAlign: "center"
  491. },
  492. item_text_click: {
  493. color: "rgba(59, 149, 243, 1)",
  494. fontSize: 18,
  495. justifyContent: "center",
  496. alignItems: "center",
  497. marginTop: 20,
  498. width: "100%",
  499. textAlignVertical: "center",
  500. textAlign: "center"
  501. }
  502. });