mirror of
https://github.com/makeplane/plane
synced 2024-06-14 14:31:34 +00:00
0cc4468091
* feat: developed reaction selector component * feat add reaction on issue & issue comment refactor: reaction selector component, made hooks to abstracted reaction logic & state by making custom hook * fix: emoji.helper.tsx function * refactor: reaction not working on inbox issue
97 lines
2.4 KiB
TypeScript
97 lines
2.4 KiB
TypeScript
import useSWR from "swr";
|
|
|
|
// fetch keys
|
|
import { ISSUE_REACTION_LIST } from "constants/fetch-keys";
|
|
|
|
// helpers
|
|
import { groupReactions } from "helpers/emoji.helper";
|
|
|
|
// services
|
|
import reactionService from "services/reaction.service";
|
|
|
|
// hooks
|
|
import useUser from "./use-user";
|
|
|
|
const useIssueReaction = (
|
|
workspaceSlug?: string | string[] | null,
|
|
projectId?: string | string[] | null,
|
|
issueId?: string | string[] | null
|
|
) => {
|
|
const user = useUser();
|
|
|
|
const {
|
|
data: reactions,
|
|
mutate: mutateReaction,
|
|
error,
|
|
} = useSWR(
|
|
workspaceSlug && projectId && issueId
|
|
? ISSUE_REACTION_LIST(workspaceSlug.toString(), projectId.toString(), issueId.toString())
|
|
: null,
|
|
workspaceSlug && projectId && issueId
|
|
? () =>
|
|
reactionService.listIssueReactions(
|
|
workspaceSlug.toString(),
|
|
projectId.toString(),
|
|
issueId.toString()
|
|
)
|
|
: null
|
|
);
|
|
|
|
const groupedReactions = groupReactions(reactions || [], "reaction");
|
|
|
|
/**
|
|
* @description Use this function to create user's reaction to an issue. This function will mutate the reactions state.
|
|
* @param {string} reaction
|
|
* @example handleReactionCreate("128077") // hexa-code of the emoji
|
|
*/
|
|
|
|
const handleReactionCreate = async (reaction: string) => {
|
|
if (!workspaceSlug || !projectId || !issueId) return;
|
|
|
|
const data = await reactionService.createIssueReaction(
|
|
workspaceSlug.toString(),
|
|
projectId.toString(),
|
|
issueId.toString(),
|
|
{ reaction }
|
|
);
|
|
|
|
mutateReaction((prev) => [...(prev || []), data]);
|
|
};
|
|
|
|
/**
|
|
* @description Use this function to delete user's reaction from an issue. This function will mutate the reactions state.
|
|
* @param {string} reaction
|
|
* @example handleReactionDelete("123") // 123 -> is emoji hexa-code
|
|
*/
|
|
|
|
const handleReactionDelete = async (reaction: string) => {
|
|
if (!workspaceSlug || !projectId || !issueId) return;
|
|
|
|
mutateReaction(
|
|
(prevData) =>
|
|
prevData?.filter((r) => r.actor !== user?.user?.id || r.reaction !== reaction) || [],
|
|
false
|
|
);
|
|
|
|
await reactionService.deleteIssueReaction(
|
|
workspaceSlug.toString(),
|
|
projectId.toString(),
|
|
issueId.toString(),
|
|
reaction
|
|
);
|
|
|
|
mutateReaction();
|
|
};
|
|
|
|
return {
|
|
isLoading: !reactions && !error,
|
|
reactions,
|
|
groupedReactions,
|
|
handleReactionCreate,
|
|
handleReactionDelete,
|
|
mutateReaction,
|
|
} as const;
|
|
};
|
|
|
|
export default useIssueReaction;
|