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

, ]} />

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