Some checks failed
Branch Build CE / Build Setup (push) Has been cancelled
Branch Build CE / Build-Push Admin Docker Image (push) Has been cancelled
Branch Build CE / Build-Push Web Docker Image (push) Has been cancelled
Branch Build CE / Build-Push Space Docker Image (push) Has been cancelled
Branch Build CE / Build-Push Live Collaboration Docker Image (push) Has been cancelled
Branch Build CE / Build-Push API Server Docker Image (push) Has been cancelled
Branch Build CE / Build-Push Proxy Docker Image (push) Has been cancelled
Branch Build CE / Build-Push AIO Docker Image (push) Has been cancelled
Branch Build CE / Upload Build Assets (push) Has been cancelled
Branch Build CE / Build Release (push) Has been cancelled
CodeQL / Analyze (javascript) (push) Has been cancelled
CodeQL / Analyze (python) (push) Has been cancelled
Codespell / Check for spelling errors (push) Has been cancelled
Sync Repositories / sync_changes (push) Has been cancelled
Synced from upstream: 8853637e981ed7d8a6cff32bd98e7afe20f54362
86 lines
2.9 KiB
TypeScript
86 lines
2.9 KiB
TypeScript
"use client";
|
|
|
|
import type { FC } from "react";
|
|
import { useMemo, useState } from "react";
|
|
import { observer } from "mobx-react";
|
|
// plane imports
|
|
import { stringToEmoji } from "@plane/propel/emoji-icon-picker";
|
|
import { EmojiReactionGroup, EmojiReactionPicker } from "@plane/propel/emoji-reaction";
|
|
import type { EmojiReactionType } from "@plane/propel/emoji-reaction";
|
|
import type { TCommentsOperations, TIssueComment } from "@plane/types";
|
|
import { cn } from "@plane/utils";
|
|
// helpers
|
|
// local imports
|
|
|
|
export type TProps = {
|
|
comment: TIssueComment;
|
|
disabled?: boolean;
|
|
activityOperations: TCommentsOperations;
|
|
};
|
|
|
|
export const CommentReactions: FC<TProps> = observer((props) => {
|
|
const { comment, activityOperations, disabled = false } = props;
|
|
// state
|
|
const [isPickerOpen, setIsPickerOpen] = useState(false);
|
|
|
|
const userReactions = activityOperations.userReactions(comment.id);
|
|
const reactionIds = activityOperations.reactionIds(comment.id);
|
|
|
|
// Transform reactions data to Propel EmojiReactionType format
|
|
const reactions: EmojiReactionType[] = useMemo(() => {
|
|
if (!reactionIds) return [];
|
|
|
|
return Object.keys(reactionIds)
|
|
.filter((reaction) => reactionIds[reaction]?.length > 0)
|
|
.map((reaction) => {
|
|
// Get user names for this reaction
|
|
const tooltipContent = activityOperations.getReactionUsers(reaction, reactionIds);
|
|
// Parse the tooltip content string to extract user names
|
|
const users = tooltipContent ? tooltipContent.split(", ") : [];
|
|
|
|
return {
|
|
emoji: stringToEmoji(reaction),
|
|
count: reactionIds[reaction].length,
|
|
reacted: userReactions?.includes(reaction) || false,
|
|
users: users,
|
|
};
|
|
});
|
|
}, [reactionIds, userReactions, activityOperations]);
|
|
|
|
const handleReactionClick = (emoji: string) => {
|
|
if (disabled || !userReactions) return;
|
|
// Convert emoji back to decimal string format for the API
|
|
const emojiCodePoints = Array.from(emoji).map((char) => char.codePointAt(0));
|
|
const reactionString = emojiCodePoints.join("-");
|
|
activityOperations.react(comment.id, reactionString, userReactions);
|
|
};
|
|
|
|
const handleEmojiSelect = (emoji: string) => {
|
|
if (!userReactions) return;
|
|
// emoji is already in decimal string format from EmojiReactionPicker
|
|
activityOperations.react(comment.id, emoji, userReactions);
|
|
};
|
|
|
|
if (!userReactions) return null;
|
|
|
|
return (
|
|
<div className="relative">
|
|
<EmojiReactionPicker
|
|
isOpen={isPickerOpen}
|
|
handleToggle={setIsPickerOpen}
|
|
onChange={handleEmojiSelect}
|
|
disabled={disabled}
|
|
label={
|
|
<EmojiReactionGroup
|
|
reactions={reactions}
|
|
onReactionClick={handleReactionClick}
|
|
showAddButton={!disabled}
|
|
onAddReaction={() => setIsPickerOpen(true)}
|
|
/>
|
|
}
|
|
placement="bottom-start"
|
|
/>
|
|
</div>
|
|
);
|
|
});
|