// 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; firstName?: string; onAccept(): unknown; } & Omit & Pick< MessageRequestActionsConfirmationProps, 'conversationType' | 'onBlock' | 'onBlockAndReportSpam' | 'onDelete' >; export const MandatoryProfileSharingActions = ({ conversationType, firstName, i18n, onAccept, onBlock, onBlockAndReportSpam, onDelete, title, }: Props): JSX.Element => { const [mrState, setMrState] = React.useState(MessageRequestState.default); return ( <> {mrState !== MessageRequestState.default ? ( { throw new Error( 'Should not be able to unblock from MandatoryProfileSharingActions' ); }} onDelete={onDelete} title={title} conversationType={conversationType} state={mrState} onChangeState={setMrState} /> ) : null}

), learnMore: ( {i18n('MessageRequests--learn-more')} ), }} />

); };