React-native 自定義日歷

1.需求

react native 實現(xiàn)日歷功能, 基礎(chǔ)知識可以參考 react-native中文網(wǎng)

BC54BF1C-55C7-44BF-ADC9-6B0C328EA6EE.png
  • 外部架構(gòu)及組件

需要的組件: View, TouchableOpacity, Image, Text, FlatList (0.45版本后更新了listView, 性能有待驗證)

//需要的頭部結(jié)構(gòu)
import React, {Component} from 'react'
import {
    View,
    TouchableOpacity,
    Image,
    Text,
    FlatList,
} from 'react-native'

var index = 1
var year = 2017

  • 構(gòu)造器
    constructor(props) {
        super(props)
        this.state = {
            dayData: [], //每個月的天數(shù)數(shù)組
            month: 1, //當(dāng)前月份
            year: year, // 年份
            color:[]  //選中顏色數(shù)組
        }
    }
  • render方法
 render() {
        return (
            <View style={{flex: 1,backgroundColor:'white'}}>
              {this.createHeaderBar()}
              {this.createDayBar()} 
              {this.creatContent()}
            </View>
        )
 }

 createHeaderBar = () =>{
        return(
            <View style={{
                height: 50,
                width: Constant.metric.screenWidth,
                backgroundColor: Constant.colors.Theme,
                flexDirection: 'row',
                justifyContent: 'space-between',
                alignItems: 'center'
            }}>
                <TouchableOpacity
                    activeOpacity={1}
                    style={{marginLeft: 10}}
                    onPress={this.clickPrevious}>
                    <Image
                        style={{
                            height: 30,
                            width: 30
                        }}
                        source={require('../../imgs/Profile/profile_previous.png')}
                        resizeMode={'contain'}/>
                </TouchableOpacity>
                <Text style={{
                    fontSize: 20,
                    color: Constant.colors.whiteColor
                }}>
                    {this.state.year + '年' + this.state.month + '月'}
                </Text>
                <TouchableOpacity
                    activeOpacity={1}
                    style={{marginRight: 10}}
                    onPress={this.clickNext}>
                    <Image
                        style={{
                            height: 30,
                            width: 30
                        }}
                        source={require('../../imgs/Profile/profile_next.png')}
                        resizeMode={'contain'}/>
                </TouchableOpacity>
            </View>
        )
    }

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

 creatContent = () =>{
        return(
            <FlatList
                data={this.state.dayData}
                numColumns={7}
                horizontal={false}
                extraData={this.state}
                renderItem={this.renderItem}
                keyExtractor={this.keyExtractor}/>
        )
    }

 createLab = () => {
        var dateArray = ['一', '二', '三', '四', '五', '六', '七']
        var array = []
        for (var i = 1; i < 8; i++) {
            array.push(
                <View
                    key={i}
                    style={{
                        width: Constant.metric.screenWidth / 7,
                        height: 40,
                        justifyContent: 'center',
                        alignItems: 'center',
                        backgroundColor: Constant.colors.Theme
                    }}>
                    <Text style={{
                        color: Constant.colors.whiteColor,
                        fontSize: 16
                    }}>
                        {dateArray[i - 1]}
                    </Text>
                </View>
            )
        }
        return array
    }

  • FlatList renderItem配置
renderItem = ({item,index}) => {
        return (
            <TouchableOpacity
                activeOpacity={1}
                onPress={this.clickItem.bind(this, item, index)}>
                <View
                    style={{
                        width: Constant.metric.screenWidth / 7,
                        height: 40,
                        justifyContent: 'center',
                        alignItems: 'center',
                        backgroundColor: this.state.color[index] == 1 ? Constant.colors.Theme : Constant.colors.whiteColor
                    }}>
                    <Text
                        style={{color: Constant.colors.contentOne}}>{item}</Text>
                </View>
            </TouchableOpacity>
        )
  }

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

  • 點擊方法
//下一個月
clickNext = () => {
        index++
        if (index > 12) {
            index = 1
            year++
        }
        this.setState({
            month: index,
            year: year
        })
        var dayCount = this.getDaysOfMonth(year, index)
        var dayIn = this.getFirstDay(year, index)
        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 = () => {
        index--
        if (index < 1) {
            index = 12
            year--
        }
        this.setState({
            month: index,
            year: year
        })
        var dayCount = this.getDaysOfMonth(year, index)
        var dayIn = this.getFirstDay(year, index)
        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
        })
    }
  • 計算年月日的方法
//每個月有多少天
  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
    }
  • 點擊選中顏色
 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({
            color:temp
        })
    }
  • 初始加載默認年限

    componentDidMount() {
        var dayCount = this.getDaysOfMonth(year, 1)
        var dayIn = this.getFirstDay(year, 1)
        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,
        })

    }

