/* Copyright 2024 New Vector Ltd. SPDX-License-Identifier: AGPL-3.0-only Please see LICENSE in the repository root for full details. */ import { Button as CpdButton, Tooltip, Alert } from "@vector-im/compound-web"; import { RaisedHandSolidIcon, ChevronDownIcon, ChevronUpIcon, ReactionSolidIcon, } from "@vector-im/compound-design-tokens/assets/web/icons"; import { ComponentPropsWithoutRef, FC, ReactNode, useCallback, useEffect, useMemo, useState, } from "react"; import { useTranslation } from "react-i18next"; import { logger } from "matrix-js-sdk/src/logger"; import classNames from "classnames"; import { useReactions } from "../useReactions"; import styles from "./ReactionToggleButton.module.css"; import { ReactionOption, ReactionSet, ReactionsRowSize } from "../reactions"; import { Modal } from "../Modal"; interface InnerButtonProps extends ComponentPropsWithoutRef<"button"> { raised: boolean; open: boolean; } const InnerButton: FC = ({ raised, open, ...props }) => { const { t } = useTranslation(); return ( ); }; export function ReactionPopupMenu({ sendReaction, toggleRaisedHand, isHandRaised, canReact, errorText, }: { sendReaction: (reaction: ReactionOption) => void; toggleRaisedHand: () => void; errorText?: string; isHandRaised: boolean; canReact: boolean; }): ReactNode { const { t } = useTranslation(); const [isFullyExpanded, setExpanded] = useState(false); const filteredReactionSet = useMemo( () => (isFullyExpanded ? ReactionSet : ReactionSet.slice(0, 5)), [isFullyExpanded], ); const label = isHandRaised ? t("action.lower_hand") : t("action.raise_hand"); return ( <> {errorText && ( {errorText} )}
toggleRaisedHand()} iconOnly Icon={RaisedHandSolidIcon} />
{filteredReactionSet.map((reaction, index) => (
  • sendReaction(reaction)} aria-keyshortcuts={ index < ReactionsRowSize ? (index + 1).toString() : undefined } > {reaction.emoji}
  • ))}
    setExpanded(!isFullyExpanded)} />
    ); } interface ReactionToggleButtonProps extends ComponentPropsWithoutRef<"button"> { userId: string; } export function ReactionToggleButton({ userId, ...props }: ReactionToggleButtonProps): ReactNode { const { t } = useTranslation(); const { raisedHands, toggleRaisedHand, sendReaction, reactions } = useReactions(); const [busy, setBusy] = useState(false); const [showReactionsMenu, setShowReactionsMenu] = useState(false); const [errorText, setErrorText] = useState(); const isHandRaised = !!raisedHands[userId]; const canReact = !reactions[userId]; useEffect(() => { // Clear whenever the reactions menu state changes. setErrorText(undefined); }, [showReactionsMenu]); const sendRelation = useCallback( async (reaction: ReactionOption) => { try { setBusy(true); await sendReaction(reaction); setErrorText(undefined); setShowReactionsMenu(false); } catch (ex) { setErrorText(ex instanceof Error ? ex.message : "Unknown error"); logger.error("Failed to send reaction", ex); } finally { setBusy(false); } }, [sendReaction], ); const wrappedToggleRaisedHand = useCallback(() => { const toggleHand = async (): Promise => { try { setBusy(true); await toggleRaisedHand(); setShowReactionsMenu(false); } catch (ex) { setErrorText(ex instanceof Error ? ex.message : "Unknown error"); logger.error("Failed to raise/lower hand", ex); } finally { setBusy(false); } }; void toggleHand(); }, [toggleRaisedHand]); return ( <> setShowReactionsMenu((show) => !show)} raised={isHandRaised} open={showReactionsMenu} {...props} /> setShowReactionsMenu(false)} > void sendRelation(reaction)} toggleRaisedHand={wrappedToggleRaisedHand} /> ); }