mirror of
https://github.com/makeplane/plane
synced 2024-06-14 14:31:34 +00:00
b66f07845a
* chore: inbox-issues store and type updates * chore: issue inbox payload change for GET and POST * chore: issue inbox payload change for PATCH * chore: inbox-issue new hooks and store updates * chore: update inbox issue template. * chore: UI root * chore: sidebar issues render * chore: inbox issue details page layout. * chore: inbox issue filters * chore: inbox issue status card. * chore: add loader. * chore: active inbox issue styles. * chore: inbox filters * chore: inbox applied filters UI * chore: inbox issue approval header * chore: inbox issue approval header operations * chore: issue reaction and activity fetch in issue_inbox store * chore: posthog enabled --------- Co-authored-by: NarayanBavisetti <narayan3119@gmail.com> Co-authored-by: Prateek Shourya <prateekshourya29@gmail.com>
101 lines
3.5 KiB
TypeScript
101 lines
3.5 KiB
TypeScript
import { FC, useEffect } from "react";
|
|
import { observer } from "mobx-react";
|
|
import Link from "next/link";
|
|
import { useRouter } from "next/router";
|
|
// icons
|
|
import { CalendarDays } from "lucide-react";
|
|
// hooks
|
|
import { useInboxIssues, useIssueDetail, useProject } from "hooks/store";
|
|
// ui
|
|
import { Tooltip, PriorityIcon } from "@plane/ui";
|
|
// helpers
|
|
import { renderFormattedDate } from "helpers/date-time.helper";
|
|
// components
|
|
import { InboxIssueStatus } from "components/inbox/inbox-issue-status";
|
|
|
|
type TInboxIssueListItem = {
|
|
workspaceSlug: string;
|
|
projectId: string;
|
|
inboxId: string;
|
|
issueId: string;
|
|
};
|
|
|
|
export const InboxIssueListItem: FC<TInboxIssueListItem> = observer((props) => {
|
|
const { workspaceSlug, projectId, inboxId, issueId } = props;
|
|
// router
|
|
const router = useRouter();
|
|
const { inboxIssueId } = router.query;
|
|
// hooks
|
|
const { getProjectById } = useProject();
|
|
const {
|
|
issues: { getInboxIssueByIssueId },
|
|
} = useInboxIssues();
|
|
const {
|
|
issue: { getIssueById },
|
|
} = useIssueDetail();
|
|
|
|
const inboxIssueDetail = getInboxIssueByIssueId(inboxId, issueId);
|
|
const issue = getIssueById(issueId);
|
|
|
|
if (!issue || !inboxIssueDetail) return <></>;
|
|
|
|
useEffect(() => {
|
|
if (issueId === inboxIssueId) {
|
|
setTimeout(() => {
|
|
const issueItemCard = document.getElementById(`inbox-issue-list-item-${issueId}`);
|
|
if (issueItemCard)
|
|
issueItemCard.scrollIntoView({
|
|
behavior: "smooth",
|
|
block: "center",
|
|
});
|
|
}, 200);
|
|
}
|
|
}, [issueId, inboxIssueId]);
|
|
|
|
return (
|
|
<>
|
|
<Link
|
|
id={`inbox-issue-list-item-${issue.id}`}
|
|
key={`${inboxId}_${issueId}`}
|
|
href={`/${workspaceSlug}/projects/${projectId}/inbox/${inboxId}?inboxIssueId=${issueId}`}
|
|
>
|
|
<div
|
|
className={`relative min-h-[5rem]select-none space-y-3 border-b border-custom-border-200 px-4 py-2 hover:bg-custom-primary/5 cursor-pointer ${
|
|
inboxIssueId === issueId ? "bg-custom-primary/5" : " "
|
|
} ${inboxIssueDetail.status !== -2 ? "opacity-60" : ""}`}
|
|
>
|
|
<div className="flex items-center justify-between gap-x-2">
|
|
<div className="flex items-center gap-x-2">
|
|
<p className="flex-shrink-0 text-xs text-custom-text-200">
|
|
{getProjectById(issue.project_id)?.identifier}-{issue.sequence_id}
|
|
</p>
|
|
<h5 className="truncate text-sm">{issue.name}</h5>
|
|
</div>
|
|
<div>
|
|
<InboxIssueStatus
|
|
workspaceSlug={workspaceSlug}
|
|
projectId={projectId}
|
|
inboxId={inboxId}
|
|
issueId={issueId}
|
|
iconSize={14}
|
|
/>
|
|
</div>
|
|
</div>
|
|
|
|
<div className="flex flex-wrap items-center gap-2">
|
|
<Tooltip tooltipHeading="Priority" tooltipContent={`${issue.priority ?? "None"}`}>
|
|
<PriorityIcon priority={issue.priority ?? null} className="h-3.5 w-3.5" />
|
|
</Tooltip>
|
|
<Tooltip tooltipHeading="Created on" tooltipContent={`${renderFormattedDate(issue.created_at ?? "")}`}>
|
|
<div className="flex items-center gap-1 rounded border border-custom-border-200 px-2 py-[0.19rem] text-xs text-custom-text-200 shadow-sm">
|
|
<CalendarDays size={12} strokeWidth={1.5} />
|
|
<span>{renderFormattedDate(issue.created_at ?? "")}</span>
|
|
</div>
|
|
</Tooltip>
|
|
</div>
|
|
</div>
|
|
</Link>
|
|
</>
|
|
);
|
|
});
|