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>
249 lines
8.4 KiB
TypeScript
249 lines
8.4 KiB
TypeScript
import { useState, useEffect, useCallback } from "react";
|
|
|
|
import Router, { useRouter } from "next/router";
|
|
|
|
import useSWR, { mutate } from "swr";
|
|
|
|
// services
|
|
import inboxServices from "services/inbox.service";
|
|
import projectService from "services/project.service";
|
|
// hooks
|
|
import useInboxView from "hooks/use-inbox-view";
|
|
import useUserAuth from "hooks/use-user-auth";
|
|
// layouts
|
|
import { ProjectAuthorizationWrapper } from "layouts/auth-layout";
|
|
// contexts
|
|
import { InboxViewContextProvider } from "contexts/inbox-view-context";
|
|
// components
|
|
import {
|
|
InboxActionHeader,
|
|
InboxMainContent,
|
|
SelectDuplicateInboxIssueModal,
|
|
DeclineIssueModal,
|
|
DeleteIssueModal,
|
|
IssuesListSidebar,
|
|
} from "components/inbox";
|
|
// helper
|
|
import { truncateText } from "helpers/string.helper";
|
|
// ui
|
|
import { PrimaryButton } from "components/ui";
|
|
import { BreadcrumbItem, Breadcrumbs } from "components/breadcrumbs";
|
|
// icons
|
|
import { PlusIcon } from "@heroicons/react/24/outline";
|
|
import { InboxIcon } from "components/icons";
|
|
// types
|
|
import { IInboxIssueDetail, TInboxStatus } from "types";
|
|
import type { NextPage } from "next";
|
|
// fetch-keys
|
|
import { INBOX_ISSUE_DETAILS, PROJECT_DETAILS } from "constants/fetch-keys";
|
|
|
|
const ProjectInbox: NextPage = () => {
|
|
const [selectDuplicateIssue, setSelectDuplicateIssue] = useState(false);
|
|
const [declineIssueModal, setDeclineIssueModal] = useState(false);
|
|
const [deleteIssueModal, setDeleteIssueModal] = useState(false);
|
|
|
|
const router = useRouter();
|
|
const { workspaceSlug, projectId, inboxId, inboxIssueId } = router.query;
|
|
|
|
const { user } = useUserAuth();
|
|
const { issues: inboxIssues, mutate: mutateInboxIssues } = useInboxView();
|
|
|
|
const { data: projectDetails } = useSWR(
|
|
workspaceSlug && projectId ? PROJECT_DETAILS(projectId as string) : null,
|
|
workspaceSlug && projectId
|
|
? () => projectService.getProject(workspaceSlug as string, projectId as string)
|
|
: null
|
|
);
|
|
|
|
const onKeyDown = useCallback(
|
|
(e: KeyboardEvent) => {
|
|
if (!inboxIssues || !inboxIssueId) return;
|
|
|
|
const currentIssueIndex = inboxIssues.findIndex((issue) => issue.bridge_id === inboxIssueId);
|
|
|
|
switch (e.key) {
|
|
case "ArrowUp":
|
|
Router.push({
|
|
pathname: `/${workspaceSlug}/projects/${projectId}/inbox/${inboxId}`,
|
|
query: {
|
|
inboxIssueId:
|
|
currentIssueIndex === 0
|
|
? inboxIssues[inboxIssues.length - 1].bridge_id
|
|
: inboxIssues[currentIssueIndex - 1].bridge_id,
|
|
},
|
|
});
|
|
break;
|
|
case "ArrowDown":
|
|
Router.push({
|
|
pathname: `/${workspaceSlug}/projects/${projectId}/inbox/${inboxId}`,
|
|
query: {
|
|
inboxIssueId:
|
|
currentIssueIndex === inboxIssues.length - 1
|
|
? inboxIssues[0].bridge_id
|
|
: inboxIssues[currentIssueIndex + 1].bridge_id,
|
|
},
|
|
});
|
|
|
|
break;
|
|
default:
|
|
break;
|
|
}
|
|
},
|
|
[workspaceSlug, projectId, inboxIssueId, inboxId, inboxIssues]
|
|
);
|
|
|
|
useEffect(() => {
|
|
document.addEventListener("keydown", onKeyDown);
|
|
|
|
return () => {
|
|
document.removeEventListener("keydown", onKeyDown);
|
|
};
|
|
}, [onKeyDown]);
|
|
|
|
const markInboxStatus = async (data: TInboxStatus) => {
|
|
if (!workspaceSlug || !projectId || !inboxId || !inboxIssueId) return;
|
|
|
|
await inboxServices
|
|
.markInboxStatus(
|
|
workspaceSlug.toString(),
|
|
projectId.toString(),
|
|
inboxId.toString(),
|
|
inboxIssues?.find((inboxIssue) => inboxIssue.bridge_id === inboxIssueId)?.bridge_id!,
|
|
data,
|
|
user
|
|
)
|
|
.then(() => {
|
|
mutate<IInboxIssueDetail>(
|
|
INBOX_ISSUE_DETAILS(inboxId as string, inboxIssueId as string),
|
|
(prevData) => {
|
|
if (!prevData) return prevData;
|
|
|
|
return {
|
|
...prevData,
|
|
issue_inbox: [{ ...prevData.issue_inbox[0], ...data }],
|
|
};
|
|
},
|
|
false
|
|
);
|
|
mutateInboxIssues(
|
|
(prevData) =>
|
|
(prevData ?? []).map((i) =>
|
|
i.bridge_id === inboxIssueId
|
|
? { ...i, issue_inbox: [{ ...i.issue_inbox[0], ...data }] }
|
|
: i
|
|
),
|
|
false
|
|
);
|
|
});
|
|
};
|
|
|
|
return (
|
|
<InboxViewContextProvider>
|
|
<ProjectAuthorizationWrapper
|
|
breadcrumbs={
|
|
<Breadcrumbs>
|
|
<BreadcrumbItem title="Projects" link={`/${workspaceSlug}/projects`} />
|
|
<BreadcrumbItem
|
|
title={`${truncateText(projectDetails?.name ?? "Project", 12)} Inbox`}
|
|
/>
|
|
</Breadcrumbs>
|
|
}
|
|
right={
|
|
<div className="flex items-center gap-2">
|
|
<PrimaryButton
|
|
className="flex items-center gap-2"
|
|
onClick={() => {
|
|
const e = new KeyboardEvent("keydown", { key: "c" });
|
|
document.dispatchEvent(e);
|
|
}}
|
|
>
|
|
<PlusIcon className="h-4 w-4" />
|
|
Add Issue
|
|
</PrimaryButton>
|
|
</div>
|
|
}
|
|
>
|
|
<>
|
|
<SelectDuplicateInboxIssueModal
|
|
isOpen={selectDuplicateIssue}
|
|
onClose={() => setSelectDuplicateIssue(false)}
|
|
value={
|
|
inboxIssues?.find((inboxIssue) => inboxIssue.bridge_id === inboxIssueId)
|
|
?.issue_inbox[0].duplicate_to
|
|
}
|
|
onSubmit={(dupIssueId: string) => {
|
|
markInboxStatus({
|
|
status: 2,
|
|
duplicate_to: dupIssueId,
|
|
}).finally(() => setSelectDuplicateIssue(false));
|
|
}}
|
|
/>
|
|
<DeclineIssueModal
|
|
isOpen={declineIssueModal}
|
|
handleClose={() => setDeclineIssueModal(false)}
|
|
data={inboxIssues?.find((i) => i.bridge_id === inboxIssueId)}
|
|
/>
|
|
<DeleteIssueModal
|
|
isOpen={deleteIssueModal}
|
|
handleClose={() => setDeleteIssueModal(false)}
|
|
data={inboxIssues?.find((i) => i.bridge_id === inboxIssueId)}
|
|
/>
|
|
<div className="flex flex-col h-full">
|
|
<InboxActionHeader
|
|
issue={inboxIssues?.find((issue) => issue.bridge_id === inboxIssueId)}
|
|
currentIssueIndex={
|
|
inboxIssues?.findIndex((issue) => issue.bridge_id === inboxIssueId) ?? 0
|
|
}
|
|
issueCount={inboxIssues?.length ?? 0}
|
|
onAccept={() =>
|
|
markInboxStatus({
|
|
status: 1,
|
|
})
|
|
}
|
|
onDecline={() => setDeclineIssueModal(true)}
|
|
onMarkAsDuplicate={() => setSelectDuplicateIssue(true)}
|
|
onSnooze={(date) => {
|
|
markInboxStatus({
|
|
status: 0,
|
|
snoozed_till: new Date(date),
|
|
});
|
|
}}
|
|
onDelete={() => setDeleteIssueModal(true)}
|
|
/>
|
|
<div className="grid grid-cols-4 flex-1 overflow-auto divide-x divide-brand-base">
|
|
<IssuesListSidebar />
|
|
<div className="col-span-3 h-full overflow-auto">
|
|
{inboxIssueId ? (
|
|
<InboxMainContent />
|
|
) : (
|
|
<div className="h-full p-4 grid place-items-center text-brand-secondary">
|
|
<div className="grid h-full place-items-center">
|
|
<div className="my-5 flex flex-col items-center gap-4">
|
|
<InboxIcon height={60} width={60} />
|
|
{inboxIssues && inboxIssues.length > 0 ? (
|
|
<span className="text-brand-secondary">
|
|
{inboxIssues?.length} issues found. Select an issue from the sidebar to
|
|
view its details.
|
|
</span>
|
|
) : (
|
|
<span className="text-brand-secondary">
|
|
No issues found. Use{" "}
|
|
<pre className="inline rounded bg-brand-surface-2 px-2 py-1">C</pre>{" "}
|
|
shortcut to create a new issue
|
|
</span>
|
|
)}
|
|
</div>
|
|
</div>
|
|
</div>
|
|
)}
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</>
|
|
</ProjectAuthorizationWrapper>
|
|
</InboxViewContextProvider>
|
|
);
|
|
};
|
|
|
|
export default ProjectInbox;
|