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>
169 lines
5.1 KiB
TypeScript
169 lines
5.1 KiB
TypeScript
import React, { useCallback, useEffect, ReactElement } from "react";
|
|
import { useRouter } from "next/router";
|
|
import useSWR, { mutate } from "swr";
|
|
import { useForm } from "react-hook-form";
|
|
// services
|
|
import { IssueService } from "services/issue";
|
|
// layouts
|
|
import { AppLayout } from "layouts/app-layout";
|
|
// components
|
|
import { ProjectIssueDetailsHeader } from "components/headers";
|
|
import { IssueDetailsSidebar, IssueMainContent } from "components/issues";
|
|
// ui
|
|
import { EmptyState } from "components/common";
|
|
import { Loader } from "@plane/ui";
|
|
// images
|
|
import emptyIssue from "public/empty-state/issue.svg";
|
|
// types
|
|
import { TIssue } from "@plane/types";
|
|
import { NextPageWithLayout } from "lib/types";
|
|
// fetch-keys
|
|
import { PROJECT_ISSUES_ACTIVITY, ISSUE_DETAILS } from "constants/fetch-keys";
|
|
import { observer } from "mobx-react-lite";
|
|
import { useIssueDetail } from "hooks/store";
|
|
|
|
const defaultValues: Partial<TIssue> = {
|
|
// description: "",
|
|
description_html: "",
|
|
estimate_point: null,
|
|
cycle_id: null,
|
|
module_id: null,
|
|
name: "",
|
|
priority: "low",
|
|
start_date: undefined,
|
|
state_id: "",
|
|
target_date: undefined,
|
|
};
|
|
|
|
// services
|
|
const issueService = new IssueService();
|
|
|
|
const IssueDetailsPage: NextPageWithLayout = observer(() => {
|
|
// router
|
|
const router = useRouter();
|
|
const { workspaceSlug, projectId, issueId: routeIssueId } = router.query;
|
|
|
|
const { peekIssue, fetchIssue } = useIssueDetail();
|
|
useEffect(() => {
|
|
if (!workspaceSlug || !projectId || !routeIssueId) return;
|
|
fetchIssue(workspaceSlug as string, projectId as string, routeIssueId as string);
|
|
}, [workspaceSlug, projectId, routeIssueId, fetchIssue]);
|
|
|
|
const {
|
|
data: issueDetails,
|
|
mutate: mutateIssueDetails,
|
|
error,
|
|
} = useSWR(
|
|
workspaceSlug && projectId && peekIssue?.issueId ? ISSUE_DETAILS(peekIssue?.issueId as string) : null,
|
|
workspaceSlug && projectId && peekIssue?.issueId
|
|
? () => issueService.retrieve(workspaceSlug as string, projectId as string, peekIssue?.issueId as string)
|
|
: null
|
|
);
|
|
|
|
const { reset, control, watch } = useForm<TIssue>({
|
|
defaultValues,
|
|
});
|
|
|
|
const submitChanges = useCallback(
|
|
async (formData: Partial<TIssue>) => {
|
|
if (!workspaceSlug || !projectId || !peekIssue?.issueId) return;
|
|
|
|
mutate<TIssue>(
|
|
ISSUE_DETAILS(peekIssue?.issueId as string),
|
|
(prevData) => {
|
|
if (!prevData) return prevData;
|
|
|
|
return {
|
|
...prevData,
|
|
...formData,
|
|
};
|
|
},
|
|
false
|
|
);
|
|
|
|
const payload: Partial<TIssue> = {
|
|
...formData,
|
|
};
|
|
|
|
// delete payload.related_issues;
|
|
// delete payload.issue_relations;
|
|
|
|
await issueService
|
|
.patchIssue(workspaceSlug as string, projectId as string, peekIssue?.issueId as string, payload)
|
|
.then(() => {
|
|
mutateIssueDetails();
|
|
mutate(PROJECT_ISSUES_ACTIVITY(peekIssue?.issueId as string));
|
|
})
|
|
.catch((e) => {
|
|
console.error(e);
|
|
});
|
|
},
|
|
[workspaceSlug, peekIssue?.issueId, projectId, mutateIssueDetails]
|
|
);
|
|
|
|
useEffect(() => {
|
|
if (!issueDetails) return;
|
|
|
|
mutate(PROJECT_ISSUES_ACTIVITY(peekIssue?.issueId as string));
|
|
reset({
|
|
...issueDetails,
|
|
});
|
|
}, [issueDetails, reset, peekIssue?.issueId]);
|
|
|
|
return (
|
|
<>
|
|
{" "}
|
|
{error ? (
|
|
<EmptyState
|
|
image={emptyIssue}
|
|
title="Issue does not exist"
|
|
description="The issue you are looking for does not exist, has been archived, or has been deleted."
|
|
primaryButton={{
|
|
text: "View other issues",
|
|
onClick: () => router.push(`/${workspaceSlug}/projects/${projectId}/issues`),
|
|
}}
|
|
/>
|
|
) : issueDetails && projectId && peekIssue?.issueId ? (
|
|
<div className="flex h-full overflow-hidden">
|
|
<div className="h-full w-2/3 space-y-5 divide-y-2 divide-custom-border-300 overflow-y-auto p-5">
|
|
<IssueMainContent issueDetails={issueDetails} submitChanges={submitChanges} />
|
|
</div>
|
|
<div className="h-full w-1/3 space-y-5 overflow-hidden border-l border-custom-border-300 py-5">
|
|
<IssueDetailsSidebar
|
|
control={control}
|
|
issueDetail={issueDetails}
|
|
submitChanges={submitChanges}
|
|
watch={watch}
|
|
/>
|
|
</div>
|
|
</div>
|
|
) : (
|
|
<Loader className="flex h-full gap-5 p-5">
|
|
<div className="basis-2/3 space-y-2">
|
|
<Loader.Item height="30px" width="40%" />
|
|
<Loader.Item height="15px" width="60%" />
|
|
<Loader.Item height="15px" width="60%" />
|
|
<Loader.Item height="15px" width="40%" />
|
|
</div>
|
|
<div className="basis-1/3 space-y-3">
|
|
<Loader.Item height="30px" />
|
|
<Loader.Item height="30px" />
|
|
<Loader.Item height="30px" />
|
|
<Loader.Item height="30px" />
|
|
</div>
|
|
</Loader>
|
|
)}
|
|
</>
|
|
);
|
|
});
|
|
|
|
IssueDetailsPage.getLayout = function getLayout(page: ReactElement) {
|
|
return (
|
|
<AppLayout header={<ProjectIssueDetailsHeader />} withProjectWrapper>
|
|
{page}
|
|
</AppLayout>
|
|
);
|
|
};
|
|
|
|
export default IssueDetailsPage;
|