// Copyright 2020-2021 Signal Messenger, LLC // SPDX-License-Identifier: AGPL-3.0-only import * as React from 'react'; import type { PropsType as ContactNameProps } from './ContactName'; import { ContactName } from './ContactName'; import { Button, ButtonVariant } from '../Button'; import type { Props as MessageRequestActionsConfirmationProps } from './MessageRequestActionsConfirmation'; import { MessageRequestActionsConfirmation, MessageRequestState, } from './MessageRequestActionsConfirmation'; import { Intl } from '../Intl'; import type { LocalizerType } from '../../types/Util'; export type Props = { i18n: LocalizerType; onAccept(): unknown; } & Omit & Omit< MessageRequestActionsConfirmationProps, 'i18n' | 'state' | 'onChangeState' >; export const MessageRequestActions = ({ conversationType, firstName, i18n, isBlocked, onAccept, onBlock, onBlockAndReportSpam, onDelete, onUnblock, title, }: Props): JSX.Element => { const [mrState, setMrState] = React.useState(MessageRequestState.default); return ( <> {mrState !== MessageRequestState.default ? ( ) : null}

, ]} />

{isBlocked ? ( ) : ( )} {!isBlocked ? ( ) : null}
); };