日历自定义组件

接上集//www.greatytc.com/p/483bdcd045e5
引用

<TouchableOpacity 
      style={{paddingHorizontal:10,paddingVertical:5,borderColor:'#08107b',borderWidth:1,borderRadius:8.5}}
     onPress={()=>{
            CalendarSelect.select(res=>{
                     if(res){}
                })
      }}
   >
        Text style={{ fontSize: 14, textAlign: 'left',color:'#08107b'}}>{ '点击选择'}</Text>
</TouchableOpacity>
/**
 * @author q
 * @description 日期选择
 */

 import React, { Component , useEffect} from 'react';
 import NavigationBar from "../../components/NavigationBar";
 import { RouterHelper } from '../../utils';
 import DeviceStorage from '../../utils/DeviceStorage';

 import { CalendarList, Agenda, LocaleConfig, Calendar} from 'react-native-calendars';
 import { View, StyleSheet,Dimensions, Text,TouchableOpacity } from 'react-native';
 import * as api from '@/api/apicommon';
 import dayjs from 'dayjs';
import { Toast } from '@ant-design/react-native';

 LocaleConfig.locales['zh'] = {
    monthNames: ['一月', '二月', '三月', '四月', '五月', '六月', '七月', '八月', '九月', '十月', '十一月', '十二月'],
    monthNamesShort: ['一月', '二月', '三月', '四月', '五月', '六月', '七月', '八月', '九月', '十月', '十一月', '十二月'],
    dayNames: ['星期日', '星期一', '星期二', '星期三', '星期四', '星期五', '星期六'],
    dayNamesShort: ['周日', '周一', '周二', '周三', '周四', '周五', '周六'],
    today: '今天'
  };
  
LocaleConfig.defaultLocale = 'zh';
let monthChage = true;
let currentMonths = '';

const {width, height} = Dimensions.get('screen');
 
export default class CalendarSelect extends Component<any> {
 
    callback = (data: any) => { }

    static select(callback: (data: any) => void) {
        RouterHelper.navigate('CalendarSelect', { callback })
    }

    static hide() {
        RouterHelper.back()
    }

    state = {
        show: false,
        initVal: "",
        selectDate:'',
        selectTime:'',
        //  currentMonth:new Date().getMonth(),
        selectedDate: new Date(), // 初始日期  
        currentMonth: new Date(), // 当前显示的月份  
        markedDates:{
            "2024-04-04": { markingType:'dot',marked:true, 
                customStyles:{container:{backgroundColor:'#fff',width:50,height:50},text:{color:'red'}},
            },
            '2024-04-05': { markingType:'dot',marked:true, 
                customStyles:{container:{backgroundColor:'#fff',width:50,height:50},text:{color:'red'}},
            },
            '2024-04-06': { markingType:'dot',marked:true, 
                customStyles:{container:{backgroundColor:'#fff',width:50,height:50},text:{color:'red'}},
            },
            '2024-05-01': { markingType:'dot',marked:true, 
                customStyles:{container:{backgroundColor:'#fff',width:50,height:50},text:{color:'red'}},
            },
            '2024-05-02': { markingType:'dot',marked:true, 
                customStyles:{container:{backgroundColor:'#fff',width:50,height:50},text:{color:'red'}},
            },
            '2024-05-03': { markingType:'dot',marked:true, 
                customStyles:{container:{backgroundColor:'#fff',width:50,height:50},text:{color:'red'}},
            },
            '2024-05-04': { markingType:'dot',marked:true, 
                customStyles:{container:{backgroundColor:'#fff',width:50,height:50},text:{color:'red'}},
            },
            '2024-05-05': { markingType:'dot',marked:true, 
                customStyles:{container:{backgroundColor:'#fff',width:50,height:50},text:{color:'red'}},
            },
            // '2024-05-01': { markingType:'dot', dotColor: 'blue',marked:true,selected: true},
        }
    }

    // 当按钮被点击时,更改月份  
    changeMonth = (month) => {  
        const newDate = new Date(month);  
        this.setState({ currentMonth: newDate });
    };
 
    componentDidMount() {
        this.callback = this.props.navigation.getParam("callback");
        currentMonths = dayjs(new Date()).format('YYYY-MM');
        //  XLoading.show()
        this.setState({
            show:true,
        })
        try {
            DeviceStorage.get("CalendarSelect")
            .then(res=>{
                if(res){
                    this.setState({
                        form : res
                    })
                }
            })
            this.getHoliday()
        } catch (error) {console.log(error)}
        
    }

    getHoliday=()=>{
        api.getData('/appointment/getNoWork')
        .then(res => {
            console.log("/appointment/getNoWork>>>>>>>>",JSON.stringify(res))
            if(res.code == 200 && res.data){
                let markedDatesList = {}
                res.data.map((item, index)=>{
                    markedDatesList[item] = { markingType:'dot',marked:true, 
                        customStyles:{container:{backgroundColor:'#fff',width:50,height:50},text:{color:'red'}},
                    }
                })
                this.setState({
                    markedDates:markedDatesList
                })
                console.log('sd>>>>>>>>',markedDatesList)
            }
        })
    }

