mirror of
https://github.com/makeplane/plane
synced 2024-06-14 14:31:34 +00:00
e08fc59114
* feat: spreadsheet view * fix: fix scroll and overflow issues, feat: updated issue properties component, style: ui improvements * feat: sub-issue toggle and sub-issue hook added, chore: code refactor * fix: only render parent issue * feat: sub issue fetching hook updated and nested sub issue added, chore: code refactor * style: title sticky to left on scroll and column styling * fix: tooltip , filter and view z-index fix * feat: spreadsheet view column sorting, fix: sticky scroll issue fix * feat: updated issue view filter for spreadsheet view * style: spreadsheet view column * feat: double click to edit title * fix: estimate sorting fix * style: spreadsheet view columns * fix: spreadsheet view mutation, feat: edit , copy and delete option added * fix: edit sub issue fix
267 lines
8.9 KiB
TypeScript
267 lines
8.9 KiB
TypeScript
import React, { useCallback } from "react";
|
|
|
|
import Link from "next/link";
|
|
import { useRouter } from "next/router";
|
|
|
|
import { mutate } from "swr";
|
|
|
|
// components
|
|
import {
|
|
ViewAssigneeSelect,
|
|
ViewDueDateSelect,
|
|
ViewEstimateSelect,
|
|
ViewPrioritySelect,
|
|
ViewStateSelect,
|
|
} from "components/issues";
|
|
// icons
|
|
import { CustomMenu, Icon } from "components/ui";
|
|
import { LinkIcon, PencilIcon, TrashIcon, XMarkIcon } from "@heroicons/react/24/outline";
|
|
// hooks
|
|
import useSpreadsheetIssuesView from "hooks/use-spreadsheet-issues-view";
|
|
import useToast from "hooks/use-toast";
|
|
// services
|
|
import issuesService from "services/issues.service";
|
|
// constant
|
|
import {
|
|
CYCLE_ISSUES_WITH_PARAMS,
|
|
MODULE_ISSUES_WITH_PARAMS,
|
|
PROJECT_ISSUES_LIST_WITH_PARAMS,
|
|
VIEW_ISSUES,
|
|
} from "constants/fetch-keys";
|
|
// types
|
|
import { ICurrentUserResponse, IIssue, Properties, UserAuth } from "types";
|
|
// helper
|
|
import { copyTextToClipboard } from "helpers/string.helper";
|
|
|
|
type Props = {
|
|
issue: IIssue;
|
|
expanded: boolean;
|
|
handleToggleExpand: (issueId: string) => void;
|
|
properties: Properties;
|
|
handleEditIssue: () => void;
|
|
handleDeleteIssue: (issue: IIssue) => void;
|
|
gridTemplateColumns: string;
|
|
user: ICurrentUserResponse | undefined;
|
|
userAuth: UserAuth;
|
|
nestingLevel: number;
|
|
};
|
|
|
|
export const SingleSpreadsheetIssue: React.FC<Props> = ({
|
|
issue,
|
|
expanded,
|
|
handleToggleExpand,
|
|
properties,
|
|
handleEditIssue,
|
|
handleDeleteIssue,
|
|
gridTemplateColumns,
|
|
user,
|
|
userAuth,
|
|
nestingLevel,
|
|
}) => {
|
|
const router = useRouter();
|
|
|
|
const { workspaceSlug, projectId, cycleId, moduleId, viewId } = router.query;
|
|
|
|
const { params } = useSpreadsheetIssuesView();
|
|
|
|
const { setToastAlert } = useToast();
|
|
|
|
const partialUpdateIssue = useCallback(
|
|
(formData: Partial<IIssue>, issueId: string) => {
|
|
if (!workspaceSlug || !projectId) return;
|
|
|
|
const fetchKey = cycleId
|
|
? CYCLE_ISSUES_WITH_PARAMS(cycleId.toString(), params)
|
|
: moduleId
|
|
? MODULE_ISSUES_WITH_PARAMS(moduleId.toString(), params)
|
|
: viewId
|
|
? VIEW_ISSUES(viewId.toString(), params)
|
|
: PROJECT_ISSUES_LIST_WITH_PARAMS(projectId.toString(), params);
|
|
|
|
mutate<IIssue[]>(
|
|
fetchKey,
|
|
(prevData) =>
|
|
(prevData ?? []).map((p) => {
|
|
if (p.id === issueId) {
|
|
return {
|
|
...p,
|
|
...formData,
|
|
};
|
|
}
|
|
return p;
|
|
}),
|
|
false
|
|
);
|
|
|
|
issuesService
|
|
.patchIssue(workspaceSlug as string, projectId as string, issueId as string, formData, user)
|
|
.then(() => {
|
|
mutate(fetchKey);
|
|
})
|
|
.catch((error) => {
|
|
console.log(error);
|
|
});
|
|
},
|
|
[workspaceSlug, projectId, cycleId, moduleId, viewId, params, user]
|
|
);
|
|
|
|
const handleCopyText = () => {
|
|
const originURL =
|
|
typeof window !== "undefined" && window.location.origin ? window.location.origin : "";
|
|
copyTextToClipboard(
|
|
`${originURL}/${workspaceSlug}/projects/${projectId}/issues/${issue.id}`
|
|
).then(() => {
|
|
setToastAlert({
|
|
type: "success",
|
|
title: "Link Copied!",
|
|
message: "Issue link copied to clipboard.",
|
|
});
|
|
});
|
|
};
|
|
|
|
const paddingLeft = `${nestingLevel * 68}px`;
|
|
|
|
const isNotAllowed = userAuth.isGuest || userAuth.isViewer;
|
|
|
|
return (
|
|
<div
|
|
className="relative group grid auto-rows-[minmax(44px,1fr)] hover:rounded-sm hover:bg-brand-surface-2 border-b border-brand-base w-full min-w-max"
|
|
style={{ gridTemplateColumns }}
|
|
>
|
|
<div className="flex gap-1.5 items-center px-4 sticky left-0 z-10 text-brand-secondary bg-brand-base group-hover:text-brand-base group-hover:bg-brand-surface-2 border-brand-base w-full">
|
|
<span className="flex gap-1 items-center" style={issue.parent ? { paddingLeft } : {}}>
|
|
{properties.key && (
|
|
<>
|
|
<div className="flex items-center cursor-pointer text-xs text-center hover:text-brand-base w-14 ">
|
|
{issue.project_detail?.identifier}-{issue.sequence_id}
|
|
</div>
|
|
</>
|
|
)}
|
|
|
|
<div className="h-5 w-5">
|
|
{issue.sub_issues_count > 0 && (
|
|
<button
|
|
className="h-5 w-5 hover:bg-brand-surface-1 hover:text-brand-base rounded-sm"
|
|
onClick={() => handleToggleExpand(issue.id)}
|
|
>
|
|
<Icon iconName="chevron_right" className={`${expanded ? "rotate-90" : ""}`} />
|
|
</button>
|
|
)}
|
|
</div>
|
|
</span>
|
|
<Link href={`/${workspaceSlug}/projects/${issue?.project_detail?.id}/issues/${issue.id}`}>
|
|
<a className="truncate text-brand-base cursor-pointer w-full text-[0.825rem]">
|
|
{issue.name}
|
|
</a>
|
|
</Link>
|
|
</div>
|
|
{properties.state && (
|
|
<div className="flex items-center text-xs text-brand-secondary text-center p-2 group-hover:bg-brand-surface-2 border-brand-base">
|
|
<ViewStateSelect
|
|
issue={issue}
|
|
partialUpdateIssue={partialUpdateIssue}
|
|
position="left"
|
|
customButton
|
|
user={user}
|
|
isNotAllowed={isNotAllowed}
|
|
/>
|
|
</div>
|
|
)}
|
|
{properties.priority && (
|
|
<div className="flex items-center text-xs text-brand-secondary text-center p-2 group-hover:bg-brand-surface-2 border-brand-base">
|
|
<ViewPrioritySelect
|
|
issue={issue}
|
|
partialUpdateIssue={partialUpdateIssue}
|
|
position="left"
|
|
noBorder
|
|
user={user}
|
|
isNotAllowed={isNotAllowed}
|
|
/>
|
|
</div>
|
|
)}
|
|
{properties.assignee && (
|
|
<div className="flex items-center text-xs text-brand-secondary text-center p-2 group-hover:bg-brand-surface-2 border-brand-base">
|
|
<ViewAssigneeSelect
|
|
issue={issue}
|
|
partialUpdateIssue={partialUpdateIssue}
|
|
position="left"
|
|
customButton
|
|
user={user}
|
|
isNotAllowed={isNotAllowed}
|
|
/>
|
|
</div>
|
|
)}
|
|
{properties.labels ? (
|
|
issue.label_details.length > 0 ? (
|
|
<div className="flex items-center gap-2 text-xs text-brand-secondary text-center p-2 group-hover:bg-brand-surface-2 border-brand-base">
|
|
{issue.label_details.slice(0, 4).map((label, index) => (
|
|
<div className={`flex h-4 w-4 rounded-full ${index ? "-ml-3.5" : ""}`}>
|
|
<span
|
|
className={`h-4 w-4 flex-shrink-0 rounded-full border group-hover:bg-brand-surface-2 border-brand-base
|
|
`}
|
|
style={{
|
|
backgroundColor: label?.color && label.color !== "" ? label.color : "#000000",
|
|
}}
|
|
/>
|
|
</div>
|
|
))}
|
|
{issue.label_details.length > 4 ? <span>+{issue.label_details.length - 4}</span> : null}
|
|
</div>
|
|
) : (
|
|
<div className="flex items-center text-xs text-brand-secondary text-center p-2 group-hover:bg-brand-surface-2 border-brand-base">
|
|
No Labels
|
|
</div>
|
|
)
|
|
) : (
|
|
""
|
|
)}
|
|
{properties.due_date && (
|
|
<div className="flex items-center text-xs text-brand-secondary text-center p-2 group-hover:bg-brand-surface-2 border-brand-base">
|
|
<ViewDueDateSelect
|
|
issue={issue}
|
|
partialUpdateIssue={partialUpdateIssue}
|
|
noBorder
|
|
user={user}
|
|
isNotAllowed={isNotAllowed}
|
|
/>
|
|
</div>
|
|
)}
|
|
{properties.estimate && (
|
|
<div className="flex items-center text-xs text-brand-secondary text-center p-2 group-hover:bg-brand-surface-2 border-brand-base">
|
|
<ViewEstimateSelect
|
|
issue={issue}
|
|
partialUpdateIssue={partialUpdateIssue}
|
|
position="left"
|
|
user={user}
|
|
isNotAllowed={isNotAllowed}
|
|
/>
|
|
</div>
|
|
)}
|
|
<div className="absolute top-2.5 right-2.5 z-30 cursor-pointer opacity-0 group-hover:opacity-100">
|
|
{!isNotAllowed && (
|
|
<CustomMenu width="auto" ellipsis>
|
|
<CustomMenu.MenuItem onClick={handleEditIssue}>
|
|
<div className="flex items-center justify-start gap-2">
|
|
<PencilIcon className="h-4 w-4" />
|
|
<span>Edit issue</span>
|
|
</div>
|
|
</CustomMenu.MenuItem>
|
|
<CustomMenu.MenuItem onClick={() => handleDeleteIssue(issue)}>
|
|
<div className="flex items-center justify-start gap-2">
|
|
<TrashIcon className="h-4 w-4" />
|
|
<span>Delete issue</span>
|
|
</div>
|
|
</CustomMenu.MenuItem>
|
|
<CustomMenu.MenuItem onClick={handleCopyText}>
|
|
<div className="flex items-center justify-start gap-2">
|
|
<LinkIcon className="h-4 w-4" />
|
|
<span>Copy issue link</span>
|
|
</div>
|
|
</CustomMenu.MenuItem>
|
|
</CustomMenu>
|
|
)}
|
|
</div>
|
|
</div>
|
|
);
|
|
};
|