import { Box, Text } from "@chakra-ui/react"; import { add, getYear, getMonth, sub, getDate } from "date-fns"; import router from "next/router"; import React, { Fragment, useState } from "react"; import AddSticker from "./modals/AddSticker"; interface DayProps { isOverflow?: boolean; overflowDirection?: "next" | "prev" | null; sticker: -2 | -1 | 0 | 1 | 2 | null; date: Date; selectedDate: Date; } const Day = (props: DayProps): JSX.Element => { const { isOverflow, overflowDirection, /*sticker,*/ date, selectedDate } = props; const handleNav = (direction: "next" | "prev") => { if (direction === "next") { console.log(overflowDirection); const newMonth = add(selectedDate, { months: 1 }); const year = getYear(newMonth); const month = getMonth(newMonth) + 1; router.push(`/calendar/${year}/${month}`); } else if (direction === "prev") { const newMonth = sub(selectedDate, { months: 1 }); const year = getYear(newMonth); const month = getMonth(newMonth) + 1; router.push(`/calendar/${year}/${month}`); } }; const [isOpen, setIsOpen] = useState(false); return ( {isOverflow && ( handleNav(overflowDirection)} > {`Day ${getDate(date)}`} )} {!isOverflow && ( setIsOpen(true)} > {`Day ${getDate(date)}`} )} ); }; export default Day;