mirror of
https://github.com/makeplane/plane
synced 2024-06-14 14:31:34 +00:00
f88109ef04
* fix: issue activity and comment change * chore: posthog enabled * chore: comment creation in activity * chore: comment crud in store mutation * fix: issue activity/ comments `disable` and `showAccessSpecifier` logic. * chore: comment reaction serializer change * conflicts: merge conflicts resolved * conflicts: merge conflicts resolved * chore: add issue activity/ comments to peek-overview. * imporve `showAccessIdentifier` logic. * chore: remove quotes from issue activity. * chore: use `projectLabels` instead of `workspaceLabels` in labels activity. * fix: project publish `is_deployed` not updating bug. * cleanup * fix: posthog enabled * fix: typos and the comment endpoint updates * fix: issue activity icons update --------- Co-authored-by: NarayanBavisetti <narayan3119@gmail.com> Co-authored-by: Prateek Shourya <prateekshourya29@gmail.com>
131 lines
4.2 KiB
TypeScript
131 lines
4.2 KiB
TypeScript
import { useRouter } from "next/router";
|
|
import useSWR, { mutate } from "swr";
|
|
import { observer } from "mobx-react-lite";
|
|
// hooks
|
|
import { useApplication, useUser, useWorkspace } from "hooks/store";
|
|
// components
|
|
import { AddComment, IssueActivitySection } from "components/issues";
|
|
// services
|
|
import { IssueService, IssueCommentService } from "services/issue";
|
|
// hooks
|
|
import useToast from "hooks/use-toast";
|
|
// types
|
|
import { TIssue, IIssueActivity } from "@plane/types";
|
|
// fetch-keys
|
|
import { PROJECT_ISSUES_ACTIVITY } from "constants/fetch-keys";
|
|
|
|
type Props = { issueDetails: TIssue };
|
|
|
|
// services
|
|
const issueService = new IssueService();
|
|
const issueCommentService = new IssueCommentService();
|
|
|
|
export const InboxIssueActivity: React.FC<Props> = observer(({ issueDetails }) => {
|
|
// router
|
|
const router = useRouter();
|
|
const { workspaceSlug, projectId } = router.query;
|
|
// store hooks
|
|
const {
|
|
eventTracker: { postHogEventTracker },
|
|
} = useApplication();
|
|
const { currentUser } = useUser();
|
|
const { currentWorkspace } = useWorkspace();
|
|
|
|
const { setToastAlert } = useToast();
|
|
|
|
const { data: issueActivity, mutate: mutateIssueActivity } = useSWR(
|
|
workspaceSlug && projectId && issueDetails ? PROJECT_ISSUES_ACTIVITY(issueDetails.id) : null,
|
|
workspaceSlug && projectId && issueDetails
|
|
? () => issueService.getIssueActivities(workspaceSlug.toString(), projectId.toString(), issueDetails.id)
|
|
: null
|
|
);
|
|
|
|
const handleCommentUpdate = async (commentId: string, data: Partial<any>) => {
|
|
if (!workspaceSlug || !projectId || !issueDetails.id || !currentUser) return;
|
|
|
|
await issueCommentService
|
|
.patchIssueComment(workspaceSlug.toString(), projectId.toString(), issueDetails.id, commentId, data)
|
|
.then((res) => {
|
|
mutateIssueActivity();
|
|
postHogEventTracker(
|
|
"COMMENT_UPDATED",
|
|
{
|
|
...res,
|
|
state: "SUCCESS",
|
|
},
|
|
{
|
|
isGrouping: true,
|
|
groupType: "Workspace_metrics",
|
|
groupId: currentWorkspace?.id!,
|
|
}
|
|
);
|
|
});
|
|
};
|
|
|
|
const handleCommentDelete = async (commentId: string) => {
|
|
if (!workspaceSlug || !projectId || !issueDetails.id || !currentUser) return;
|
|
|
|
mutateIssueActivity((prevData: any) => prevData?.filter((p: any) => p.id !== commentId), false);
|
|
|
|
await issueCommentService
|
|
.deleteIssueComment(workspaceSlug.toString(), projectId.toString(), issueDetails.id, commentId)
|
|
.then(() => {
|
|
mutateIssueActivity();
|
|
postHogEventTracker(
|
|
"COMMENT_DELETED",
|
|
{
|
|
state: "SUCCESS",
|
|
},
|
|
{
|
|
isGrouping: true,
|
|
groupType: "Workspace_metrics",
|
|
groupId: currentWorkspace?.id!,
|
|
}
|
|
);
|
|
});
|
|
};
|
|
|
|
const handleAddComment = async (formData: IIssueActivity) => {
|
|
if (!workspaceSlug || !issueDetails || !currentUser) return;
|
|
|
|
/* FIXME: Replace this with the new issue activity component --issue-detail-- */
|
|
// await issueCommentService
|
|
// .createIssueComment(workspaceSlug.toString(), issueDetails.project_id, issueDetails.id, formData)
|
|
// .then((res) => {
|
|
// mutate(PROJECT_ISSUES_ACTIVITY(issueDetails.id));
|
|
// postHogEventTracker(
|
|
// "COMMENT_ADDED",
|
|
// {
|
|
// ...res,
|
|
// state: "SUCCESS",
|
|
// },
|
|
// {
|
|
// isGrouping: true,
|
|
// groupType: "Workspace_metrics",
|
|
// groupId: currentWorkspace?.id!,
|
|
// }
|
|
// );
|
|
// })
|
|
// .catch(() =>
|
|
// setToastAlert({
|
|
// type: "error",
|
|
// title: "Error!",
|
|
// message: "Comment could not be posted. Please try again.",
|
|
// })
|
|
// );
|
|
};
|
|
|
|
return (
|
|
<div className="space-y-5">
|
|
{/* FIXME: Replace this with the new issue activity component --issue-detail-- */}
|
|
{/* <h3 className="text-lg text-custom-text-100">Comments/Activity</h3>
|
|
<IssueActivitySection
|
|
activity={issueActivity}
|
|
handleCommentUpdate={handleCommentUpdate}
|
|
handleCommentDelete={handleCommentDelete}
|
|
/>
|
|
<AddComment onSubmit={handleAddComment} /> */}
|
|
</div>
|
|
);
|
|
});
|