react 自定義日歷組件

基于hooks開發(fā)的自定義日歷組件鸵贬,可以根據(jù)自己需要修改;


image.png

index.tsx

import React, { useState } from "react";
import Taro from "@tarojs/taro";
import { View } from "@tarojs/components";
import { AtIcon } from 'taro-ui'
import './index.scss'
/**
 *  @author wangqiang;
 *  @create 2021-02-24;
 *  @update wangqiang(2021-02-24)
 *  @params searchBar => 搜索參數(shù)搁胆;  => 列表數(shù)據(jù)
 *  @description 修改請備注 location-grey
 */

const Main = (props) => {
    //每月多少天
    let MONTH_DAYS = [31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31];
    const WEEK_NAMES = ['日', '一', '二', '三', '四', '五', '六'];
    const LINES = [1, 2, 3, 4, 5, 6];
    const [year, setLoinsYear] = useState(0);
    const [month, seLoinstMonth] = useState(0);
    const [currentDate, setcurrentDate] = useState(new Date());
    const [tag, setTag] = useState(false);
    //獲取當前月份
    const getMonth = (date: Date): number => {
        return date.getMonth();
    }
    //獲取當前年份
    const getFullYear = (date: Date): number => {
        // console.log(date.getFullYear())
        return date.getFullYear();
    }

    const getCurrentMonthDays = (month: number, year: number): number => {
        let _year = year + currentDate.getFullYear();
        if(_year % 100 != 0 && _year % 4 == 0 || _year % 400 == 0){
            MONTH_DAYS = [31, 29, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31];
        }
        return MONTH_DAYS[month]
    }
    //當前月第一天是周幾
    const getDateByYearMonth = (year: number, month: number, day: number = 1): Date => {
        var date = new Date()
        date.setFullYear(year)
        date.setMonth(month, day)
        return date
    }
    const getWeeksByFirstDay = (year: number, month: number): number => {
        var date = getDateByYearMonth(year, month)
        return date.getDay()
    }
    const getDayText = (line: number, weekIndex: number, weekDay: number, monthDays: number): any => {
        var number = line * 7 + weekIndex - weekDay + 1
        if (number <= 0 || number > monthDays) {
            return <View className="day-c" key={weekIndex}>&nbsp;</View>
        }
        return <View className="day-c" key={weekIndex}>
            <View className="day">{number}</View>
            <View className="desc">可約</View>
        </View>
    }

    const setCurrentYearMonth = (date) => {
        var month = getMonth(date)
        var year = getFullYear(date)
        setLoinsYear(year);
        seLoinstMonth(month)
        setTag(false)
    }

    const monthChange = (monthChanged: number) => {
        if (tag) {
            return;
        } else {
            setTag(true)
        }

        var monthAfter = month + monthChanged
        var date = getDateByYearMonth(year, monthAfter)
        setCurrentYearMonth(date)
    }
    const formatNumber = (num: number): string => {
        var _num = num + 1
        return _num < 10 ? `0${_num}` : `${_num}`
    }

    // let monthDays = getCurrentMonthDays(month);
    let weekDay = getWeeksByFirstDay(year, month);

    let _startX = 0;
    return <React.Fragment>
        <View className="loins-calendar"
            onTouchEnd={(val) => {
                if (_startX > val.changedTouches[0]['clientX'] + 30) {
                    monthChange(1);
                }
                if (_startX < val.changedTouches[0]['clientX'] - 30) {
                    monthChange(-1);
                }
            }} onTouchStart={(val) => {
                _startX = val.changedTouches[0]['clientX']

            }}
        >
            <View className="loins-calendar-tabbar">
                <View><AtIcon value='chevron-left' size='30' color='#297AF8' onClick={() => {
                    monthChange(-1);
                }}></AtIcon></View>
                <View className="loins-calendar-title">{year + currentDate.getFullYear()} 年 {formatNumber(month)}月</View>
                <View><AtIcon value='chevron-right' size='30' color='#297AF8' onClick={() => {
                    monthChange(1);
                }}></AtIcon></View>
            </View>
            {
                WEEK_NAMES.map((week, key) => {
                    return <View className="title-c" key={key}>{week}</View>
                })
            }
            {
                LINES.map((l, key) => {
                    return <View key={key} className="day-content">
                        {
                            WEEK_NAMES.map((week, index) => {
                                return getDayText(key, index, weekDay, getCurrentMonthDays(month, year))
                            })
                        }
                    </View>
                })
            }
        </View>
    </React.Fragment>
}
export default Main;


index.scss

