react 显示当前时间_React获取最近三个月的日期组件

import React, { memo } from 'react'

import dayjs from 'dayjs'

import { classnames } from 'classnames '

import './style.module.scss'

// 找到这个日期的月份的第一天的零时零分零秒

const firstDayTimeInMonth = (timestamp = new Date().getTime()) => {

const date = new Date(timestamp)

date.setDate(1)

date.setHours(0)

date.setMinutes(0)

date.setSeconds(0)

date.setMilliseconds(0)

return date.getTime()

}

export default function Calendar() {

const now = new Date()

const months = []

months.push(firstDayTimeInMonth(now))

now.setMonth(now.getMonth() + 1)

months.push(firstDayTimeInMonth(now))

now.setMonth(now.getMonth() + 1)

months.push(firstDayTimeInMonth(now))

return (

{months.map((month) => (

))}

)

}

function Month(props) {

const { startTimeInMonth } = props

const startDate = new Date(startTimeInMonth)

const currentDay = new Date(startTimeInMonth)

let days = []

while (startDate.getMonth() === currentDay.getMonth()) {

days.push(currentDay.getTime())

currentDay.setDate(currentDay.getDate() + 1)

}

days = new Array(startDate.getDay() ? startDate.getDay() - 1 : 6)

.fill(null)

.concat(days)

const lastDate = new Date(days[days.length - 1])

days = days.concat(

new Array(lastDate.getDay() ? 7 - lastDate.getDay() : 0).fill(null)

)

const weeks = []

for (let row = 0; row < days.length / 7; row++) {

const week = days.slice(row * 7, (row + 1) * 7)

weeks.push(week)

}

return (

{dayjs(startDate).format('YYYY年MM月')}
周一周二周三周四周五周六周日

{weeks.map((week) => (

))}

)

}

const Week = memo(function Week({ week }) {

return (

{week.map((day, index) => (

))}

)

}, [])

const Day = memo(function Day({ day }) {

const today = new Date()

today.setHours(0)

today.setMinutes(0)

today.setSeconds(0)

today.setMilliseconds(0)

const stringDay = day ? new Date(day).getDate() : ''

return (

className={classnames('calendar-day', {

day === today.getTime() : 'calendar-day--today',

day < today.getTime() : 'calendar-day--pass',

})}

>

{stringDay}

)

}, [])

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值