// eslint-disable-next-line max-len // source: https://blog.flowandform.agency/create-a-custom-calendar-in-react-3df1bfd0b728 import { addDays, addMonths, endOfMonth, endOfWeek, format, isSameDay, isSameMonth, startOfMonth, startOfWeek, subMonths, } from 'date-fns' import React, { Fragment } from 'react' import { connect } from 'react-redux' import { Link } from 'react-router-dom' import { getMonthActivities } from '../../actions/activities' import { getDateWithTZ } from '../../utils' import { recordsLabels } from '../../utils/activities' const getStartAndEndMonth = (date, weekStartOnMonday) => { const monthStart = startOfMonth(date) const monthEnd = endOfMonth(date) const weekStartsOn = weekStartOnMonday ? 1 : 0 return { start: startOfWeek(monthStart, { weekStartsOn }), end: endOfWeek(monthEnd), } } class Calendar extends React.Component { constructor(props, context) { super(props, context) const calendarDate = new Date() this.state = { currentMonth: calendarDate, startDate: getStartAndEndMonth(calendarDate, props.weekm).start, endDate: getStartAndEndMonth(calendarDate, props.weekm).end, weekStartOnMonday: props.weekm, } } componentDidMount() { this.props.loadMonthActivities(this.state.startDate, this.state.endDate) } renderHeader() { const dateFormat = 'MMM yyyy' return (
this.handlePrevMonth()}>