mirror of
https://github.com/makeplane/plane
synced 2024-06-14 14:31:34 +00:00
bf9049a7a2
* chore: inbox issue activity * chore: dummy data script * chore: inbox issue activity implementation --------- Co-authored-by: Anmol Singh Bhatia <anmolsinghbhatia@plane.so>
43 lines
1.2 KiB
TypeScript
43 lines
1.2 KiB
TypeScript
import { FC } from "react";
|
|
import { observer } from "mobx-react";
|
|
// hooks
|
|
import { Inbox } from "lucide-react";
|
|
import { useIssueDetail } from "@/hooks/store";
|
|
// components
|
|
import { IssueActivityBlockComponent } from "./";
|
|
// icons
|
|
|
|
type TIssueInboxActivity = { activityId: string; ends: "top" | "bottom" | undefined };
|
|
|
|
export const IssueInboxActivity: FC<TIssueInboxActivity> = observer((props) => {
|
|
const { activityId, ends } = props;
|
|
// hooks
|
|
const {
|
|
activity: { getActivityById },
|
|
} = useIssueDetail();
|
|
|
|
const activity = getActivityById(activityId);
|
|
|
|
const getInboxActivityMessage = () => {
|
|
switch (activity?.verb) {
|
|
case "-1":
|
|
return "declined this issue from inbox.";
|
|
case "0":
|
|
return "snoozed this issue.";
|
|
case "1":
|
|
return "accepted this issue from inbox.";
|
|
case "2":
|
|
return "declined this issue from inbox by marking a duplicate issue.";
|
|
default:
|
|
return "updated inbox issue status.";
|
|
}
|
|
};
|
|
|
|
if (!activity) return <></>;
|
|
return (
|
|
<IssueActivityBlockComponent icon={<Inbox className="h-4 w-4 flex-shrink-0" />} activityId={activityId} ends={ends}>
|
|
<>{getInboxActivityMessage()}</>
|
|
</IssueActivityBlockComponent>
|
|
);
|
|
});
|