import { FC, useState } from "react"; import { Bell } from "lucide-react"; import { observer } from "mobx-react-lite"; // UI import { Button } from "@plane/ui"; // hooks import { useIssueDetail } from "hooks/store"; import useToast from "hooks/use-toast"; export type TIssueSubscription = { workspaceSlug: string; projectId: string; issueId: string; currentUserId: string; }; export const IssueSubscription: FC = observer((props) => { const { workspaceSlug, projectId, issueId, currentUserId } = props; // hooks const { issue: { getIssueById }, subscription: { getSubscriptionByIssueId }, createSubscription, removeSubscription, } = useIssueDetail(); const { setToastAlert } = useToast(); // state const [loading, setLoading] = useState(false); const issue = getIssueById(issueId); const subscription = getSubscriptionByIssueId(issueId); const handleSubscription = async () => { setLoading(true); try { if (subscription?.subscribed) await removeSubscription(workspaceSlug, projectId, issueId); else await createSubscription(workspaceSlug, projectId, issueId); setToastAlert({ type: "success", title: `Issue ${subscription?.subscribed ? `unsubscribed` : `subscribed`} successfully.!`, message: `Issue ${subscription?.subscribed ? `unsubscribed` : `subscribed`} successfully.!`, }); setLoading(false); } catch (error) { setLoading(false); setToastAlert({ type: "error", title: "Error", message: "Something went wrong. Please try again later.", }); } }; if (issue?.created_by === currentUserId || issue?.assignee_ids?.includes(currentUserId)) return <>; return (
); });