signal-desktop/ts/components/fun/base/FunPopover.tsx
automated-signal 7eb30447d8
Fix space key opening lightbox on image reactions
Co-authored-by: Jamie Kyle <113370520+jamiebuilds-signal@users.noreply.github.com>
2025-07-21 12:49:57 -05:00

59 lines
1.8 KiB
TypeScript

// Copyright 2025 Signal Messenger, LLC
// SPDX-License-Identifier: AGPL-3.0-only
import type { KeyboardEvent, ReactNode } from 'react';
import React, { useCallback } from 'react';
import type { Placement } from 'react-aria';
import { Dialog, Popover } from 'react-aria-components';
import classNames from 'classnames';
import * as Tooltip from '@radix-ui/react-tooltip';
import { ThemeType } from '../../../types/Util';
export type FunPopoverProps = Readonly<{
placement?: Placement;
theme?: ThemeType;
children: ReactNode;
}>;
export function FunPopover(props: FunPopoverProps): JSX.Element {
const shouldCloseOnInteractOutside = useCallback(
(element: Element): boolean => {
const match = element.closest(
[
// Don't close when quill steals focus
'.module-composition-input__input',
// Don't close when clicking tooltip
'.FunTooltip',
].join(', ')
);
if (match != null) {
return false;
}
return true;
},
[]
);
const handleKeyDown = useCallback((event: KeyboardEvent) => {
event.stopPropagation();
}, []);
return (
<Tooltip.Provider>
{/* Prevents keyboard events from bubbling up outside of the popover */}
{/* eslint-disable-next-line jsx-a11y/no-static-element-interactions */}
<div onKeyDown={handleKeyDown}>
<Popover
data-fun-overlay
className={classNames('FunPopover', {
'light-theme': props.theme === ThemeType.light,
'dark-theme': props.theme === ThemeType.dark,
})}
placement={props.placement}
shouldCloseOnInteractOutside={shouldCloseOnInteractOutside}
>
<Dialog className="FunPopover__Dialog">{props.children}</Dialog>
</Popover>
</div>
</Tooltip.Provider>
);
}