mirror of
https://github.com/makeplane/plane
synced 2024-06-14 14:31:34 +00:00
e1793dda74
* chore: disabled interaction with title & description in peekview & issue detail * chore: restriction to attachments delete for lower roles * chore: kanban & calendar block drag restriction for lower roles * fix: module/issue sidebar links access for lower roles * fix: issue detail role validation * fix: user role validation condition
276 lines
9.7 KiB
TypeScript
276 lines
9.7 KiB
TypeScript
import Link from "next/link";
|
|
import { useRouter } from "next/router";
|
|
import { observer } from "mobx-react-lite";
|
|
import useSWR, { mutate } from "swr";
|
|
import { MinusCircle } from "lucide-react";
|
|
// mobx store
|
|
import { useMobxStore } from "lib/mobx/store-provider";
|
|
// services
|
|
import { IssueService, IssueCommentService } from "services/issue";
|
|
// hooks
|
|
import useToast from "hooks/use-toast";
|
|
// components
|
|
import {
|
|
AddComment,
|
|
IssueActivitySection,
|
|
IssueAttachmentUpload,
|
|
IssueAttachments,
|
|
IssueDescriptionForm,
|
|
IssueReaction,
|
|
IssueUpdateStatus,
|
|
} from "components/issues";
|
|
import { useState } from "react";
|
|
import { SubIssuesRoot } from "./sub-issues";
|
|
// ui
|
|
import { CustomMenu, LayersIcon, StateGroupIcon } from "@plane/ui";
|
|
// types
|
|
import { IIssue, IIssueActivity } from "types";
|
|
// fetch-keys
|
|
import { PROJECT_ISSUES_ACTIVITY, SUB_ISSUES } from "constants/fetch-keys";
|
|
// constants
|
|
import { EUserWorkspaceRoles } from "constants/workspace";
|
|
|
|
type Props = {
|
|
issueDetails: IIssue;
|
|
submitChanges: (formData: Partial<IIssue>) => Promise<void>;
|
|
uneditable?: boolean;
|
|
};
|
|
|
|
// services
|
|
const issueService = new IssueService();
|
|
const issueCommentService = new IssueCommentService();
|
|
|
|
export const IssueMainContent: React.FC<Props> = observer((props) => {
|
|
const { issueDetails, submitChanges, uneditable } = props;
|
|
// states
|
|
const [isSubmitting, setIsSubmitting] = useState<"submitting" | "submitted" | "saved">("saved");
|
|
// router
|
|
const router = useRouter();
|
|
const { workspaceSlug, projectId, issueId } = router.query;
|
|
// toast alert
|
|
const { setToastAlert } = useToast();
|
|
// mobx store
|
|
const {
|
|
user: { currentUser, currentProjectRole },
|
|
project: projectStore,
|
|
projectState: { states },
|
|
trackEvent: { postHogEventTracker },
|
|
workspace: { currentWorkspace },
|
|
} = useMobxStore();
|
|
|
|
const projectDetails = projectId ? projectStore.project_details[projectId.toString()] : undefined;
|
|
const currentIssueState = projectId
|
|
? states[projectId.toString()]?.find((s) => s.id === issueDetails.state)
|
|
: undefined;
|
|
|
|
const { data: siblingIssues } = useSWR(
|
|
workspaceSlug && projectId && issueDetails?.parent ? SUB_ISSUES(issueDetails.parent) : null,
|
|
workspaceSlug && projectId && issueDetails?.parent
|
|
? () => issueService.subIssues(workspaceSlug.toString(), projectId.toString(), issueDetails.parent ?? "")
|
|
: null
|
|
);
|
|
const siblingIssuesList = siblingIssues?.sub_issues.filter((i) => i.id !== issueDetails.id);
|
|
|
|
const { data: issueActivity, mutate: mutateIssueActivity } = useSWR(
|
|
workspaceSlug && projectId && issueId ? PROJECT_ISSUES_ACTIVITY(issueId.toString()) : null,
|
|
workspaceSlug && projectId && issueId
|
|
? () => issueService.getIssueActivities(workspaceSlug.toString(), projectId.toString(), issueId.toString())
|
|
: null
|
|
);
|
|
|
|
const handleCommentUpdate = async (commentId: string, data: Partial<IIssueActivity>) => {
|
|
if (!workspaceSlug || !projectId || !issueId) return;
|
|
|
|
await issueCommentService
|
|
.patchIssueComment(workspaceSlug as string, projectId as string, issueId as string, commentId, data)
|
|
.then((res) => {
|
|
mutateIssueActivity();
|
|
postHogEventTracker(
|
|
"COMMENT_UPDATED",
|
|
{
|
|
...res,
|
|
state: "SUCCESS",
|
|
},
|
|
{
|
|
isGrouping: true,
|
|
groupType: "Workspace_metrics",
|
|
gorupId: currentWorkspace?.id!,
|
|
}
|
|
);
|
|
});
|
|
};
|
|
|
|
const handleCommentDelete = async (commentId: string) => {
|
|
if (!workspaceSlug || !projectId || !issueId || !currentUser) return;
|
|
|
|
mutateIssueActivity((prevData: any) => prevData?.filter((p: any) => p.id !== commentId), false);
|
|
|
|
await issueCommentService
|
|
.deleteIssueComment(workspaceSlug as string, projectId as string, issueId as string, commentId)
|
|
.then(() => {
|
|
mutateIssueActivity();
|
|
postHogEventTracker(
|
|
"COMMENT_DELETED",
|
|
{
|
|
state: "SUCCESS",
|
|
},
|
|
{
|
|
isGrouping: true,
|
|
groupType: "Workspace_metrics",
|
|
gorupId: currentWorkspace?.id!,
|
|
}
|
|
);
|
|
});
|
|
};
|
|
|
|
const handleAddComment = async (formData: IIssueActivity) => {
|
|
if (!workspaceSlug || !issueDetails || !currentUser) return;
|
|
|
|
await issueCommentService
|
|
.createIssueComment(workspaceSlug.toString(), issueDetails.project, issueDetails.id, formData)
|
|
.then((res) => {
|
|
mutate(PROJECT_ISSUES_ACTIVITY(issueDetails.id));
|
|
postHogEventTracker(
|
|
"COMMENT_ADDED",
|
|
{
|
|
...res,
|
|
state: "SUCCESS",
|
|
},
|
|
{
|
|
isGrouping: true,
|
|
groupType: "Workspace_metrics",
|
|
gorupId: currentWorkspace?.id!,
|
|
}
|
|
);
|
|
})
|
|
.catch(() =>
|
|
setToastAlert({
|
|
type: "error",
|
|
title: "Error!",
|
|
message: "Comment could not be posted. Please try again.",
|
|
})
|
|
);
|
|
};
|
|
|
|
const isAllowed =
|
|
(!!currentProjectRole && currentProjectRole >= EUserWorkspaceRoles.MEMBER) ||
|
|
(uneditable !== undefined && !uneditable);
|
|
|
|
return (
|
|
<>
|
|
<div className="rounded-lg">
|
|
{issueDetails?.parent ? (
|
|
<div className="mb-5 flex w-min items-center gap-3 whitespace-nowrap rounded-md border border-custom-border-300 bg-custom-background-80 px-2.5 py-1 text-xs">
|
|
<Link
|
|
href={`/${workspaceSlug}/projects/${issueDetails.parent_detail?.project_detail.id}/issues/${issueDetails.parent}`}
|
|
>
|
|
<div className="flex items-center gap-3">
|
|
<div className="flex items-center gap-2.5">
|
|
<span
|
|
className="block h-2 w-2 rounded-full"
|
|
style={{
|
|
backgroundColor: issueDetails.parent_detail?.state_detail.color,
|
|
}}
|
|
/>
|
|
<span className="flex-shrink-0 text-custom-text-200">
|
|
{issueDetails.parent_detail?.project_detail.identifier}-{issueDetails.parent_detail?.sequence_id}
|
|
</span>
|
|
</div>
|
|
<span className="truncate text-custom-text-100">
|
|
{issueDetails.parent_detail?.name.substring(0, 50)}
|
|
</span>
|
|
</div>
|
|
</Link>
|
|
|
|
<CustomMenu ellipsis optionsClassName="px-1.5">
|
|
{siblingIssuesList ? (
|
|
siblingIssuesList.length > 0 ? (
|
|
<>
|
|
<h2 className="mb-1 border-b border-custom-border-300 px-2 pb-1 text-xs font-medium text-custom-text-200">
|
|
Sibling issues
|
|
</h2>
|
|
{siblingIssuesList.map((issue) => (
|
|
<CustomMenu.MenuItem
|
|
key={issue.id}
|
|
onClick={() =>
|
|
router.push(`/${workspaceSlug}/projects/${projectId as string}/issues/${issue.id}`)
|
|
}
|
|
className="flex items-center gap-2 py-2"
|
|
>
|
|
<LayersIcon className="h-4 w-4" />
|
|
{issueDetails.project_detail.identifier}-{issue.sequence_id}
|
|
</CustomMenu.MenuItem>
|
|
))}
|
|
</>
|
|
) : (
|
|
<p className="flex items-center gap-2 whitespace-nowrap px-1 py-1 text-left text-xs text-custom-text-200">
|
|
No sibling issues
|
|
</p>
|
|
)
|
|
) : null}
|
|
<CustomMenu.MenuItem
|
|
onClick={() => submitChanges({ parent: null })}
|
|
className="flex items-center gap-2 py-2 text-red-500"
|
|
>
|
|
<MinusCircle className="h-4 w-4" />
|
|
<span> Remove Parent Issue</span>
|
|
</CustomMenu.MenuItem>
|
|
</CustomMenu>
|
|
</div>
|
|
) : null}
|
|
<div className="mb-2.5 flex items-center">
|
|
{currentIssueState && (
|
|
<StateGroupIcon
|
|
className="mr-3 h-4 w-4"
|
|
stateGroup={currentIssueState.group}
|
|
color={currentIssueState.color}
|
|
/>
|
|
)}
|
|
<IssueUpdateStatus isSubmitting={isSubmitting} issueDetail={issueDetails} />
|
|
</div>
|
|
<IssueDescriptionForm
|
|
setIsSubmitting={(value) => setIsSubmitting(value)}
|
|
isSubmitting={isSubmitting}
|
|
workspaceSlug={workspaceSlug as string}
|
|
issue={issueDetails}
|
|
handleFormSubmit={submitChanges}
|
|
isAllowed={isAllowed}
|
|
/>
|
|
|
|
{workspaceSlug && projectId && (
|
|
<IssueReaction
|
|
workspaceSlug={workspaceSlug.toString()}
|
|
projectId={projectId.toString()}
|
|
issueId={issueDetails.id}
|
|
/>
|
|
)}
|
|
|
|
<div className="mt-2 space-y-2">
|
|
<SubIssuesRoot parentIssue={issueDetails} user={currentUser ?? undefined} />
|
|
</div>
|
|
</div>
|
|
<div className="flex flex-col gap-3 py-3">
|
|
<h3 className="text-lg">Attachments</h3>
|
|
<div className="grid grid-cols-1 gap-3 sm:grid-cols-2 xl:grid-cols-3 2xl:grid-cols-4">
|
|
<IssueAttachmentUpload disabled={!isAllowed} />
|
|
<IssueAttachments editable={isAllowed} />
|
|
</div>
|
|
</div>
|
|
<div className="space-y-5 pt-3">
|
|
<h3 className="text-lg text-custom-text-100">Comments/Activity</h3>
|
|
<IssueActivitySection
|
|
activity={issueActivity}
|
|
handleCommentUpdate={handleCommentUpdate}
|
|
handleCommentDelete={handleCommentDelete}
|
|
showAccessSpecifier={projectDetails && projectDetails.is_deployed}
|
|
/>
|
|
<AddComment
|
|
onSubmit={handleAddComment}
|
|
disabled={!isAllowed}
|
|
showAccessSpecifier={projectDetails && projectDetails.is_deployed}
|
|
/>
|
|
</div>
|
|
</>
|
|
);
|
|
});
|