2024-01-10 14:39:45 +00:00
|
|
|
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";
|
2024-01-11 12:56:58 +00:00
|
|
|
import useToast from "hooks/use-toast";
|
2024-01-10 14:39:45 +00:00
|
|
|
|
|
|
|
export type TIssueSubscription = {
|
|
|
|
workspaceSlug: string;
|
|
|
|
projectId: string;
|
|
|
|
issueId: string;
|
|
|
|
};
|
|
|
|
|
|
|
|
export const IssueSubscription: FC<TIssueSubscription> = observer((props) => {
|
2024-01-23 12:19:22 +00:00
|
|
|
const { workspaceSlug, projectId, issueId } = props;
|
2024-01-10 14:39:45 +00:00
|
|
|
// hooks
|
|
|
|
const {
|
|
|
|
subscription: { getSubscriptionByIssueId },
|
|
|
|
createSubscription,
|
|
|
|
removeSubscription,
|
|
|
|
} = useIssueDetail();
|
2024-01-11 12:56:58 +00:00
|
|
|
const { setToastAlert } = useToast();
|
2024-01-10 14:39:45 +00:00
|
|
|
// state
|
|
|
|
const [loading, setLoading] = useState(false);
|
|
|
|
|
|
|
|
const subscription = getSubscriptionByIssueId(issueId);
|
|
|
|
|
2024-01-11 12:56:58 +00:00
|
|
|
const handleSubscription = async () => {
|
2024-01-10 14:39:45 +00:00
|
|
|
setLoading(true);
|
2024-01-11 12:56:58 +00:00
|
|
|
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.",
|
|
|
|
});
|
|
|
|
}
|
2024-01-10 14:39:45 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
return (
|
|
|
|
<div>
|
|
|
|
<Button
|
|
|
|
size="sm"
|
|
|
|
prependIcon={<Bell className="h-3 w-3" />}
|
|
|
|
variant="outline-primary"
|
|
|
|
className="hover:!bg-custom-primary-100/20"
|
|
|
|
onClick={handleSubscription}
|
|
|
|
>
|
|
|
|
{loading ? "Loading..." : subscription?.subscribed ? "Unsubscribe" : "Subscribe"}
|
|
|
|
</Button>
|
|
|
|
</div>
|
|
|
|
);
|
|
|
|
});
|