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>
35 lines
1.0 KiB
TypeScript
35 lines
1.0 KiB
TypeScript
import { FC } from "react";
|
|
import { observer } from "mobx-react";
|
|
import { MessageSquare } from "lucide-react";
|
|
// hooks
|
|
import { useIssueDetail } from "hooks/store";
|
|
// components
|
|
import { IssueActivityBlockComponent, IssueLink } from "./";
|
|
|
|
type TIssueDescriptionActivity = { activityId: string; showIssue?: boolean; ends: "top" | "bottom" | undefined };
|
|
|
|
export const IssueDescriptionActivity: FC<TIssueDescriptionActivity> = observer((props) => {
|
|
const { activityId, showIssue = true, ends } = props;
|
|
// hooks
|
|
const {
|
|
activity: { getActivityById },
|
|
} = useIssueDetail();
|
|
|
|
const activity = getActivityById(activityId);
|
|
|
|
if (!activity) return <></>;
|
|
return (
|
|
<IssueActivityBlockComponent
|
|
icon={<MessageSquare size={14} color="#6b7280" aria-hidden="true" />}
|
|
activityId={activityId}
|
|
ends={ends}
|
|
>
|
|
<>
|
|
updated the description
|
|
{showIssue ? ` of ` : ``}
|
|
{showIssue && <IssueLink activityId={activityId} />}.
|
|
</>
|
|
</IssueActivityBlockComponent>
|
|
);
|
|
});
|