.loins-calendar {
  background-color: #ffffff;
  &-tabbar {
    padding: 43px 100px 30px 100px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
  &-title {
    font-size: 36px;
    font-family: Helvetica;
    color: #333333;
    line-height: 48px;
  }
  .title-c {
    display: inline-block;
    width: calc(100% / 7);
    text-align: center;
    font-size: 30px;
    font-weight: 400;
    color: #606060;
    line-height: 40px;
  }
  width: 100%;
  .day-content {
    text-align: center;
    .day-c {
      display: inline-block;
      width: calc(100% / 7);
      text-align: center;
      margin-bottom: 30px;
      .day {
        font-size: 32px;
        font-weight: 500;
        color: #303030;
        text-align: center;
      }
      .desc {
        height: 28px;
        font-size: 20px;
        font-weight: 400;
        color: #202020;
        text-align: center;
      }
    }
  }
}

最后編輯于
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請聯(lián)系作者
  • 序言:七十年代末,一起剝皮案震驚了整個濱河市邮绿,隨后出現(xiàn)的幾起案子渠旁,更是在濱河造成了極大的恐慌,老刑警劉巖船逮,帶你破解...
    沈念sama閱讀 211,265評論 6 490
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件顾腊,死亡現(xiàn)場離奇詭異,居然都是意外死亡挖胃,警方通過查閱死者的電腦和手機杂靶,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 90,078評論 2 385
  • 文/潘曉璐 我一進店門,熙熙樓的掌柜王于貴愁眉苦臉地迎上來酱鸭,“玉大人吗垮,你說我怎么就攤上這事“妓瑁” “怎么了烁登?”我有些...
    開封第一講書人閱讀 156,852評論 0 347
  • 文/不壞的土叔 我叫張陵,是天一觀的道長扁誓。 經(jīng)常有香客問我防泵,道長,這世上最難降的妖魔是什么蝗敢? 我笑而不...
    開封第一講書人閱讀 56,408評論 1 283
  • 正文 為了忘掉前任捷泞,我火速辦了婚禮,結(jié)果婚禮上寿谴,老公的妹妹穿的比我還像新娘锁右。我一直安慰自己,他們只是感情好讶泰,可當我...
    茶點故事閱讀 65,445評論 5 384
  • 文/花漫 我一把揭開白布咏瑟。 她就那樣靜靜地躺著,像睡著了一般痪署。 火紅的嫁衣襯著肌膚如雪码泞。 梳的紋絲不亂的頭發(fā)上,一...
    開封第一講書人閱讀 49,772評論 1 290
  • 那天狼犯,我揣著相機與錄音余寥,去河邊找鬼领铐。 笑死,一個胖子當著我的面吹牛宋舷,可吹牛的內(nèi)容都是我干的绪撵。 我是一名探鬼主播,決...
    沈念sama閱讀 38,921評論 3 406
  • 文/蒼蘭香墨 我猛地睜開眼祝蝠,長吁一口氣:“原來是場噩夢啊……” “哼音诈!你這毒婦竟也來了?” 一聲冷哼從身側(cè)響起绎狭,我...
    開封第一講書人閱讀 37,688評論 0 266
  • 序言:老撾萬榮一對情侶失蹤细溅,失蹤者是張志新(化名)和其女友劉穎,沒想到半個月后坟岔,有當?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體谒兄,經(jīng)...
    沈念sama閱讀 44,130評論 1 303
  • 正文 獨居荒郊野嶺守林人離奇死亡,尸身上長有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點故事閱讀 36,467評論 2 325
  • 正文 我和宋清朗相戀三年社付,在試婚紗的時候發(fā)現(xiàn)自己被綠了寄狼。 大學時的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片薛闪。...
    茶點故事閱讀 38,617評論 1 340
  • 序言:一個原本活蹦亂跳的男人離奇死亡店展,死狀恐怖中鼠,靈堂內(nèi)的尸體忽然破棺而出遵馆,到底是詐尸還是另有隱情伤哺,我是刑警寧澤协饲,帶...
    沈念sama閱讀 34,276評論 4 329
  • 正文 年R本政府宣布裙戏,位于F島的核電站御滩,受9級特大地震影響鸥拧,放射性物質(zhì)發(fā)生泄漏。R本人自食惡果不足惜削解,卻給世界環(huán)境...
    茶點故事閱讀 39,882評論 3 312
  • 文/蒙蒙 一富弦、第九天 我趴在偏房一處隱蔽的房頂上張望。 院中可真熱鬧氛驮,春花似錦腕柜、人聲如沸。這莊子的主人今日做“春日...
    開封第一講書人閱讀 30,740評論 0 21
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽。三九已至蓖扑,卻和暖如春唉铜,著一層夾襖步出監(jiān)牢的瞬間,已是汗流浹背律杠。 一陣腳步聲響...
    開封第一講書人閱讀 31,967評論 1 265
  • 我被黑心中介騙來泰國打工潭流, 沒想到剛下飛機就差點兒被人妖公主榨干…… 1. 我叫王不留柿赊,地道東北人。 一個月前我還...
    沈念sama閱讀 46,315評論 2 360
  • 正文 我出身青樓幻枉,卻偏偏與公主長得像碰声,于是被迫代替她去往敵國和親。 傳聞我的和親對象是個殘疾皇子熬甫,可洞房花燭夜當晚...
    茶點故事閱讀 43,486評論 2 348

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