forked from github/plane
efd3ebf067
* refactor: updated preloaded function for the list view quick add * fix: resolved bug in the assignee dropdown * chore: issue sidebar link improvement * fix: resolved subscription store bug * chore: updated preloaded function for the kanban layout quick add * chore: resolved issues in the list filters and component * chore: filter store updated * fix: issue serializer changed * chore: quick add preload function updated * fix: build error * fix: serializer changed * fix: minor request change * chore: resolved build issues and updated the prepopulated data in the quick add issue. * fix: build fix and code refactor * fix: spreadsheet layout quick add fix * fix: issue peek overview link section updated * fix: cycle status bug fix * fix: serializer changes * fix: assignee and labels listing * chore: issue modal parent_id default value updated * fix: cycle and module issue serializer change * fix: cycle list serializer changed * chore: prepopulated validation in both list and kanban for quick add and group header add issues * chore: group header validation added * fix: issue response payload change * dev: make cycle and module issue create response simillar * chore: custom control link component added * dev: make issue create and update response simillar to list and retrieve * fix: build error * chore: control link component improvement * chore: globalise issue peek overview * chore: control link component improvement * chore: made changes and optimised the issue peek overview root * build-error: resolved build erros for issueId dependancy from issue detail store * chore: peek overview link fix * dev: update state nullable rule --------- Co-authored-by: gurusainath <gurusainath007@gmail.com> Co-authored-by: NarayanBavisetti <narayan3119@gmail.com> Co-authored-by: pablohashescobar <nikhilschacko@gmail.com>
94 lines
3.2 KiB
TypeScript
94 lines
3.2 KiB
TypeScript
import { observer } from "mobx-react-lite";
|
|
// components
|
|
import { IssueProperties } from "../properties/all-properties";
|
|
// hooks
|
|
import { useApplication, useIssueDetail, useProject } from "hooks/store";
|
|
// ui
|
|
import { Spinner, Tooltip, ControlLink } from "@plane/ui";
|
|
// types
|
|
import { TIssue, IIssueDisplayProperties, TIssueMap } from "@plane/types";
|
|
import { EIssueActions } from "../types";
|
|
|
|
interface IssueBlockProps {
|
|
issueId: string;
|
|
issuesMap: TIssueMap;
|
|
handleIssues: (issue: TIssue, action: EIssueActions) => void;
|
|
quickActions: (issue: TIssue) => React.ReactNode;
|
|
displayProperties: IIssueDisplayProperties | undefined;
|
|
canEditProperties: (projectId: string | undefined) => boolean;
|
|
}
|
|
|
|
export const IssueBlock: React.FC<IssueBlockProps> = observer((props: IssueBlockProps) => {
|
|
const { issuesMap, issueId, handleIssues, quickActions, displayProperties, canEditProperties } = props;
|
|
// hooks
|
|
const {
|
|
router: { workspaceSlug, projectId },
|
|
} = useApplication();
|
|
const { getProjectById } = useProject();
|
|
const { setPeekIssue } = useIssueDetail();
|
|
|
|
const updateIssue = (issueToUpdate: TIssue) => {
|
|
handleIssues(issueToUpdate, EIssueActions.UPDATE);
|
|
};
|
|
|
|
const handleIssuePeekOverview = (issue: TIssue) =>
|
|
workspaceSlug &&
|
|
issue &&
|
|
issue.project_id &&
|
|
issue.id &&
|
|
setPeekIssue({ workspaceSlug, projectId: issue.project_id, issueId: issue.id });
|
|
|
|
const issue = issuesMap[issueId];
|
|
|
|
if (!issue) return null;
|
|
|
|
const canEditIssueProperties = canEditProperties(issue.project_id);
|
|
const projectDetails = getProjectById(issue.project_id);
|
|
|
|
return (
|
|
<>
|
|
<div className="relative flex items-center gap-3 bg-custom-background-100 p-3 text-sm">
|
|
{displayProperties && displayProperties?.key && (
|
|
<div className="flex-shrink-0 text-xs font-medium text-custom-text-300">
|
|
{projectDetails?.identifier}-{issue.sequence_id}
|
|
</div>
|
|
)}
|
|
|
|
{issue?.tempId !== undefined && (
|
|
<div className="absolute left-0 top-0 z-[99999] h-full w-full animate-pulse bg-custom-background-100/20" />
|
|
)}
|
|
|
|
<ControlLink
|
|
href={`/${workspaceSlug}/projects/${projectId}/issues/${issueId}`}
|
|
target="_blank"
|
|
onClick={() => handleIssuePeekOverview(issue)}
|
|
className="w-full line-clamp-1 cursor-pointer text-sm font-medium text-custom-text-100"
|
|
>
|
|
<Tooltip tooltipHeading="Title" tooltipContent={issue.name}>
|
|
<span>{issue.name}</span>
|
|
</Tooltip>
|
|
</ControlLink>
|
|
|
|
<div className="ml-auto flex flex-shrink-0 items-center gap-2">
|
|
{!issue?.tempId ? (
|
|
<>
|
|
<IssueProperties
|
|
className="relative flex items-center gap-2 overflow-x-auto whitespace-nowrap"
|
|
issue={issue}
|
|
isReadOnly={!canEditIssueProperties}
|
|
handleIssues={updateIssue}
|
|
displayProperties={displayProperties}
|
|
/>
|
|
{quickActions(issue)}
|
|
</>
|
|
) : (
|
|
<div className="h-4 w-4">
|
|
<Spinner className="h-4 w-4" />
|
|
</div>
|
|
)}
|
|
</div>
|
|
</div>
|
|
</>
|
|
);
|
|
});
|