// Copyright 2019-2021 Signal Messenger, LLC // SPDX-License-Identifier: AGPL-3.0-only import type { MouseEvent } from 'react'; import React, { useCallback } from 'react'; import { animated } from '@react-spring/web'; import { Button, ButtonVariant } from './Button'; import type { LocalizerType } from '../types/Util'; import { ModalHost } from './ModalHost'; import { Modal, ModalWindow } from './Modal'; import type { Theme } from '../util/theme'; import { useAnimated } from '../hooks/useAnimated'; export type ActionSpec = { text: string; action: () => unknown; style?: 'affirmative' | 'negative'; }; export type OwnProps = Readonly<{ actions?: Array; cancelButtonVariant?: ButtonVariant; cancelText?: string; children?: React.ReactNode; hasXButton?: boolean; i18n: LocalizerType; moduleClassName?: string; onCancel?: () => unknown; onClose: () => unknown; onTopOfEverything?: boolean; theme?: Theme; title?: string | React.ReactNode; }>; export type Props = OwnProps; function focusRef(el: HTMLElement | null) { if (el) { el.focus(); } } function getButtonVariant( buttonStyle?: 'affirmative' | 'negative' ): ButtonVariant { if (buttonStyle === 'affirmative') { return ButtonVariant.Primary; } if (buttonStyle === 'negative') { return ButtonVariant.Destructive; } return ButtonVariant.Secondary; } export const ConfirmationDialog = React.memo( ({ moduleClassName, actions = [], cancelText, children, i18n, onCancel, onClose, theme, title, hasXButton, cancelButtonVariant, onTopOfEverything, }: Props) => { const { close, overlayStyles, modalStyles } = useAnimated(onClose, { getFrom: () => ({ opacity: 0, transform: 'scale(0.25)' }), getTo: isOpen => ({ opacity: isOpen ? 1 : 0, transform: 'scale(1)' }), }); const cancelAndClose = useCallback(() => { if (onCancel) { onCancel(); } close(); }, [close, onCancel]); const handleCancel = useCallback( (e: MouseEvent) => { if (e.target === e.currentTarget) { cancelAndClose(); } }, [cancelAndClose] ); const hasActions = Boolean(actions.length); return ( {children} {actions.map((action, i) => ( ))} ); } );