2023-08-11 11:48:33 +00:00
|
|
|
"use client";
|
|
|
|
|
|
|
|
// mobx react lite
|
|
|
|
import { observer } from "mobx-react-lite";
|
2023-09-01 11:12:30 +00:00
|
|
|
import { useMobxStore } from "lib/mobx/store-provider";
|
|
|
|
|
2023-08-11 11:48:33 +00:00
|
|
|
// components
|
|
|
|
import { IssueBlockPriority } from "components/issues/board-views/block-priority";
|
|
|
|
import { IssueBlockState } from "components/issues/board-views/block-state";
|
|
|
|
import { IssueBlockDueDate } from "components/issues/board-views/block-due-date";
|
|
|
|
// interfaces
|
2023-09-01 11:12:30 +00:00
|
|
|
import { IIssue } from "types/issue";
|
2023-08-11 11:48:33 +00:00
|
|
|
import { RootStore } from "store/root";
|
2023-09-01 11:12:30 +00:00
|
|
|
import { useRouter } from "next/router";
|
|
|
|
|
2023-12-05 11:56:57 +00:00
|
|
|
export const IssueKanBanBlock = observer(({ issue }: { issue: IIssue }) => {
|
2023-09-01 11:12:30 +00:00
|
|
|
const { project: projectStore, issueDetails: issueDetailStore }: RootStore = useMobxStore();
|
2023-08-11 11:48:33 +00:00
|
|
|
|
2023-09-01 11:12:30 +00:00
|
|
|
// router
|
|
|
|
const router = useRouter();
|
2023-12-06 10:57:33 +00:00
|
|
|
const { workspace_slug, project_slug, board, priorities, states, labels } = router.query as {
|
|
|
|
workspace_slug: string;
|
|
|
|
project_slug: string;
|
|
|
|
board: string;
|
|
|
|
priorities: string;
|
|
|
|
states: string;
|
|
|
|
labels: string;
|
|
|
|
};
|
2023-09-01 11:12:30 +00:00
|
|
|
|
|
|
|
const handleBlockClick = () => {
|
|
|
|
issueDetailStore.setPeekId(issue.id);
|
2023-12-06 10:57:33 +00:00
|
|
|
const params: any = { board: board, peekId: issue.id };
|
|
|
|
if (states && states.length > 0) params.states = states;
|
|
|
|
if (priorities && priorities.length > 0) params.priorities = priorities;
|
|
|
|
if (labels && labels.length > 0) params.labels = labels;
|
2023-09-03 20:20:49 +00:00
|
|
|
router.push(
|
2023-09-01 11:12:30 +00:00
|
|
|
{
|
2023-12-06 10:57:33 +00:00
|
|
|
pathname: `/${workspace_slug}/${project_slug}`,
|
|
|
|
query: { ...params },
|
2023-09-01 11:12:30 +00:00
|
|
|
},
|
2023-09-03 20:20:49 +00:00
|
|
|
undefined,
|
2023-09-01 11:12:30 +00:00
|
|
|
{ shallow: true }
|
|
|
|
);
|
|
|
|
};
|
2023-08-11 11:48:33 +00:00
|
|
|
|
|
|
|
return (
|
2023-12-10 10:18:10 +00:00
|
|
|
<div className="flex flex-col gap-1.5 space-y-2 rounded border-[0.5px] border-custom-border-200 bg-custom-background-100 px-3 py-2 text-sm shadow-custom-shadow-2xs">
|
2023-08-11 11:48:33 +00:00
|
|
|
{/* id */}
|
2023-12-10 10:18:10 +00:00
|
|
|
<div className="break-words text-xs text-custom-text-300">
|
2023-09-01 11:12:30 +00:00
|
|
|
{projectStore?.project?.identifier}-{issue?.sequence_id}
|
2023-08-11 11:48:33 +00:00
|
|
|
</div>
|
|
|
|
|
|
|
|
{/* name */}
|
2023-11-23 09:39:46 +00:00
|
|
|
<h6
|
|
|
|
onClick={handleBlockClick}
|
|
|
|
role="button"
|
2023-12-10 10:18:10 +00:00
|
|
|
className="line-clamp-2 cursor-pointer break-words text-sm font-medium"
|
2023-11-23 09:39:46 +00:00
|
|
|
>
|
2023-09-01 11:12:30 +00:00
|
|
|
{issue.name}
|
|
|
|
</h6>
|
2023-08-11 11:48:33 +00:00
|
|
|
|
2023-12-10 10:18:10 +00:00
|
|
|
<div className="hide-horizontal-scrollbar relative flex w-full flex-grow items-end gap-2 overflow-x-scroll">
|
2023-09-01 11:12:30 +00:00
|
|
|
{/* priority */}
|
2023-08-11 11:48:33 +00:00
|
|
|
{issue?.priority && (
|
|
|
|
<div className="flex-shrink-0">
|
|
|
|
<IssueBlockPriority priority={issue?.priority} />
|
|
|
|
</div>
|
|
|
|
)}
|
|
|
|
{/* state */}
|
|
|
|
{issue?.state_detail && (
|
|
|
|
<div className="flex-shrink-0">
|
|
|
|
<IssueBlockState state={issue?.state_detail} />
|
|
|
|
</div>
|
|
|
|
)}
|
|
|
|
{/* due date */}
|
|
|
|
{issue?.target_date && (
|
|
|
|
<div className="flex-shrink-0">
|
|
|
|
<IssueBlockDueDate due_date={issue?.target_date} group={issue?.state_detail?.group} />
|
|
|
|
</div>
|
|
|
|
)}
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
);
|
2023-09-01 11:12:30 +00:00
|
|
|
});
|