mirror of
https://github.com/makeplane/plane
synced 2024-06-14 14:31:34 +00:00
220389e74e
* chore: autorun for the issue detail store * fix: labels mutation * chore: remove old peek overview code * chore: move add to cycle and module logic to store * fix: build errors * chore: add peekProjectId query param for the peek overview * chore: update profile layout * fix: multiple workspaces * style: Issue activity and link design improvements in Peek overview. * fix issue with labels not occupying full widht. * fix links overflow issue. * add tooltip in links to display entire link. * add functionality to copy links to clipboard. * chore: peek overview for all the layouts * fix: build errors --------- Co-authored-by: Prateek Shourya <prateekshourya29@gmail.com> Co-authored-by: sriram veeraghanta <veeraghanta.sriram@gmail.com>
80 lines
2.5 KiB
TypeScript
80 lines
2.5 KiB
TypeScript
import { useRouter } from "next/router";
|
|
// components
|
|
import { ListProperties } from "./properties";
|
|
// ui
|
|
import { Spinner, Tooltip } from "@plane/ui";
|
|
// types
|
|
import { IIssue, IIssueDisplayProperties } from "types";
|
|
import { EIssueActions } from "../types";
|
|
|
|
interface IssueBlockProps {
|
|
columnId: string;
|
|
|
|
issue: IIssue;
|
|
handleIssues: (issue: IIssue, action: EIssueActions) => void;
|
|
quickActions: (group_by: string | null, issue: IIssue) => React.ReactNode;
|
|
displayProperties: IIssueDisplayProperties | undefined;
|
|
isReadonly?: boolean;
|
|
}
|
|
|
|
export const IssueBlock: React.FC<IssueBlockProps> = (props) => {
|
|
const { columnId, issue, handleIssues, quickActions, displayProperties, isReadonly } = props;
|
|
// router
|
|
const router = useRouter();
|
|
const updateIssue = (group_by: string | null, issueToUpdate: IIssue) => {
|
|
handleIssues(issueToUpdate, EIssueActions.UPDATE);
|
|
};
|
|
|
|
const handleIssuePeekOverview = () => {
|
|
const { query } = router;
|
|
|
|
router.push({
|
|
pathname: router.pathname,
|
|
query: { ...query, peekIssueId: issue?.id, peekProjectId: issue?.project },
|
|
});
|
|
};
|
|
|
|
return (
|
|
<>
|
|
<div className="text-sm p-3 relative bg-custom-background-100 flex items-center gap-3">
|
|
{displayProperties && displayProperties?.key && (
|
|
<div className="flex-shrink-0 text-xs text-custom-text-300 font-medium">
|
|
{issue?.project_detail?.identifier}-{issue.sequence_id}
|
|
</div>
|
|
)}
|
|
|
|
{issue?.tempId !== undefined && (
|
|
<div className="absolute top-0 left-0 w-full h-full animate-pulse bg-custom-background-100/20 z-[99999]" />
|
|
)}
|
|
<Tooltip tooltipHeading="Title" tooltipContent={issue.name}>
|
|
<div
|
|
className="line-clamp-1 text-sm font-medium text-custom-text-100 w-full cursor-pointer"
|
|
onClick={handleIssuePeekOverview}
|
|
>
|
|
{issue.name}
|
|
</div>
|
|
</Tooltip>
|
|
|
|
<div className="ml-auto flex-shrink-0 flex items-center gap-2">
|
|
{!issue?.tempId ? (
|
|
<>
|
|
<ListProperties
|
|
columnId={columnId}
|
|
issue={issue}
|
|
isReadonly={isReadonly}
|
|
handleIssues={updateIssue}
|
|
displayProperties={displayProperties}
|
|
/>
|
|
{quickActions(!columnId && columnId === "null" ? null : columnId, issue)}
|
|
</>
|
|
) : (
|
|
<div className="w-4 h-4">
|
|
<Spinner className="w-4 h-4" />
|
|
</div>
|
|
)}
|
|
</div>
|
|
</div>
|
|
</>
|
|
);
|
|
};
|