forked from github/plane
e9a0eb87cc
* dev: initialize inbox * dev: inbox and inbox issues models, views and serializers * dev: issue object filter for inbox * dev: filter for search issues * dev: inbox snooze and duplicates * dev: set duplicate to null by default * feat: inbox ui and services * feat: project detail in inbox * style: layout, popover, icons, sidebar * dev: default inbox for project and pending issues count * dev: fix exception when creating default inbox * fix: empty state for inbox * dev: auto issue state updation when rejected or marked duplicate * fix: inbox update status * fix: hydrating chose with old values filters workflow * feat: inbox issue filtering * fix: issue inbox filtering * feat: filter inbox issues * refactor: analytics, border colors * dev: filters and views for inbox * dev: source for inboxissue and update list inbox issue * dev: update list endpoint to house filters and additional data * dev: bridge id for list * dev: remove print logs * dev: update inbox issue workflow * dev: add description_html in issue details * fix: inbox track event auth, chore: inbox issue action authorization * fix: removed unnecessary api calls * style: viewed issues * fix: priority validation * dev: remove print logs * dev: update issue inbox update workflow * chore: added inbox view context * fix: type errors * fix: build errors and warnings * dev: update issue inbox workflow and log all the changes * fix: filters logic, sidebar fields to show * dev: update issue filtering status * chore: update create inbox issue modal, fix: mutation issues * dev: update issue accept workflow * chore: add comment to inbox issues * chore: remove inboxIssueId from url after deleting * dev: update the issue triage workflow * fix: mutation after issue status change * chore: issue details sidebar divider * fix: issue activity for inbox issues * dev: update inbox perrmissions * dev: create new permission layer * chore: auth layer for inbox * chore: show accepting status * chore: show issue status at the top of issue details --------- Co-authored-by: Dakshesh Jain <dakshesh.jain14@gmail.com> Co-authored-by: gurusainath <gurusainath007@gmail.com> Co-authored-by: Aaryan Khandelwal <aaryankhandu123@gmail.com>
252 lines
8.7 KiB
TypeScript
252 lines
8.7 KiB
TypeScript
import React, { useCallback, useEffect } from "react";
|
|
|
|
import Link from "next/link";
|
|
import { useRouter } from "next/router";
|
|
|
|
import useSWR, { mutate } from "swr";
|
|
|
|
// react-hook-form
|
|
import { useForm } from "react-hook-form";
|
|
// contexts
|
|
import { useProjectMyMembership } from "contexts/project-member.context";
|
|
// services
|
|
import issuesService from "services/issues.service";
|
|
// hooks
|
|
import useUserAuth from "hooks/use-user-auth";
|
|
// layouts
|
|
import { ProjectAuthorizationWrapper } from "layouts/auth-layout";
|
|
// components
|
|
import {
|
|
IssueDescriptionForm,
|
|
SubIssuesList,
|
|
IssueDetailsSidebar,
|
|
IssueActivitySection,
|
|
AddComment,
|
|
IssueAttachmentUpload,
|
|
IssueAttachments,
|
|
} from "components/issues";
|
|
// ui
|
|
import { Loader, CustomMenu } from "components/ui";
|
|
import { Breadcrumbs } from "components/breadcrumbs";
|
|
// types
|
|
import { IIssue } from "types";
|
|
import type { NextPage } from "next";
|
|
// fetch-keys
|
|
import { PROJECT_ISSUES_ACTIVITY, ISSUE_DETAILS, SUB_ISSUES } from "constants/fetch-keys";
|
|
|
|
const defaultValues = {
|
|
name: "",
|
|
description: "",
|
|
description_html: "",
|
|
estimate_point: null,
|
|
state: "",
|
|
assignees_list: [],
|
|
priority: "low",
|
|
blockers_list: [],
|
|
blocked_list: [],
|
|
target_date: new Date().toString(),
|
|
issue_cycle: null,
|
|
issue_module: null,
|
|
labels_list: [],
|
|
};
|
|
|
|
const IssueDetailsPage: NextPage = () => {
|
|
const router = useRouter();
|
|
const { workspaceSlug, projectId, issueId } = router.query;
|
|
|
|
const { user } = useUserAuth();
|
|
const { memberRole } = useProjectMyMembership();
|
|
|
|
const { data: issueDetails, mutate: mutateIssueDetails } = useSWR<IIssue | undefined>(
|
|
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 { data: siblingIssues } = useSWR(
|
|
workspaceSlug && projectId && issueDetails?.parent ? SUB_ISSUES(issueDetails.parent) : null,
|
|
workspaceSlug && projectId && issueDetails?.parent
|
|
? () =>
|
|
issuesService.subIssues(
|
|
workspaceSlug as string,
|
|
projectId as string,
|
|
issueDetails.parent ?? ""
|
|
)
|
|
: 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 = { ...formData };
|
|
await issuesService
|
|
.patchIssue(workspaceSlug as string, projectId as string, issueId as string, payload, user)
|
|
.then((res) => {
|
|
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,
|
|
blockers_list:
|
|
issueDetails.blockers_list ??
|
|
issueDetails.blocker_issues?.map((issue) => issue.blocker_issue_detail?.id),
|
|
blocked_list:
|
|
issueDetails.blocks_list ??
|
|
issueDetails.blocked_issues?.map((issue) => issue.blocked_issue_detail?.id),
|
|
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={`${issueDetails?.project_detail.name ?? "Project"} Issues`}
|
|
link={`/${workspaceSlug}/projects/${projectId as string}/issues`}
|
|
/>
|
|
<Breadcrumbs.BreadcrumbItem
|
|
title={`Issue ${issueDetails?.project_detail.identifier ?? "Project"}-${
|
|
issueDetails?.sequence_id ?? "..."
|
|
} Details`}
|
|
/>
|
|
</Breadcrumbs>
|
|
}
|
|
>
|
|
{issueDetails && projectId ? (
|
|
<div className="flex h-full">
|
|
<div className="basis-2/3 space-y-5 divide-y-2 divide-brand-base p-5">
|
|
<div className="rounded-lg">
|
|
{issueDetails?.parent && issueDetails.parent !== "" ? (
|
|
<div className="mb-5 flex w-min items-center gap-2 whitespace-nowrap rounded bg-brand-surface-2 p-2 text-xs">
|
|
<Link
|
|
href={`/${workspaceSlug}/projects/${projectId as string}/issues/${
|
|
issueDetails.parent
|
|
}`}
|
|
>
|
|
<a className="flex items-center gap-2 text-brand-secondary">
|
|
<span
|
|
className="block h-1.5 w-1.5 rounded-full"
|
|
style={{
|
|
backgroundColor: issueDetails?.state_detail?.color,
|
|
}}
|
|
/>
|
|
<span className="flex-shrink-0">
|
|
{issueDetails.project_detail.identifier}-
|
|
{issueDetails.parent_detail?.sequence_id}
|
|
</span>
|
|
<span className="truncate">
|
|
{issueDetails.parent_detail?.name.substring(0, 50)}
|
|
</span>
|
|
</a>
|
|
</Link>
|
|
|
|
<CustomMenu ellipsis position="left">
|
|
{siblingIssues && siblingIssues.length > 0 ? (
|
|
siblingIssues.map((issue: IIssue) => (
|
|
<CustomMenu.MenuItem key={issue.id}>
|
|
<Link
|
|
href={`/${workspaceSlug}/projects/${projectId as string}/issues/${
|
|
issue.id
|
|
}`}
|
|
>
|
|
<a>
|
|
{issueDetails.project_detail.identifier}-{issue.sequence_id}
|
|
</a>
|
|
</Link>
|
|
</CustomMenu.MenuItem>
|
|
))
|
|
) : (
|
|
<CustomMenu.MenuItem className="flex items-center gap-2 whitespace-nowrap p-2 text-left text-xs text-brand-secondary">
|
|
No other sibling issues
|
|
</CustomMenu.MenuItem>
|
|
)}
|
|
</CustomMenu>
|
|
</div>
|
|
) : null}
|
|
<IssueDescriptionForm
|
|
issue={issueDetails}
|
|
handleFormSubmit={submitChanges}
|
|
isAllowed={memberRole.isMember || memberRole.isOwner}
|
|
/>
|
|
<div className="mt-2 space-y-2">
|
|
<SubIssuesList parentIssue={issueDetails} user={user} />
|
|
</div>
|
|
</div>
|
|
<div className="flex flex-col gap-3 py-3">
|
|
<h3 className="text-lg">Attachments</h3>
|
|
<div className="grid grid-cols-1 gap-3 sm:grid-cols-2 xl:grid-cols-3 2xl:grid-cols-4">
|
|
<IssueAttachmentUpload />
|
|
<IssueAttachments />
|
|
</div>
|
|
</div>
|
|
<div className="space-y-5 pt-3">
|
|
<h3 className="text-lg text-brand-base">Comments/Activity</h3>
|
|
<IssueActivitySection issueId={issueId as string} user={user} />
|
|
<AddComment issueId={issueId as string} user={user} />
|
|
</div>
|
|
</div>
|
|
<div className="basis-1/3 space-y-5 border-l border-brand-base p-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>
|
|
)}
|
|
</ProjectAuthorizationWrapper>
|
|
);
|
|
};
|
|
|
|
export default IssueDetailsPage;
|