mirror of
https://github.com/makeplane/plane
synced 2024-06-14 14:31:34 +00:00
4aad35e007
* refactor: store and helper setup for quick-add * refactor: kanban quick add with optimistic issue create * refactor: added function definition * refactor: list quick add with optimistic issue create * refactor: spreadsheet quick add with optimistic issue create * refactor: calender quick add with optimistic issue create * refactor: gantt quick add with optimistic issue create * refactor: input component and pre-loading data logic * style: calender quick-add height and content shift * feat: sub-group quick-add issue * feat: displaying loading state when issue is being created * fix: setting string null to null
86 lines
3.1 KiB
TypeScript
86 lines
3.1 KiB
TypeScript
import { observer } from "mobx-react-lite";
|
|
import { Droppable } from "@hello-pangea/dnd";
|
|
|
|
// mobx store
|
|
import { useMobxStore } from "lib/mobx/store-provider";
|
|
// components
|
|
import { CalendarIssueBlocks, ICalendarDate, CalendarInlineCreateIssueForm } from "components/issues";
|
|
// helpers
|
|
import { renderDateFormat } from "helpers/date-time.helper";
|
|
// types
|
|
import { IIssueGroupedStructure } from "store/issue";
|
|
// constants
|
|
import { MONTHS_LIST } from "constants/calendar";
|
|
import { IIssue } from "types";
|
|
|
|
type Props = {
|
|
date: ICalendarDate;
|
|
issues: IIssueGroupedStructure | null;
|
|
quickActions: (issue: IIssue) => React.ReactNode;
|
|
enableQuickIssueCreate?: boolean;
|
|
};
|
|
|
|
export const CalendarDayTile: React.FC<Props> = observer((props) => {
|
|
const { date, issues, quickActions, enableQuickIssueCreate } = props;
|
|
|
|
const { issueFilter: issueFilterStore } = useMobxStore();
|
|
|
|
const calendarLayout = issueFilterStore.userDisplayFilters.calendar?.layout ?? "month";
|
|
|
|
const issuesList = issues ? (issues as IIssueGroupedStructure)[renderDateFormat(date.date)] : null;
|
|
|
|
return (
|
|
<>
|
|
<div className="group w-full h-full relative flex flex-col bg-custom-background-90">
|
|
{/* header */}
|
|
<div
|
|
className={`text-xs text-right flex-shrink-0 py-1 px-2 ${
|
|
calendarLayout === "month" // if month layout, highlight current month days
|
|
? date.is_current_month
|
|
? "font-medium"
|
|
: "text-custom-text-300"
|
|
: "font-medium" // if week layout, highlight all days
|
|
} ${
|
|
date.date.getDay() === 0 || date.date.getDay() === 6
|
|
? "bg-custom-background-90"
|
|
: "bg-custom-background-100"
|
|
}`}
|
|
>
|
|
{date.date.getDate() === 1 && MONTHS_LIST[date.date.getMonth() + 1].shortTitle + " "}
|
|
{date.date.getDate()}
|
|
</div>
|
|
|
|
{/* content */}
|
|
<div className="w-full h-full">
|
|
<Droppable droppableId={renderDateFormat(date.date)} isDropDisabled={false}>
|
|
{(provided, snapshot) => (
|
|
<div
|
|
className={`h-full w-full overflow-y-auto select-none ${
|
|
snapshot.isDraggingOver || date.date.getDay() === 0 || date.date.getDay() === 6
|
|
? "bg-custom-background-90"
|
|
: "bg-custom-background-100"
|
|
} ${calendarLayout === "month" ? "min-h-[9rem]" : ""}`}
|
|
{...provided.droppableProps}
|
|
ref={provided.innerRef}
|
|
>
|
|
<CalendarIssueBlocks issues={issuesList} quickActions={quickActions} />
|
|
{enableQuickIssueCreate && (
|
|
<div className="py-1 px-2">
|
|
<CalendarInlineCreateIssueForm
|
|
groupId={renderDateFormat(date.date)}
|
|
prePopulatedData={{
|
|
target_date: renderDateFormat(date.date),
|
|
}}
|
|
/>
|
|
</div>
|
|
)}
|
|
{provided.placeholder}
|
|
</div>
|
|
)}
|
|
</Droppable>
|
|
</div>
|
|
</div>
|
|
</>
|
|
);
|
|
});
|