123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527 |
- /**
- * Sample React Native App
- * https://github.com/facebook/react-native
- *
- * @format
- * @flow
- */
- import React, { Component } from "react";
- import {
- Platform,
- StyleSheet,
- Text,
- View,
- Image,
- TouchableOpacity,
- ImageBackground,
- TextInput,
- Button,
- StatusBar,
- Modal,
- ScrollView,
- TouchableHighlight,
- DeviceEventEmitter,
- findNodeHandle,
- UIManager
- } from "react-native";
- type Props = {};
- export default class BirthdayModal extends Component<Props> {
- state = {
- text_height: -1,
- modalVisible: false,
- year_type: false, //true为闰年,false为平年
- year_array_views: [],
- year_array: [],
- year_array_views_index: -1,
- month_array_views: [],
- month_array_views_indexs: -1,
- month_array: [
- "1",
- "2",
- "3",
- "4",
- "5",
- "6",
- "7",
- "8",
- "9",
- "10",
- "11",
- "12"
- ],
- day_array: [
- "1",
- "2",
- "3",
- "4",
- "5",
- "6",
- "7",
- "8",
- "9",
- "10",
- "11",
- "12",
- "13",
- "14",
- "15",
- "16",
- "17",
- "18",
- "19",
- "20",
- "21",
- "22",
- "23",
- "24",
- "25",
- "26",
- "27",
- "28",
- "29",
- "30",
- "31"
- ],
- day_array_views: [],
- day_array_views_index: -1
- };
- render() {
- return (
- <Modal
- animationType="slide"
- transparent={true}
- visible={this.state.modalVisible}
- onRequestClose={() => {
- this.setState({ modalVisible: false });
- }}
- >
- <View
- style={{
- flex: 1,
- flexDirection: "column"
- }}
- >
- <TouchableOpacity
- style={{
- flex: 3.2,
- backgroundColor: "rgba(0, 0, 0, 0.5)",
- width: "100%"
- }}
- activeOpacity={1}
- onPress={() =>
- this.setState({
- modalVisible: false
- })
- }
- />
- <View
- style={{
- flex: 2,
- backgroundColor: "white",
- flexDirection: "column",
- justifyContent: "center",
- alignItems: "center",
- width: "100%"
- }}
- >
- <View
- style={{
- flex: 1,
- flexDirection: "row",
- alignItems: "center",
- justifyContent: "center"
- }}
- >
- <TouchableOpacity
- style={{
- flex: 1
- }}
- activeOpacity={1}
- onPress={() => this.cancel()}
- >
- <View
- style={{
- flex: 1,
- alignItems: "center",
- justifyContent: "center"
- }}
- >
- <Text
- style={{
- fontSize: 20,
- color: "rgba(59, 59, 59, 1)",
- textAlignVertical: "center"
- }}
- >
- 取消
- </Text>
- </View>
- </TouchableOpacity>
- <View style={{ flex: 3.5 }} />
- <TouchableOpacity
- style={{
- flex: 1
- }}
- activeOpacity={1}
- onPress={() => this.commit()}
- >
- <View
- style={{
- flex: 1,
- alignItems: "center",
- justifyContent: "center"
- }}
- >
- <Text
- style={{
- fontSize: 20,
- color: "rgba(59, 59, 59, 1)",
- textAlignVertical: "center"
- }}
- >
- 完成
- </Text>
- </View>
- </TouchableOpacity>
- </View>
- <View
- style={{
- flex: 0.05,
- width: "90%",
- backgroundColor: "rgba(246, 247, 248, 1)"
- }}
- />
- <View
- style={{
- flex: 5,
- flexDirection: "row"
- }}
- >
- <View
- style={{
- flex: 1
- }}
- >
- <ScrollView
- style={{
- flex: 1
- }}
- ref={view => (this.year_scroll = view)}
- onLayout={() => this.year_onlayout()}
- showsVerticalScrollIndicator={false}
- >
- {this.create_year_item()}
- </ScrollView>
- </View>
- <View
- style={{
- flex: 1
- }}
- >
- <ScrollView
- ref={view => (this.month_scroll = view)}
- onLayout={() => this.month_onlayout()}
- style={{
- flex: 1
- }}
- showsVerticalScrollIndicator={false}
- >
- {this.create_month_item()}
- </ScrollView>
- </View>
- <View
- style={{
- flex: 1
- }}
- >
- <ScrollView
- ref={view => (this.day_scroll = view)}
- onLayout={() => this.day__onlayout()}
- style={{
- flex: 1
- }}
- showsVerticalScrollIndicator={false}
- >
- {this.create_day_item()}
- </ScrollView>
- </View>
- </View>
- </View>
- </View>
- </Modal>
- );
- }
- componentWillMount() {
- var date = new Date();
- var year = parseInt(this.props.year);
- if (this.state.year_array.length == 0) {
- let position = 0;
- for (
- let index = parseInt(year - 50);
- index < parseInt(year + 10);
- index++
- ) {
- if (parseInt(year) == index) {
- this.setState({
- year_array_views_index: position
- });
- }
- this.state.year_array.push(index);
- position++;
- }
- }
- console.log(parseInt(date.getDate()));
- this.setState({
- month_array_views_indexs: parseInt(this.props.month) - 1,
- day_array_views_index: parseInt(this.props.day) - 1
- });
- // var hour = date.getHours().toString();
- // var minute = date.getMinutes().toString();
- }
- year_onlayout() {
- if (this.state.year_array_views_index != -1) {
- this.year_scroll.scrollTo({
- x: 0,
- y: (this.state.text_height + 20) * this.state.year_array_views_index,
- duration: 500
- });
- }
- }
- month_onlayout() {
- if (this.state.month_array_views_indexs != -1) {
- this.month_scroll.scrollTo({
- x: 0,
- y: (this.state.text_height + 20) * this.state.month_array_views_indexs,
- duration: 500
- });
- }
- }
- day__onlayout() {
- if (this.state.day_array_views_index != -1) {
- this.day_scroll.scrollTo({
- x: 0,
- y: (this.state.text_height + 20) * this.state.day_array_views_index,
- duration: 500
- });
- }
- }
- create_year_item() {
- this.state.year_array_views = [];
- for (var i = 0; i < this.state.year_array.length; i++) {
- let index = i;
- let textstyle = null;
- if (this.state.year_array_views_index == i) {
- textstyle = styles.item_text_click;
- } else {
- textstyle = styles.item_text;
- }
- this.state.year_array_views.push(
- <Text
- style={textstyle}
- key={i}
- onPress={() => this.click_year_item(index)}
- onLayout={event => this.text_onLayout(event)}
- >
- {this.state.year_array[i]}年
- </Text>
- );
- }
- return this.state.year_array_views;
- }
- click_year_item(index) {
- this.setState({
- year_array_views_index: index,
- year_type: this.getRunYear(this.state.year_array[index])
- });
- }
- create_month_item() {
- this.state.month_array_views = [];
- for (var i = 0; i < this.state.month_array.length; i++) {
- let index = i;
- let textstyle = null;
- if (this.state.month_array_views_indexs == i) {
- textstyle = styles.item_text_click;
- } else {
- textstyle = styles.item_text;
- }
- this.state.month_array_views.push(
- <Text
- style={textstyle}
- key={i}
- onPress={() => this.click_month_item(index)}
- >
- {this.state.month_array[i]}月
- </Text>
- );
- }
- return this.state.month_array_views;
- }
- click_month_item(index) {
- this.setState({
- month_array_views_indexs: index
- });
- }
- create_day_item() {
- this.state.day_array_views = [];
- var forNum = 0;
- //获取月份
- var month_index = this.state.month_array_views_indexs;
- switch (month_index + 1) {
- case 1:
- case 3:
- case 5:
- case 7:
- case 8:
- case 10:
- case 12:
- //31天
- forNum = 31;
- break;
- case 4:
- case 6:
- case 9:
- case 11:
- //30天
- forNum = 30;
- break;
- case 2:
- //2月判断平年闰年
- if (
- this.getRunYear(
- this.state.year_array[this.state.year_array_views_index]
- )
- ) {
- //闰年2月29
- forNum = 29;
- } else {
- //平年2月28
- forNum = 28;
- }
- break;
- }
- for (var i = 0; i < forNum; i++) {
- //console.log(i);
- let index = i;
- let textstyle = null;
- if (this.state.day_array_views_index == i) {
- textstyle = styles.item_text_click;
- } else {
- textstyle = styles.item_text;
- }
- this.state.day_array_views.push(
- <Text
- style={textstyle}
- key={i}
- onPress={() => this.click_day_item(index)}
- >
- {this.state.day_array[i]}日
- </Text>
- );
- }
- return this.state.day_array_views;
- }
- click_day_item(index) {
- this.setState({
- day_array_views_index: index
- });
- }
- text_onLayout = event => {
- if (this.state.text_height == -1) {
- this.setState({
- text_height: event.nativeEvent.layout.height
- });
- } else {
- }
- };
- commit() {
- if (
- this.state.year_array_views_index == -1 ||
- this.state.month_array_views_indexs == -1 ||
- this.state.day_array_views_index == -1
- ) {
- alert("请选择完整日期");
- } else {
- var year = this.state.year_array[this.state.year_array_views_index];
- var month = this.state.month_array[this.state.month_array_views_indexs];
- var day = this.state.day_array[this.state.day_array_views_index];
- this.props.birthdaycommit(year, month, day);
- this.setModalVisible(false);
- }
- }
- cancel() {
- this.setModalVisible(false);
- // alert(this.getmyDate());
- }
- setModalVisible(visible) {
- this.setState({
- modalVisible: visible
- });
- }
- getmyDate() {
- var date = new Date();
- var year = date.getFullYear().toString();
- var month = (date.getMonth() + 1).toString();
- var day = date.getDate().toString();
- var hour = date.getHours().toString();
- var minute = date.getMinutes().toString();
- return year + "年" + month + "月" + day + "日" + " " + hour + ":" + minute;
- }
- getRunYear(year) {
- if ((year % 4 == 0 && year % 100 != 0) || year % 400 == 0) {
- //闰年2月29
- // console.log("闰年");
- return true;
- } else {
- //平年2月28
- // console.log("平年");
- return false;
- }
- }
- }
- const styles = StyleSheet.create({
- item_text: {
- color: "rgba(77, 77, 77, 1)",
- fontSize: 18,
- justifyContent: "center",
- alignItems: "center",
- marginTop: 20,
- width: "100%",
- textAlignVertical: "center",
- textAlign: "center"
- },
- item_text_click: {
- color: "rgba(59, 149, 243, 1)",
- fontSize: 18,
- justifyContent: "center",
- alignItems: "center",
- marginTop: 20,
- width: "100%",
- textAlignVertical: "center",
- textAlign: "center"
- }
- });
|