mirror of
https://github.com/makeplane/plane
synced 2024-06-14 14:31:34 +00:00
4d0f641ee0
* [WEB-588] chore: remove the word `title` from the issue title tooltip. * fix: github url fixes in feature deploy action --------- Co-authored-by: sriram veeraghanta <veeraghanta.sriram@gmail.com>
107 lines
3.5 KiB
TypeScript
107 lines
3.5 KiB
TypeScript
import { observer } from "mobx-react";
|
|
// hooks
|
|
import { useApplication, useIssueDetail, useProject, useProjectState } from "hooks/store";
|
|
// ui
|
|
import { Tooltip, StateGroupIcon, ControlLink } from "@plane/ui";
|
|
// helpers
|
|
import { renderFormattedDate } from "helpers/date-time.helper";
|
|
|
|
type Props = {
|
|
issueId: string;
|
|
};
|
|
|
|
export const IssueGanttBlock: React.FC<Props> = observer((props) => {
|
|
const { issueId } = props;
|
|
// store hooks
|
|
const {
|
|
router: { workspaceSlug },
|
|
} = useApplication();
|
|
const { getProjectStates } = useProjectState();
|
|
const {
|
|
issue: { getIssueById },
|
|
setPeekIssue,
|
|
} = useIssueDetail();
|
|
// derived values
|
|
const issueDetails = getIssueById(issueId);
|
|
const stateDetails =
|
|
issueDetails && getProjectStates(issueDetails?.project_id)?.find((state) => state?.id == issueDetails?.state_id);
|
|
|
|
const handleIssuePeekOverview = () =>
|
|
workspaceSlug &&
|
|
issueDetails &&
|
|
!issueDetails.tempId &&
|
|
setPeekIssue({ workspaceSlug, projectId: issueDetails.project_id, issueId: issueDetails.id });
|
|
|
|
return (
|
|
<div
|
|
className="relative flex h-full w-full cursor-pointer items-center rounded"
|
|
style={{
|
|
backgroundColor: stateDetails?.color,
|
|
}}
|
|
onClick={handleIssuePeekOverview}
|
|
>
|
|
<div className="absolute left-0 top-0 h-full w-full bg-custom-background-100/50" />
|
|
<Tooltip
|
|
tooltipContent={
|
|
<div className="space-y-1">
|
|
<h5>{issueDetails?.name}</h5>
|
|
<div>
|
|
{renderFormattedDate(issueDetails?.start_date ?? "")} to{" "}
|
|
{renderFormattedDate(issueDetails?.target_date ?? "")}
|
|
</div>
|
|
</div>
|
|
}
|
|
position="top-left"
|
|
>
|
|
<div className="relative w-full truncate px-2.5 py-1 text-sm text-custom-text-100 overflow-hidden">
|
|
{issueDetails?.name}
|
|
</div>
|
|
</Tooltip>
|
|
</div>
|
|
);
|
|
});
|
|
|
|
// rendering issues on gantt sidebar
|
|
export const IssueGanttSidebarBlock: React.FC<Props> = observer((props) => {
|
|
const { issueId } = props;
|
|
// store hooks
|
|
const { getStateById } = useProjectState();
|
|
const { getProjectIdentifierById } = useProject();
|
|
const {
|
|
router: { workspaceSlug },
|
|
} = useApplication();
|
|
const {
|
|
issue: { getIssueById },
|
|
setPeekIssue,
|
|
} = useIssueDetail();
|
|
// derived values
|
|
const issueDetails = getIssueById(issueId);
|
|
const projectIdentifier = issueDetails && getProjectIdentifierById(issueDetails?.project_id);
|
|
const stateDetails = issueDetails && getStateById(issueDetails?.state_id);
|
|
|
|
const handleIssuePeekOverview = () =>
|
|
workspaceSlug &&
|
|
issueDetails &&
|
|
setPeekIssue({ workspaceSlug, projectId: issueDetails.project_id, issueId: issueDetails.id });
|
|
|
|
return (
|
|
<ControlLink
|
|
href={`/${workspaceSlug}/projects/${issueDetails?.project_id}/issues/${issueDetails?.id}`}
|
|
target="_blank"
|
|
onClick={handleIssuePeekOverview}
|
|
className="w-full line-clamp-1 cursor-pointer text-sm text-custom-text-100"
|
|
disabled={!!issueDetails?.tempId}
|
|
>
|
|
<div className="relative flex h-full w-full cursor-pointer items-center gap-2">
|
|
{stateDetails && <StateGroupIcon stateGroup={stateDetails?.group} color={stateDetails?.color} />}
|
|
<div className="flex-shrink-0 text-xs text-custom-text-300">
|
|
{projectIdentifier} {issueDetails?.sequence_id}
|
|
</div>
|
|
<Tooltip tooltipContent={issueDetails?.name}>
|
|
<span className="flex-grow truncate text-sm font-medium">{issueDetails?.name}</span>
|
|
</Tooltip>
|
|
</div>
|
|
</ControlLink>
|
|
);
|
|
});
|