forked from github/plane
42 lines
1.3 KiB
TypeScript
42 lines
1.3 KiB
TypeScript
|
import { observer } from "mobx-react-lite";
|
||
|
|
||
|
// mobx store
|
||
|
import { useMobxStore } from "lib/mobx/store-provider";
|
||
|
// components
|
||
|
import { CalendarDayTile } from "components/issues";
|
||
|
// helpers
|
||
|
import { renderDateFormat } from "helpers/date-time.helper";
|
||
|
// types
|
||
|
import { ICalendarDate, ICalendarWeek } from "./types";
|
||
|
import { IIssueGroupedStructure } from "store/issue";
|
||
|
|
||
|
type Props = {
|
||
|
issues: IIssueGroupedStructure | null;
|
||
|
week: ICalendarWeek | undefined;
|
||
|
};
|
||
|
|
||
|
export const CalendarWeekDays: React.FC<Props> = observer((props) => {
|
||
|
const { issues, week } = props;
|
||
|
|
||
|
const { issueFilter: issueFilterStore } = useMobxStore();
|
||
|
|
||
|
const calendarLayout = issueFilterStore.userDisplayFilters.calendar?.layout ?? "month";
|
||
|
const showWeekends = issueFilterStore.userDisplayFilters.calendar?.show_weekends ?? false;
|
||
|
|
||
|
if (!week) return null;
|
||
|
|
||
|
return (
|
||
|
<div
|
||
|
className={`grid divide-x-[0.5px] divide-custom-border-200 ${showWeekends ? "grid-cols-7" : "grid-cols-5"} ${
|
||
|
calendarLayout === "month" ? "" : "h-full"
|
||
|
}`}
|
||
|
>
|
||
|
{Object.values(week).map((date: ICalendarDate) => {
|
||
|
if (!showWeekends && (date.date.getDay() === 0 || date.date.getDay() === 6)) return null;
|
||
|
|
||
|
return <CalendarDayTile key={renderDateFormat(date.date)} date={date} issues={issues} />;
|
||
|
})}
|
||
|
</div>
|
||
|
);
|
||
|
});
|