BirthdayModal.js 10 KB

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