mirror of
https://github.com/makeplane/plane
synced 2024-06-14 14:31:34 +00:00
efd3ebf067
* refactor: updated preloaded function for the list view quick add * fix: resolved bug in the assignee dropdown * chore: issue sidebar link improvement * fix: resolved subscription store bug * chore: updated preloaded function for the kanban layout quick add * chore: resolved issues in the list filters and component * chore: filter store updated * fix: issue serializer changed * chore: quick add preload function updated * fix: build error * fix: serializer changed * fix: minor request change * chore: resolved build issues and updated the prepopulated data in the quick add issue. * fix: build fix and code refactor * fix: spreadsheet layout quick add fix * fix: issue peek overview link section updated * fix: cycle status bug fix * fix: serializer changes * fix: assignee and labels listing * chore: issue modal parent_id default value updated * fix: cycle and module issue serializer change * fix: cycle list serializer changed * chore: prepopulated validation in both list and kanban for quick add and group header add issues * chore: group header validation added * fix: issue response payload change * dev: make cycle and module issue create response simillar * chore: custom control link component added * dev: make issue create and update response simillar to list and retrieve * fix: build error * chore: control link component improvement * chore: globalise issue peek overview * chore: control link component improvement * chore: made changes and optimised the issue peek overview root * build-error: resolved build erros for issueId dependancy from issue detail store * chore: peek overview link fix * dev: update state nullable rule --------- Co-authored-by: gurusainath <gurusainath007@gmail.com> Co-authored-by: NarayanBavisetti <narayan3119@gmail.com> Co-authored-by: pablohashescobar <nikhilschacko@gmail.com>
130 lines
4.9 KiB
TypeScript
130 lines
4.9 KiB
TypeScript
import { useState } from "react";
|
|
import { observer } from "mobx-react-lite";
|
|
import { Droppable } from "@hello-pangea/dnd";
|
|
// components
|
|
import { CalendarIssueBlocks, ICalendarDate, CalendarQuickAddIssueForm } from "components/issues";
|
|
// helpers
|
|
import { renderFormattedPayloadDate } from "helpers/date-time.helper";
|
|
// constants
|
|
import { MONTHS_LIST } from "constants/calendar";
|
|
import { TGroupedIssues, TIssue, TIssueMap } from "@plane/types";
|
|
import { ICycleIssuesFilter } from "store/issue/cycle";
|
|
import { IModuleIssuesFilter } from "store/issue/module";
|
|
import { IProjectIssuesFilter } from "store/issue/project";
|
|
import { IProjectViewIssuesFilter } from "store/issue/project-views";
|
|
|
|
type Props = {
|
|
issuesFilterStore: IProjectIssuesFilter | IModuleIssuesFilter | ICycleIssuesFilter | IProjectViewIssuesFilter;
|
|
date: ICalendarDate;
|
|
issues: TIssueMap | undefined;
|
|
groupedIssueIds: TGroupedIssues;
|
|
quickActions: (issue: TIssue, customActionButton?: React.ReactElement) => React.ReactNode;
|
|
enableQuickIssueCreate?: boolean;
|
|
disableIssueCreation?: boolean;
|
|
quickAddCallback?: (
|
|
workspaceSlug: string,
|
|
projectId: string,
|
|
data: TIssue,
|
|
viewId?: string
|
|
) => Promise<TIssue | undefined>;
|
|
viewId?: string;
|
|
};
|
|
|
|
export const CalendarDayTile: React.FC<Props> = observer((props) => {
|
|
const {
|
|
issuesFilterStore,
|
|
date,
|
|
issues,
|
|
groupedIssueIds,
|
|
quickActions,
|
|
enableQuickIssueCreate,
|
|
disableIssueCreation,
|
|
quickAddCallback,
|
|
viewId,
|
|
} = props;
|
|
const [showAllIssues, setShowAllIssues] = useState(false);
|
|
const calendarLayout = issuesFilterStore?.issueFilters?.displayFilters?.calendar?.layout ?? "month";
|
|
|
|
const formattedDatePayload = renderFormattedPayloadDate(date.date);
|
|
if (!formattedDatePayload) return null;
|
|
const issueIdList = groupedIssueIds ? groupedIssueIds[formattedDatePayload] : null;
|
|
|
|
const totalIssues = issueIdList?.length ?? 0;
|
|
return (
|
|
<>
|
|
<div className="group relative flex h-full w-full flex-col bg-custom-background-90">
|
|
{/* header */}
|
|
<div
|
|
className={`flex-shrink-0 px-2 py-1 text-right text-xs ${
|
|
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="h-full w-full">
|
|
<Droppable droppableId={formattedDatePayload} isDropDisabled={false}>
|
|
{(provided, snapshot) => (
|
|
<div
|
|
className={`h-full w-full select-none overflow-y-auto ${
|
|
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={issues}
|
|
issueIdList={issueIdList}
|
|
quickActions={quickActions}
|
|
showAllIssues={showAllIssues}
|
|
/>
|
|
|
|
{enableQuickIssueCreate && !disableIssueCreation && (
|
|
<div className="px-2 py-1">
|
|
<CalendarQuickAddIssueForm
|
|
formKey="target_date"
|
|
groupId={formattedDatePayload}
|
|
prePopulatedData={{
|
|
target_date: renderFormattedPayloadDate(date.date) ?? undefined,
|
|
}}
|
|
quickAddCallback={quickAddCallback}
|
|
viewId={viewId}
|
|
onOpen={() => setShowAllIssues(true)}
|
|
/>
|
|
</div>
|
|
)}
|
|
|
|
{totalIssues > 4 && (
|
|
<div className="flex items-center px-2.5 py-1">
|
|
<button
|
|
type="button"
|
|
className="w-min whitespace-nowrap rounded text-xs px-1.5 py-1 text-custom-text-400 font-medium hover:bg-custom-background-80 hover:text-custom-text-300"
|
|
onClick={() => setShowAllIssues((prevData) => !prevData)}
|
|
>
|
|
{showAllIssues ? "Hide" : totalIssues - 4 + " more"}
|
|
</button>
|
|
</div>
|
|
)}
|
|
|
|
{provided.placeholder}
|
|
</div>
|
|
)}
|
|
</Droppable>
|
|
</div>
|
|
</div>
|
|
</>
|
|
);
|
|
});
|