forked from github/plane
a8fdd42cb9
Co-authored-by: Aaryan Khandelwal <aaryan610@Aaryans-MacBook-Pro.local>
181 lines
5.4 KiB
TypeScript
181 lines
5.4 KiB
TypeScript
import React, { useCallback, useEffect } from "react";
|
|
|
|
import { useRouter } from "next/router";
|
|
|
|
import useSWR, { mutate } from "swr";
|
|
|
|
// react-hook-form
|
|
import { useForm } from "react-hook-form";
|
|
// services
|
|
import issuesService from "services/issues.service";
|
|
// hooks
|
|
import useUserAuth from "hooks/use-user-auth";
|
|
// layouts
|
|
import { ProjectAuthorizationWrapper } from "layouts/auth-layout";
|
|
// components
|
|
import { IssueDetailsSidebar, IssueMainContent } from "components/issues";
|
|
// ui
|
|
import { EmptyState, Loader } from "components/ui";
|
|
import { Breadcrumbs } from "components/breadcrumbs";
|
|
// images
|
|
import emptyIssue from "public/empty-state/issue.svg";
|
|
// types
|
|
import { IIssue } from "types";
|
|
import type { NextPage } from "next";
|
|
// fetch-keys
|
|
import { PROJECT_ISSUES_ACTIVITY, ISSUE_DETAILS } from "constants/fetch-keys";
|
|
// helper
|
|
import { truncateText } from "helpers/string.helper";
|
|
|
|
const defaultValues = {
|
|
assignees_list: [],
|
|
description: "",
|
|
description_html: "",
|
|
estimate_point: null,
|
|
issue_cycle: null,
|
|
issue_module: null,
|
|
labels_list: [],
|
|
name: "",
|
|
priority: "low",
|
|
start_date: null,
|
|
state: "",
|
|
target_date: null,
|
|
};
|
|
|
|
const IssueDetailsPage: NextPage = () => {
|
|
const router = useRouter();
|
|
const { workspaceSlug, projectId, issueId } = router.query;
|
|
// console.log(workspaceSlug, "workspaceSlug")
|
|
|
|
const { user } = useUserAuth();
|
|
|
|
const {
|
|
data: issueDetails,
|
|
mutate: mutateIssueDetails,
|
|
error,
|
|
} = useSWR(
|
|
workspaceSlug && projectId && issueId ? ISSUE_DETAILS(issueId as string) : null,
|
|
workspaceSlug && projectId && issueId
|
|
? () =>
|
|
issuesService.retrieve(workspaceSlug as string, projectId as string, issueId as string)
|
|
: null
|
|
);
|
|
|
|
const { reset, control, watch } = useForm<IIssue>({
|
|
defaultValues,
|
|
});
|
|
|
|
const submitChanges = useCallback(
|
|
async (formData: Partial<IIssue>) => {
|
|
if (!workspaceSlug || !projectId || !issueId) return;
|
|
|
|
mutate<IIssue>(
|
|
ISSUE_DETAILS(issueId as string),
|
|
(prevData) => {
|
|
if (!prevData) return prevData;
|
|
|
|
return {
|
|
...prevData,
|
|
...formData,
|
|
};
|
|
},
|
|
false
|
|
);
|
|
|
|
const payload: Partial<IIssue> = {
|
|
...formData,
|
|
};
|
|
|
|
delete payload.blocker_issues;
|
|
delete payload.blocked_issues;
|
|
|
|
await issuesService
|
|
.patchIssue(workspaceSlug as string, projectId as string, issueId as string, payload, user)
|
|
.then(() => {
|
|
mutateIssueDetails();
|
|
mutate(PROJECT_ISSUES_ACTIVITY(issueId as string));
|
|
})
|
|
.catch((e) => {
|
|
console.error(e);
|
|
});
|
|
},
|
|
[workspaceSlug, issueId, projectId, mutateIssueDetails, user]
|
|
);
|
|
|
|
useEffect(() => {
|
|
if (!issueDetails) return;
|
|
|
|
mutate(PROJECT_ISSUES_ACTIVITY(issueId as string));
|
|
reset({
|
|
...issueDetails,
|
|
assignees_list:
|
|
issueDetails.assignees_list ?? issueDetails.assignee_details?.map((user) => user.id),
|
|
labels_list: issueDetails.labels_list ?? issueDetails.labels,
|
|
labels: issueDetails.labels_list ?? issueDetails.labels,
|
|
});
|
|
}, [issueDetails, reset, issueId]);
|
|
|
|
return (
|
|
<ProjectAuthorizationWrapper
|
|
breadcrumbs={
|
|
<Breadcrumbs>
|
|
<Breadcrumbs.BreadcrumbItem
|
|
title={`${truncateText(issueDetails?.project_detail.name ?? "Project", 32)} Issues`}
|
|
link={`/${workspaceSlug}/projects/${projectId as string}/issues`}
|
|
linkTruncate
|
|
/>
|
|
<Breadcrumbs.BreadcrumbItem
|
|
title={`Issue ${issueDetails?.project_detail.identifier ?? "Project"}-${
|
|
issueDetails?.sequence_id ?? "..."
|
|
} Details`}
|
|
unshrinkTitle
|
|
/>
|
|
</Breadcrumbs>
|
|
}
|
|
>
|
|
{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 ? (
|
|
<div className="flex h-full overflow-hidden">
|
|
<div className="w-2/3 h-full overflow-y-auto space-y-5 divide-y-2 divide-custom-border-300 p-5">
|
|
<IssueMainContent issueDetails={issueDetails} submitChanges={submitChanges} />
|
|
</div>
|
|
<div className="w-1/3 h-full space-y-5 border-l border-custom-border-300 py-5 overflow-hidden">
|
|
<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>
|
|
)}
|
|
</ProjectAuthorizationWrapper>
|
|
);
|
|
};
|
|
|
|
export default IssueDetailsPage;
|