    _onPress = (day) => {
        // success
        CalendarSelect.hide()
        this.props.navigation.state.params.callback(day)
    }

     // 日历 start

    handleDayPress = (day) => {
        console.log('selected day', day, day.timestamp);
        // 你可以在这里更新 markedDates 或执行其他操作
        if(this.state.markedDates.hasOwnProperty(day.dateString)){
            // return alert ("休日不建议选择")
            return Toast.info("休息日不建议选择",1) // 停留1秒
        }
        this.setState({
            selectDate: day.dateString
        },()=>{
            this._onPress(day.dateString)
            // if(this.state.selectDate != '' && this.state.selectTime != ''){
            //     this._onPress(day.dateString + "|" + this.state.selectTime)
            // }else{
            //     return alert ("请选择上午还是下午")
            // }
        })
    };

    handleTimePress = (time)=>{
        this.setState({
            selectTime: time
        },()=>{
            if(this.state.selectDate != '' && this.state.selectTime != ''){
                this._onPress(this.state.selectDate + "|" + time)
            }else{
                return alert ("请选择日期")
            }
        })
    }

    handleMonthChange = (month) => {
        currentMonths = month.dateString;
        console.log('month changed>>>', month, currentMonths);
    };

    // 更新当前显示的月份  
    updateCurrentMonth = (month) => { 
        if(monthChage) {
            monthChage = false;
            this.setState({ currentMonth: month },()=>{
                monthChage = true
            });
        } 
    };
    // 通过按钮选择月份  
    onButtonPress = (offsetMonths) => {  
        const currentMonth = new Date(currentMonths);
        currentMonth.setMonth(currentMonth.getMonth() + offsetMonths);  
        currentMonths = currentMonth.toString();
        this.updateCurrentMonth(currentMonth);  
    }; 
    // 日历 end
 
     render() {
        const { currentMonth } = this.state;
        return <View style={{ flex: 1, backgroundColor: '#f8f8f8'}}>
            <NavigationBar title="时间选择" />
            <CalendarList
                firstDay={1}
                current={currentMonth}
                // dayComponent = {renderDayComponent}
                monthFormat={'yyyy年MM月'}
                // minDate={new Date().toISOString().split('T')[0]}
                // calendarHeight={height}
                calendarWidth={width}
                horizontal={true}
                pagingEnabled={true}
                markedDates={this.state.markedDates}
                markingType='custom'
                onDayPress={this.handleDayPress}
                onMonthChange={this.handleMonthChange}
                // showScrollIndicator={true}
            />
            {/* <View style={{flexDirection:'row',justifyContent:'space-around',marginTop:20}}>
                <TouchableOpacity
                    onPress={()=>{
                        this.handleTimePress('上午')
                    }}
                >
                    <Text style={styles.fontStyles}>上午</Text>
                </TouchableOpacity>
                <TouchableOpacity
                    onPress={()=>{
                        this.handleTimePress('下午')
                    }}
                >
                    <Text style={styles.fontStyles}>下午</Text>
                </TouchableOpacity>
            </View> */}
            <View style={{flexDirection:'row',justifyContent:'space-around',marginTop:20}}>
                <TouchableOpacity
                    onPress={() => this.onButtonPress(-1)}
                >
                    <Text style={styles.fontStyles}>上个月</Text>
                </TouchableOpacity>
                <TouchableOpacity
                    onPress={() => this.onButtonPress(+1)}
                >
                    <Text style={styles.fontStyles}>下个月</Text>
                </TouchableOpacity>
            </View>
         </View>
     }
 }

 const styles = StyleSheet.create({
    item: {
        flexDirection: 'row',
        marginLeft: 14.5,
        marginRight: 15.5,
        borderRadius: 12.5,
        paddingHorizontal: 10,
        paddingVertical: 9.5,
        marginBottom: 15,
        justifyContent: 'space-between'
    },
    textStyle: {
          borderColor:'#08107b',
          paddingVertical:8,
          paddingHorizontal:40,
          borderWidth:1,
          borderRadius:12.5,
          color:'#fff',
          fontSize:16,
          backgroundColor: '#08107B'
      },
    send_btn: {
        justifyContent:'center',
        marginVertical:20,
        alignContent:'center',
        alignItems:'center'
    },
    fontStyles:{
        fontSize:16,
        textAlign:'center',
        padding:10
    }
  })
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 214,588评论 6 496
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 91,456评论 3 389
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 160,146评论 0 350
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 57,387评论 1 288
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 66,481评论 6 386
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 50,510评论 1 293
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 39,522评论 3 414
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 38,296评论 0 270
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 44,745评论 1 307
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 37,039评论 2 330
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 39,202评论 1 343
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 34,901评论 5 338
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 40,538评论 3 322
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 31,165评论 0 21
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 32,415评论 1 268
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 47,081评论 2 365
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 44,085评论 2 352

推荐阅读更多精彩内容