forked from github/plane
8930840a76
* 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 * fix: user not been passed to create/delete function * style: text position & color
98 lines
2.6 KiB
TypeScript
98 lines
2.6 KiB
TypeScript
import useSWR from "swr";
|
|
|
|
// fetch keys
|
|
import { COMMENT_REACTION_LIST } from "constants/fetch-keys";
|
|
|
|
// services
|
|
import reactionService from "services/reaction.service";
|
|
|
|
// helpers
|
|
import { groupReactions } from "helpers/emoji.helper";
|
|
|
|
// hooks
|
|
import useUser from "./use-user";
|
|
|
|
const useCommentReaction = (
|
|
workspaceSlug?: string | string[] | null,
|
|
projectId?: string | string[] | null,
|
|
commendId?: string | string[] | null
|
|
) => {
|
|
const {
|
|
data: commentReactions,
|
|
mutate: mutateCommentReactions,
|
|
error,
|
|
} = useSWR(
|
|
workspaceSlug && projectId && commendId
|
|
? COMMENT_REACTION_LIST(workspaceSlug.toString(), projectId.toString(), commendId.toString())
|
|
: null,
|
|
workspaceSlug && projectId && commendId
|
|
? () =>
|
|
reactionService.listIssueCommentReactions(
|
|
workspaceSlug.toString(),
|
|
projectId.toString(),
|
|
commendId.toString()
|
|
)
|
|
: null
|
|
);
|
|
|
|
const user = useUser();
|
|
|
|
const groupedReactions = groupReactions(commentReactions || [], "reaction");
|
|
|
|
/**
|
|
* @description Use this function to create user's reaction to an issue. This function will mutate the reactions state.
|
|
* @param {string} reaction
|
|
* @example handleReactionDelete("123") // 123 -> is emoji hexa-code
|
|
*/
|
|
|
|
const handleReactionCreate = async (reaction: string) => {
|
|
if (!workspaceSlug || !projectId || !commendId) return;
|
|
|
|
const data = await reactionService.createIssueCommentReaction(
|
|
workspaceSlug.toString(),
|
|
projectId.toString(),
|
|
commendId.toString(),
|
|
{ reaction },
|
|
user.user
|
|
);
|
|
|
|
mutateCommentReactions((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 || !commendId) return;
|
|
|
|
mutateCommentReactions(
|
|
(prevData) =>
|
|
prevData?.filter((r) => r.actor !== user?.user?.id || r.reaction !== reaction) || []
|
|
);
|
|
|
|
await reactionService.deleteIssueCommentReaction(
|
|
workspaceSlug.toString(),
|
|
projectId.toString(),
|
|
commendId.toString(),
|
|
reaction,
|
|
user.user
|
|
);
|
|
|
|
mutateCommentReactions();
|
|
};
|
|
|
|
return {
|
|
isLoading: !commentReactions && !error,
|
|
commentReactions,
|
|
groupedReactions,
|
|
handleReactionCreate,
|
|
handleReactionDelete,
|
|
mutateCommentReactions,
|
|
} as const;
|
|
};
|
|
|
|
export default useCommentReaction;
|