forked from github/plane
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>
52 lines
1.7 KiB
TypeScript
52 lines
1.7 KiB
TypeScript
import { FC } from "react";
|
|
import { observer } from "mobx-react-lite";
|
|
// hooks
|
|
import { useIssueDetail } from "hooks/store";
|
|
// components
|
|
import { IssueActivityList } from "./activity/activity-list";
|
|
import { IssueCommentCard } from "./comments/comment-card";
|
|
// types
|
|
import { TActivityOperations } from "./root";
|
|
|
|
type TIssueActivityCommentRoot = {
|
|
workspaceSlug: string;
|
|
issueId: string;
|
|
activityOperations: TActivityOperations;
|
|
showAccessSpecifier?: boolean;
|
|
};
|
|
|
|
export const IssueActivityCommentRoot: FC<TIssueActivityCommentRoot> = observer((props) => {
|
|
const { workspaceSlug, issueId, activityOperations, showAccessSpecifier } = props;
|
|
// hooks
|
|
const {
|
|
activity: { getActivityCommentByIssueId },
|
|
comment: {},
|
|
} = useIssueDetail();
|
|
|
|
const activityComments = getActivityCommentByIssueId(issueId);
|
|
|
|
if (!activityComments || (activityComments && activityComments.length <= 0)) return <></>;
|
|
return (
|
|
<div>
|
|
{activityComments.map((activityComment, index) =>
|
|
activityComment.activity_type === "COMMENT" ? (
|
|
<IssueCommentCard
|
|
workspaceSlug={workspaceSlug}
|
|
commentId={activityComment.id}
|
|
activityOperations={activityOperations}
|
|
ends={index === 0 ? "top" : index === activityComments.length - 1 ? "bottom" : undefined}
|
|
showAccessSpecifier={showAccessSpecifier}
|
|
/>
|
|
) : activityComment.activity_type === "ACTIVITY" ? (
|
|
<IssueActivityList
|
|
activityId={activityComment.id}
|
|
ends={index === 0 ? "top" : index === activityComments.length - 1 ? "bottom" : undefined}
|
|
/>
|
|
) : (
|
|
<></>
|
|
)
|
|
)}
|
|
</div>
|
|
);
|
|
});
|