2023-10-20 12:25:20 +00:00
|
|
|
import { FC } from "react";
|
|
|
|
// components
|
|
|
|
import { IssueActivityCard } from "./card";
|
|
|
|
import { IssueCommentEditor } from "./comment-editor";
|
|
|
|
|
|
|
|
interface IIssueComment {
|
|
|
|
workspaceSlug: string;
|
|
|
|
projectId: string;
|
2023-10-25 13:54:14 +00:00
|
|
|
issueId: string;
|
2023-10-20 12:25:20 +00:00
|
|
|
user: any;
|
|
|
|
issueComments: any;
|
|
|
|
issueCommentCreate: (comment: any) => void;
|
|
|
|
issueCommentUpdate: (comment: any) => void;
|
|
|
|
issueCommentRemove: (commentId: string) => void;
|
|
|
|
issueCommentReactionCreate: (commentId: string, reaction: string) => void;
|
|
|
|
issueCommentReactionRemove: (commentId: string, reaction: string) => void;
|
|
|
|
}
|
|
|
|
|
|
|
|
export const IssueComment: FC<IIssueComment> = (props) => {
|
|
|
|
const {
|
|
|
|
workspaceSlug,
|
|
|
|
projectId,
|
2023-10-25 13:54:14 +00:00
|
|
|
issueId,
|
2023-10-20 12:25:20 +00:00
|
|
|
user,
|
|
|
|
issueComments,
|
|
|
|
issueCommentCreate,
|
|
|
|
issueCommentUpdate,
|
|
|
|
issueCommentRemove,
|
|
|
|
issueCommentReactionCreate,
|
|
|
|
issueCommentReactionRemove,
|
|
|
|
} = props;
|
|
|
|
|
|
|
|
const handleAddComment = async (formData: any) => {
|
|
|
|
if (!formData.comment_html) return;
|
|
|
|
await issueCommentCreate(formData);
|
|
|
|
};
|
|
|
|
|
|
|
|
return (
|
2023-11-01 08:52:29 +00:00
|
|
|
<div className="flex flex-col gap-3 border-t py-6 border-custom-border-200">
|
|
|
|
<div className="font-medium text-lg">Activity</div>
|
2023-10-20 12:25:20 +00:00
|
|
|
|
|
|
|
<div className="space-y-2">
|
|
|
|
<IssueCommentEditor
|
|
|
|
onSubmit={handleAddComment}
|
|
|
|
// showAccessSpecifier={projectDetails && projectDetails.is_deployed}
|
|
|
|
/>
|
|
|
|
|
|
|
|
<IssueActivityCard
|
|
|
|
workspaceSlug={workspaceSlug}
|
|
|
|
projectId={projectId}
|
2023-10-25 13:54:14 +00:00
|
|
|
issueId={issueId}
|
2023-10-20 12:25:20 +00:00
|
|
|
user={user}
|
|
|
|
issueComments={issueComments}
|
|
|
|
issueCommentUpdate={issueCommentUpdate}
|
|
|
|
issueCommentRemove={issueCommentRemove}
|
|
|
|
issueCommentReactionCreate={issueCommentReactionCreate}
|
|
|
|
issueCommentReactionRemove={issueCommentReactionRemove}
|
|
|
|
/>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
);
|
|
|
|
};
|