forked from github/plane
986f81e3ae
* chore: peek overview and kanban card improvement * chore: peek overview improvement
122 lines
4.5 KiB
TypeScript
122 lines
4.5 KiB
TypeScript
import { useState, useRef } from "react";
|
|
import { Placement } from "@popperjs/core";
|
|
import { observer } from "mobx-react";
|
|
import { MoreHorizontal } from "lucide-react";
|
|
import { TIssue } from "@plane/types";
|
|
// components
|
|
import { Tooltip, ControlLink } from "@plane/ui";
|
|
// hooks
|
|
import { cn } from "@/helpers/common.helper";
|
|
import { useApplication, useIssueDetail, useProject, useProjectState } from "@/hooks/store";
|
|
import useOutsideClickDetector from "@/hooks/use-outside-click-detector";
|
|
// helpers
|
|
// types
|
|
import { usePlatformOS } from "@/hooks/use-platform-os";
|
|
|
|
type Props = {
|
|
issue: TIssue;
|
|
quickActions: (issue: TIssue, customActionButton?: React.ReactElement, placement?: Placement) => React.ReactNode;
|
|
isDragging?: boolean;
|
|
};
|
|
|
|
export const CalendarIssueBlock: React.FC<Props> = observer((props) => {
|
|
const { issue, quickActions, isDragging = false } = props;
|
|
// hooks
|
|
const {
|
|
router: { workspaceSlug, projectId },
|
|
} = useApplication();
|
|
const { getProjectIdentifierById } = useProject();
|
|
const { getProjectStates } = useProjectState();
|
|
const { peekIssue, setPeekIssue } = useIssueDetail();
|
|
const { isMobile } = usePlatformOS();
|
|
// states
|
|
const [isMenuActive, setIsMenuActive] = useState(false);
|
|
|
|
const menuActionRef = useRef<HTMLDivElement | null>(null);
|
|
|
|
const stateColor = getProjectStates(issue?.project_id)?.find((state) => state?.id == issue?.state_id)?.color || "";
|
|
|
|
const handleIssuePeekOverview = (issue: TIssue) =>
|
|
workspaceSlug &&
|
|
issue &&
|
|
issue.project_id &&
|
|
issue.id &&
|
|
peekIssue?.issueId !== issue.id &&
|
|
setPeekIssue({ workspaceSlug, projectId: issue.project_id, issueId: issue.id });
|
|
|
|
useOutsideClickDetector(menuActionRef, () => setIsMenuActive(false));
|
|
|
|
const customActionButton = (
|
|
<div
|
|
ref={menuActionRef}
|
|
className={`w-full cursor-pointer rounded p-1 text-custom-sidebar-text-400 hover:bg-custom-background-80 ${
|
|
isMenuActive ? "bg-custom-background-80 text-custom-text-100" : "text-custom-text-200"
|
|
}`}
|
|
onClick={() => setIsMenuActive(!isMenuActive)}
|
|
>
|
|
<MoreHorizontal className="h-3.5 w-3.5" />
|
|
</div>
|
|
);
|
|
|
|
const isMenuActionRefAboveScreenBottom =
|
|
menuActionRef?.current && menuActionRef?.current?.getBoundingClientRect().bottom < window.innerHeight - 220;
|
|
|
|
const placement = isMenuActionRefAboveScreenBottom ? "bottom-end" : "top-end";
|
|
|
|
return (
|
|
<ControlLink
|
|
id={`issue-${issue.id}`}
|
|
href={`/${workspaceSlug}/projects/${projectId}/issues/${issue.id}`}
|
|
target="_blank"
|
|
onClick={() => handleIssuePeekOverview(issue)}
|
|
className="w-full cursor-pointer text-sm text-custom-text-100"
|
|
disabled={!!issue?.tempId}
|
|
>
|
|
<>
|
|
{issue?.tempId !== undefined && (
|
|
<div className="absolute left-0 top-0 z-[99999] h-full w-full animate-pulse bg-custom-background-100/20" />
|
|
)}
|
|
|
|
<div
|
|
className={cn(
|
|
"group/calendar-block flex h-10 md:h-8 w-full items-center justify-between gap-1.5 rounded border-b md:border-[0.5px] border-custom-border-200 hover:border-custom-border-400 md:px-1 px-4 py-1.5 ",
|
|
{
|
|
"bg-custom-background-90 shadow-custom-shadow-rg border-custom-primary-100": isDragging,
|
|
},
|
|
{ "bg-custom-background-100 hover:bg-custom-background-90": !isDragging },
|
|
{
|
|
"border border-custom-primary-70 hover:border-custom-primary-70": peekIssue?.issueId === issue.id,
|
|
}
|
|
)}
|
|
>
|
|
<div className="flex h-full items-center gap-1.5 truncate">
|
|
<span
|
|
className="h-full w-0.5 flex-shrink-0 rounded"
|
|
style={{
|
|
backgroundColor: stateColor,
|
|
}}
|
|
/>
|
|
<div className="flex-shrink-0 text-sm md:text-xs text-custom-text-300">
|
|
{getProjectIdentifierById(issue?.project_id)}-{issue.sequence_id}
|
|
</div>
|
|
<Tooltip tooltipContent={issue.name} isMobile={isMobile}>
|
|
<div className="truncate text-sm font-medium md:font-normal md:text-xs">{issue.name}</div>
|
|
</Tooltip>
|
|
</div>
|
|
<div
|
|
className={`flex-shrink-0 md:hidden h-5 w-5 group-hover/calendar-block:block ${
|
|
isMenuActive ? "!block" : ""
|
|
}`}
|
|
onClick={(e) => {
|
|
e.preventDefault();
|
|
e.stopPropagation();
|
|
}}
|
|
>
|
|
{quickActions(issue, customActionButton, placement)}
|
|
</div>
|
|
</div>
|
|
</>
|
|
</ControlLink>
|
|
);
|
|
});
|