mirror of
https://github.com/makeplane/plane
synced 2024-06-14 14:31:34 +00:00
febf19ccc0
* feat: changemod space * fix: space app dir fixes * fix: build errors
86 lines
3.0 KiB
TypeScript
86 lines
3.0 KiB
TypeScript
import { FC } from "react";
|
|
import { observer } from "mobx-react-lite";
|
|
import { useParams, useRouter, useSearchParams } from "next/navigation";
|
|
// components
|
|
import { IssueBlockDueDate } from "@/components/issues/board-views/block-due-date";
|
|
import { IssueBlockLabels } from "@/components/issues/board-views/block-labels";
|
|
import { IssueBlockPriority } from "@/components/issues/board-views/block-priority";
|
|
import { IssueBlockState } from "@/components/issues/board-views/block-state";
|
|
// mobx hook
|
|
import { useIssueDetails, useProject } from "@/hooks/store";
|
|
// interfaces
|
|
import { IIssue } from "@/types/issue";
|
|
// store
|
|
|
|
type IssueListBlockProps = {
|
|
issue: IIssue;
|
|
workspaceSlug: string;
|
|
projectId: string;
|
|
};
|
|
|
|
export const IssueListBlock: FC<IssueListBlockProps> = observer((props) => {
|
|
const { workspaceSlug, projectId, issue } = props;
|
|
const { board, states, priorities, labels } = useParams<any>();
|
|
const searchParams = useSearchParams();
|
|
// store
|
|
const { project } = useProject();
|
|
const { setPeekId } = useIssueDetails();
|
|
// router
|
|
const router = useRouter();
|
|
|
|
const handleBlockClick = () => {
|
|
setPeekId(issue.id);
|
|
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;
|
|
router.push(`/${workspaceSlug}/${projectId}?${searchParams}`);
|
|
// router.push(`/${workspace_slug?.toString()}/${project_slug}?board=${board?.toString()}&peekId=${issue.id}`);
|
|
};
|
|
|
|
return (
|
|
<div className="relative flex items-center gap-10 bg-custom-background-100 p-3">
|
|
<div className="relative flex w-full flex-grow items-center gap-3 overflow-hidden">
|
|
{/* id */}
|
|
<div className="flex-shrink-0 text-xs font-medium text-custom-text-300">
|
|
{project?.identifier}-{issue?.sequence_id}
|
|
</div>
|
|
{/* name */}
|
|
<div onClick={handleBlockClick} className="flex-grow cursor-pointer truncate text-sm font-medium">
|
|
{issue.name}
|
|
</div>
|
|
</div>
|
|
|
|
<div className="inline-flex flex-shrink-0 items-center gap-2 text-xs">
|
|
{/* priority */}
|
|
{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>
|
|
)}
|
|
|
|
{/* labels */}
|
|
{issue?.label_details && issue?.label_details.length > 0 && (
|
|
<div className="flex-shrink-0">
|
|
<IssueBlockLabels labels={issue?.label_details} />
|
|
</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>
|
|
);
|
|
});
|