mirror of
https://github.com/makeplane/plane
synced 2024-06-14 14:31:34 +00:00
5b0066140f
* chore: format all files in the project * fix: removing @types/react from dependencies * fix: adding prettier and eslint config * chore: format files * fix: upgrading turbo version * chore: ignoring warnings and adding todos * fix: updated the type of bubble menu item in the document editor * chore: format files --------- Co-authored-by: Aaryan Khandelwal <aaryankhandu123@gmail.com>
62 lines
1.8 KiB
TypeScript
62 lines
1.8 KiB
TypeScript
import { FC } from "react";
|
|
// components
|
|
import { IssueActivityCard, IssueCommentEditor } from "components/issues";
|
|
// types
|
|
import { IIssueActivity, IUser } from "types";
|
|
|
|
type Props = {
|
|
workspaceSlug: string;
|
|
projectId: string;
|
|
issueId: string;
|
|
user: IUser | null;
|
|
issueActivity: IIssueActivity[] | null;
|
|
issueCommentCreate: (comment: any) => void;
|
|
issueCommentUpdate: (comment: any) => void;
|
|
issueCommentRemove: (commentId: string) => void;
|
|
issueCommentReactionCreate: (commentId: string, reaction: string) => void;
|
|
issueCommentReactionRemove: (commentId: string, reaction: string) => void;
|
|
showCommentAccessSpecifier: boolean;
|
|
};
|
|
|
|
export const IssueActivity: FC<Props> = (props) => {
|
|
const {
|
|
workspaceSlug,
|
|
projectId,
|
|
issueId,
|
|
user,
|
|
issueActivity,
|
|
issueCommentCreate,
|
|
issueCommentUpdate,
|
|
issueCommentRemove,
|
|
issueCommentReactionCreate,
|
|
issueCommentReactionRemove,
|
|
showCommentAccessSpecifier,
|
|
} = props;
|
|
|
|
const handleAddComment = async (formData: any) => {
|
|
if (!formData.comment_html) return;
|
|
await issueCommentCreate(formData);
|
|
};
|
|
|
|
return (
|
|
<div className="flex flex-col gap-3 border-t border-custom-border-200 py-6">
|
|
<div className="text-lg font-medium">Activity</div>
|
|
|
|
<div className="space-y-2">
|
|
<IssueActivityCard
|
|
workspaceSlug={workspaceSlug}
|
|
projectId={projectId}
|
|
issueId={issueId}
|
|
user={user}
|
|
issueActivity={issueActivity}
|
|
issueCommentUpdate={issueCommentUpdate}
|
|
issueCommentRemove={issueCommentRemove}
|
|
issueCommentReactionCreate={issueCommentReactionCreate}
|
|
issueCommentReactionRemove={issueCommentReactionRemove}
|
|
/>
|
|
<IssueCommentEditor onSubmit={handleAddComment} showAccessSpecifier={showCommentAccessSpecifier} />
|
|
</div>
|
|
</div>
|
|
);
|
|
};
|