mirror of
https://github.com/makeplane/plane
synced 2024-06-14 14:31:34 +00:00
5b0066140f
* chore: format all files in the project * fix: removing @types/react from dependencies * fix: adding prettier and eslint config * chore: format files * fix: upgrading turbo version * chore: ignoring warnings and adding todos * fix: updated the type of bubble menu item in the document editor * chore: format files --------- Co-authored-by: Aaryan Khandelwal <aaryankhandu123@gmail.com>
137 lines
4.9 KiB
TypeScript
137 lines
4.9 KiB
TypeScript
import React, { useState } from "react";
|
|
import { Popover, Transition } from "@headlessui/react";
|
|
import { observer } from "mobx-react-lite";
|
|
import { usePopper } from "react-popper";
|
|
// mobx store
|
|
import { useMobxStore } from "lib/mobx/store-provider";
|
|
// icons
|
|
import { ChevronLeft, ChevronRight } from "lucide-react";
|
|
// constants
|
|
import { MONTHS_LIST } from "constants/calendar";
|
|
|
|
export const CalendarMonthsDropdown: React.FC = observer(() => {
|
|
const { calendar: calendarStore, issueFilter: issueFilterStore } = useMobxStore();
|
|
|
|
const calendarLayout = issueFilterStore.userDisplayFilters.calendar?.layout ?? "month";
|
|
|
|
const [referenceElement, setReferenceElement] = useState<HTMLButtonElement | null>(null);
|
|
const [popperElement, setPopperElement] = useState<HTMLDivElement | null>(null);
|
|
|
|
const { styles, attributes } = usePopper(referenceElement, popperElement, {
|
|
placement: "auto",
|
|
modifiers: [
|
|
{
|
|
name: "preventOverflow",
|
|
options: {
|
|
padding: 12,
|
|
},
|
|
},
|
|
],
|
|
});
|
|
|
|
const { activeMonthDate } = calendarStore.calendarFilters;
|
|
|
|
const getWeekLayoutHeader = (): string => {
|
|
const allDaysOfActiveWeek = calendarStore.allDaysOfActiveWeek;
|
|
|
|
if (!allDaysOfActiveWeek) return "Week view";
|
|
|
|
const daysList = Object.keys(allDaysOfActiveWeek);
|
|
|
|
const firstDay = new Date(daysList[0]);
|
|
const lastDay = new Date(daysList[daysList.length - 1]);
|
|
|
|
if (firstDay.getMonth() === lastDay.getMonth() && firstDay.getFullYear() === lastDay.getFullYear())
|
|
return `${MONTHS_LIST[firstDay.getMonth() + 1].title} ${firstDay.getFullYear()}`;
|
|
|
|
if (firstDay.getFullYear() !== lastDay.getFullYear()) {
|
|
return `${MONTHS_LIST[firstDay.getMonth() + 1].shortTitle} ${firstDay.getFullYear()} - ${
|
|
MONTHS_LIST[lastDay.getMonth() + 1].shortTitle
|
|
} ${lastDay.getFullYear()}`;
|
|
} else
|
|
return `${MONTHS_LIST[firstDay.getMonth() + 1].shortTitle} - ${
|
|
MONTHS_LIST[lastDay.getMonth() + 1].shortTitle
|
|
} ${lastDay.getFullYear()}`;
|
|
};
|
|
|
|
const handleDateChange = (date: Date) => {
|
|
calendarStore.updateCalendarFilters({
|
|
activeMonthDate: date,
|
|
});
|
|
};
|
|
|
|
return (
|
|
<Popover className="relative">
|
|
<Popover.Button as={React.Fragment}>
|
|
<button
|
|
type="button"
|
|
ref={setReferenceElement}
|
|
className="text-xl font-semibold outline-none"
|
|
disabled={calendarLayout === "week"}
|
|
>
|
|
{calendarLayout === "month"
|
|
? `${MONTHS_LIST[activeMonthDate.getMonth() + 1].title} ${activeMonthDate.getFullYear()}`
|
|
: getWeekLayoutHeader()}
|
|
</button>
|
|
</Popover.Button>
|
|
<Transition
|
|
as={React.Fragment}
|
|
enter="transition ease-out duration-200"
|
|
enterFrom="opacity-0 translate-y-1"
|
|
enterTo="opacity-100 translate-y-0"
|
|
leave="transition ease-in duration-150"
|
|
leaveFrom="opacity-100 translate-y-0"
|
|
leaveTo="opacity-0 translate-y-1"
|
|
>
|
|
<Popover.Panel className="fixed z-50">
|
|
<div
|
|
ref={setPopperElement}
|
|
style={styles.popper}
|
|
{...attributes.popper}
|
|
className="w-56 divide-y divide-custom-border-200 rounded border border-custom-border-200 bg-custom-background-100 p-3 shadow-custom-shadow-rg"
|
|
>
|
|
<div className="flex items-center justify-between gap-2 pb-3">
|
|
<button
|
|
type="button"
|
|
className="grid place-items-center"
|
|
onClick={() => {
|
|
const previousYear = new Date(activeMonthDate.getFullYear() - 1, activeMonthDate.getMonth(), 1);
|
|
handleDateChange(previousYear);
|
|
}}
|
|
>
|
|
<ChevronLeft size={14} />
|
|
</button>
|
|
<span className="text-xs">{activeMonthDate.getFullYear()}</span>
|
|
<button
|
|
type="button"
|
|
className="grid place-items-center"
|
|
onClick={() => {
|
|
const nextYear = new Date(activeMonthDate.getFullYear() + 1, activeMonthDate.getMonth(), 1);
|
|
handleDateChange(nextYear);
|
|
}}
|
|
>
|
|
<ChevronRight size={14} />
|
|
</button>
|
|
</div>
|
|
<div className="grid grid-cols-4 items-stretch justify-items-stretch gap-4 pt-3">
|
|
{Object.values(MONTHS_LIST).map((month, index) => (
|
|
<button
|
|
key={month.shortTitle}
|
|
type="button"
|
|
className="rounded py-0.5 text-xs hover:bg-custom-background-80"
|
|
onClick={() => {
|
|
const newDate = new Date(activeMonthDate.getFullYear(), index, 1);
|
|
handleDateChange(newDate);
|
|
}}
|
|
>
|
|
{month.shortTitle}
|
|
</button>
|
|
))}
|
|
</div>
|
|
</div>
|
|
</Popover.Panel>
|
|
</Transition>
|
|
</Popover>
|
|
);
|
|
});
|