到此日歷就完成了 ~~~~

代碼供上,有些布局自行修改 詳細代碼

最后編輯于
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請聯(lián)系作者
  • 序言:七十年代末,一起剝皮案震驚了整個濱河市府怯,隨后出現(xiàn)的幾起案子歧胁,更是在濱河造成了極大的恐慌铛楣,老刑警劉巖验靡,帶你破解...
    沈念sama閱讀 206,602評論 6 481
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件,死亡現(xiàn)場離奇詭異则果,居然都是意外死亡岳掐,警方通過查閱死者的電腦和手機,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 88,442評論 2 382
  • 文/潘曉璐 我一進店門哮奇,熙熙樓的掌柜王于貴愁眉苦臉地迎上來膛腐,“玉大人,你說我怎么就攤上這事鼎俘≌苌恚” “怎么了?”我有些...
    開封第一講書人閱讀 152,878評論 0 344
  • 文/不壞的土叔 我叫張陵贸伐,是天一觀的道長勘天。 經(jīng)常有香客問我,道長棍丐,這世上最難降的妖魔是什么误辑? 我笑而不...
    開封第一講書人閱讀 55,306評論 1 279
  • 正文 為了忘掉前任,我火速辦了婚禮歌逢,結(jié)果婚禮上巾钉,老公的妹妹穿的比我還像新娘。我一直安慰自己秘案,他們只是感情好砰苍,可當(dāng)我...
    茶點故事閱讀 64,330評論 5 373
  • 文/花漫 我一把揭開白布。 她就那樣靜靜地躺著阱高,像睡著了一般赚导。 火紅的嫁衣襯著肌膚如雪。 梳的紋絲不亂的頭發(fā)上赤惊,一...
    開封第一講書人閱讀 49,071評論 1 285
  • 那天吼旧,我揣著相機與錄音,去河邊找鬼未舟。 笑死圈暗,一個胖子當(dāng)著我的面吹牛,可吹牛的內(nèi)容都是我干的裕膀。 我是一名探鬼主播员串,決...
    沈念sama閱讀 38,382評論 3 400
  • 文/蒼蘭香墨 我猛地睜開眼,長吁一口氣:“原來是場噩夢啊……” “哼昼扛!你這毒婦竟也來了寸齐?” 一聲冷哼從身側(cè)響起,我...
    開封第一講書人閱讀 37,006評論 0 259
  • 序言:老撾萬榮一對情侶失蹤,失蹤者是張志新(化名)和其女友劉穎渺鹦,沒想到半個月后扰法,有當(dāng)?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體,經(jīng)...
    沈念sama閱讀 43,512評論 1 300
  • 正文 獨居荒郊野嶺守林人離奇死亡毅厚,尸身上長有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點故事閱讀 35,965評論 2 325
  • 正文 我和宋清朗相戀三年迹恐,在試婚紗的時候發(fā)現(xiàn)自己被綠了。 大學(xué)時的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片卧斟。...
    茶點故事閱讀 38,094評論 1 333
  • 序言:一個原本活蹦亂跳的男人離奇死亡殴边,死狀恐怖,靈堂內(nèi)的尸體忽然破棺而出珍语,到底是詐尸還是另有隱情锤岸,我是刑警寧澤,帶...
    沈念sama閱讀 33,732評論 4 323
  • 正文 年R本政府宣布板乙,位于F島的核電站是偷,受9級特大地震影響,放射性物質(zhì)發(fā)生泄漏募逞。R本人自食惡果不足惜蛋铆,卻給世界環(huán)境...
    茶點故事閱讀 39,283評論 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一處隱蔽的房頂上張望放接。 院中可真熱鬧刺啦,春花似錦、人聲如沸纠脾。這莊子的主人今日做“春日...
    開封第一講書人閱讀 30,286評論 0 19
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽苟蹈。三九已至糊渊,卻和暖如春,著一層夾襖步出監(jiān)牢的瞬間慧脱,已是汗流浹背渺绒。 一陣腳步聲響...
    開封第一講書人閱讀 31,512評論 1 262
  • 我被黑心中介騙來泰國打工, 沒想到剛下飛機就差點兒被人妖公主榨干…… 1. 我叫王不留菱鸥,地道東北人宗兼。 一個月前我還...
    沈念sama閱讀 45,536評論 2 354
  • 正文 我出身青樓,卻偏偏與公主長得像采缚,于是被迫代替她去往敵國和親针炉。 傳聞我的和親對象是個殘疾皇子挠他,可洞房花燭夜當(dāng)晚...
    茶點故事閱讀 42,828評論 2 345

推薦閱讀更多精彩內(nèi)容