React-native 日历控件即拿即用

日历控件。先上图吧


image.png

======================js文件==========================

import React from 'react';

import {
View,
StyleSheet,
Text,
Modal,
TouchableOpacity,
Dimensions,
Image,
FlatList,
} from 'react-native'
import LogUtil from "../../support/utils/LogUtil";
const {width,height} =Dimensions.get('window')
// import DatePicker from 'rt-datepicker';
import moment from 'moment';

var toYear = (moment(new Date()).format('YYYY'))
var toMonth = (moment(new Date()).format('MM'))

export default class RNCalendar_CL extends React.Component {

constructor(props){
    super(props)
    this.state = {
        modalVisible:false,
        selectedDate:'',
        dayData: [],
        month: toMonth,
        year: toYear,
        color:[],
    }
}

showModal(){
    LogUtil.log('calender:'+this.props.defaultDate);
    this.setState({modalVisible:true})
}

cancelModal(){
    this.setState({modalVisible:false})
}

dateChanged(date){
    this.setState({modalVisible:false});
    this.props.dateChanged(date);
}

// ==============================日历相关======================================

componentDidMount() {
    var dayCount = this.getDaysOfMonth(toYear, toMonth)
    var dayIn = this.getFirstDay(toYear, toMonth)
    var temp = []
    var color = []
    for (var i = 1; i < dayIn; i++) {
        temp.push(' ')
        color.push(0)
    }
    for (var i = 1; i <= dayCount; i++) {
        temp.push(i)
        color.push(0)
    }
    this.setState({
        dayData: temp,
        color:color,
    })

}



createHeaderBar = () =>{
    return(
        <View style={{
            height: 50,
            width: width,
            backgroundColor: '#FFFFFF',
            flexDirection: 'row',
            justifyContent: 'space-between',
            alignItems: 'center'
        }}>
            <TouchableOpacity
                activeOpacity={1}
                style={{marginLeft: 10}}
                onPress={this.clickPrevious}>
                {/*<Image*/}
                {/*style={{*/}
                {/*height: 30,*/}
                {/*width: 30*/}
                {/*}}*/}
                {/*source={require('../../../resource/images/waitTransferOwner/add.png')}*/}
                {/*resizeMode={'contain'}/>*/}
                <Text style={{fontSize:14,
                    color:'#9EA3AD',
                }}>上个月</Text>
            </TouchableOpacity>
            <Text style={{
                fontSize: 16,
                color:'#243047'
            }}>
                {this.state.year + '年' + this.state.month + '月'}
            </Text>
            <TouchableOpacity
                activeOpacity={1}
                style={{marginRight: 10}}
                onPress={this.clickNext}>
                {/*<Image*/}
                {/*style={{*/}
                {/*height: 30,*/}
                {/*width: 30*/}
                {/*}}*/}
                {/*source={require('../../../resource/images/waitTransferOwner/add.png')}*/}
                {/*resizeMode={'contain'}/>*/}
                <Text style={{fontSize:14,
                    color:'#9EA3AD',
                }}>下个月</Text>
            </TouchableOpacity>
        </View>
    )
}

createDayBar = () =>{
    return(
        <View style={{
            height: 40,
            width: width,
            alignItems: 'center',
            flexDirection: 'row',
        }}>
            {this.createLab()}
        </View>
    )
}

createLab = () => {
    var dateArray = ['一', '二', '三', '四', '五', '六', '七']
    var array = []
    for (var i = 1; i < 8; i++) {
        array.push(
            <View
                key={I}
                style={{
                    width: width / 7,
                    height: 40,
                    justifyContent: 'center',
                    alignItems: 'center',
                    backgroundColor: '#FFFFFF'
                }}>
                <Text style={{
                    color: '#243047',
                    fontSize: 16
                }}>
                    {dateArray[i - 1]}
                </Text>
            </View>
        )
    }
    return array
}
creatContent = () =>{
    return(
        <FlatList
            data={this.state.dayData}
            numColumns={7}
            horizontal={false}
            extraData={this.state}
            renderItem={this.renderItem}
            keyExtractor={this.keyExtractor}/>
    )
}
clickItem = (item, index) => {
    if (item == ' ') {
        return
    }
    var temp = this.state.color
    if (temp[index] == 1) {
        temp[index] = 0
    }
    else if (temp[index] == 0) {
        temp[index] = 1
    }
    this.setState({
        selectedDate:(toYear+'-'+toMonth+'-'+item),
        color:temp
    },()=>{
        LogUtil.log('我选择的日期是'+this.state.selectedDate);
        this.dateChanged(this.state.selectedDate)
    })

}



renderItem = ({item,index}) => {
    return (
        <TouchableOpacity
            activeOpacity={1}
            onPress={this.clickItem.bind(this, item, index)}>
            <View
                style={{
                    width: width / 7,
                    height: 40,
                    justifyContent: 'center',
                    alignItems: 'center',
                    borderRadius: 5,  //圆角5
                    borderWidth: 1,
                    borderColor:'white',
                    backgroundColor:(toYear+'-'+toMonth+'-'+item)===this.state.selectedDate ? '#3576F0' : 'white',

                }}>
                <Text
                    style={{color: (toYear+'-'+toMonth+'-'+item)===this.state.selectedDate ? 'white' : '#243047'}}>{item}</Text>
            </View>
        </TouchableOpacity>
    )
}

keyExtractor = (item, index) => 'Zdate' + index

getDaysOfMonth = (year, month) => {
    var day = new Date(year, month, 0)
    var dayCount = day.getDate()
    return dayCount
}

getFirstDay = (year, month) => {
    var day = new Date(year, month - 1)
    var dayCount = day.getDay()
    if (dayCount == 0) {
        dayCount = 7
    }
    return dayCount
}
clickNext = () => {
    toMonth++
    if (toMonth > 12) {
        toMonth = 1
        toYear++
    }
    this.setState({
        month: toMonth,
        year: toYear
    })

    var dayCount = this.getDaysOfMonth(toYear, toMonth)
    var dayIn = this.getFirstDay(toYear, toMonth)
    var temp = []
    var color = []
    for (var i = 1; i < dayIn; i++) {
        temp.push(' ')
        color.push(0)
    }
    for (var i = 1; i <= dayCount; i++) {
        temp.push(i)
        color.push(0)
    }
    this.setState({
        dayData: temp,
        color:color,
    })
}

clickPrevious = () => {
    toMonth--
    if (toMonth < 1) {
        toMonth = 12
        toYear--
    }
    this.setState({
        month: toMonth,
        year: toYear
    })
    var dayCount = this.getDaysOfMonth(toYear, toMonth)
    var dayIn = this.getFirstDay(toYear, toMonth)
    var temp = []
    for (var i = 1; i < dayIn; i++) {
        temp.push(' ')
    }
    for (var i = 1; i <= dayCount; i++) {
        temp.push(i)
    }
    this.setState({
        dayData: temp
    })
}

// ==============================日历相关======================================

render(){
    return <Modal animationType="fade"  //slide
                                visible={this.state.modalVisible}
                                transparent={true}
                                onRequestClose={()=>this.setState({modalVisible:false})}
    >
        <View style={styles.modalStyle}>
            <View style={styles.subView}>
                <View style={styles.canlendarStyle}>
                    {this.createHeaderBar()}
                    <View style={{
                        width: '100%',
                        height: 0.5,
                        alignSelf: 'center',
                        borderBottomWidth: 1,
                        borderBottomColor: '#dddddd',
                    }}/>
                    {this.createDayBar()}
                    {this.creatContent()}


                </View>

                {/*取消按钮*/}
                <TouchableOpacity
                    style={[styles.actionItem,this.props.itemStyle,{borderTopWidth:0,height:50,marginBottom:-5}]}
                    onPress={()=>this.setState({modalVisible:false})}>
                    <Text style={styles.actionItemTitle}>取消</Text>
                </TouchableOpacity>
            </View>
        </View>
    </Modal>
}

}

const styles = StyleSheet.create({
modalStyle:{
justifyContent:'flex-end',
alignItems:'center',
flex:1,
backgroundColor:'rgba(0,0,0,0.2)'
},
subView:{
justifyContent:'flex-end',
flexDirection: 'column',
alignItems:'center',
alignSelf:'stretch',
width:width,
backgroundColor:'#fff'

},
canlendarStyle:{
    width:width,
    height:320,
    alignItems:'center',
    justifyContent:'center',
    borderTopColor:'#cccccc',
    borderTopWidth:0.5,
    backgroundColor: 'white',
},
actionItemTitle:{
    fontSize:18,
    color:'blue',
    textAlign:'center',
},

})

======================js文件==========================
用的时候 都在同一个界面

  1. import RNCalendar_CL from "../../RNCalendar_CL";
  2.  <RNCalendar_CL
                 ref="RNCalendar_CL"
                 dateChanged={(date) => this.dateChanged(date)}
             />
    
  3. 写一个按钮 呼出日历 :
    this.refs.RNCalendar_CL.showModal();

4.当点击确定的时候:
//从日历选择日期结果回调
dateChanged = (date) => {
};
嗯 就酱

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

推荐阅读更多精彩内容