/* Copyright 2024 New Vector Ltd. SPDX-License-Identifier: AGPL-3.0-only OR LicenseRef-Element-Commercial 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 { type ComponentPropsWithoutRef, type FC, type ReactNode, useCallback, useEffect, useMemo, useState, } from "react"; import { useTranslation } from "react-i18next"; import { logger } from "matrix-js-sdk/lib/logger"; import classNames from "classnames"; import { useReactionsSender } from "../reactions/useReactionsSender"; import styles from "./ReactionToggleButton.module.css"; import { type ReactionOption, ReactionSet, ReactionsRowSize, } from "../reactions"; import { Modal } from "../Modal"; import { type CallViewModel } from "../state/CallViewModel"; import { useBehavior } from "../useBehavior"; 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"> { identifier: string; vm: CallViewModel; } export function ReactionToggleButton({ identifier, vm, ...props }: ReactionToggleButtonProps): ReactNode { const { t } = useTranslation(); const { toggleRaisedHand, sendReaction } = useReactionsSender(); const [busy, setBusy] = useState(false); const [showReactionsMenu, setShowReactionsMenu] = useState(false); const [errorText, setErrorText] = useState(); const isHandRaised = !!useBehavior(vm.handsRaised$)[identifier]; const canReact = !useBehavior(vm.reactions$)[identifier]; 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} /> ); }