You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
69 lines
2.0 KiB
69 lines
2.0 KiB
import React, { useContext } from 'react';
|
|
import PropTypes from 'prop-types';
|
|
import AccountListItem from '../../account-list-item';
|
|
import { I18nContext } from '../../../../contexts/i18n';
|
|
import Tooltip from '../../../ui/tooltip';
|
|
import InfoIcon from '../../../ui/icon/info-icon.component';
|
|
import { SEVERITIES } from '../../../../helpers/constants/design-system';
|
|
|
|
import PermissionsConnectHeader from '../../permissions-connect-header';
|
|
|
|
export default function SignatureRequestSIWEHeader({
|
|
fromAccount,
|
|
domain,
|
|
isSIWEDomainValid,
|
|
subjectMetadata,
|
|
}) {
|
|
const t = useContext(I18nContext);
|
|
|
|
return (
|
|
<div className="signature-request-siwe-header">
|
|
<PermissionsConnectHeader
|
|
iconUrl={subjectMetadata.iconUrl}
|
|
iconName={subjectMetadata.name}
|
|
headerTitle={t('SIWESiteRequestTitle')}
|
|
headerText={t('SIWESiteRequestSubtitle')}
|
|
siteOrigin={domain}
|
|
className={isSIWEDomainValid ? '' : 'bad-domain'}
|
|
rightIcon={
|
|
!isSIWEDomainValid && (
|
|
<Tooltip
|
|
position="bottom"
|
|
html={<p>{t('SIWEDomainWarningBody', [domain])}</p>}
|
|
wrapperClassName="signature-request-siwe-header__tooltip"
|
|
containerClassName="signature-request-siwe-header__tooltip__container"
|
|
>
|
|
<InfoIcon severity={SEVERITIES.DANGER} />
|
|
</Tooltip>
|
|
)
|
|
}
|
|
/>
|
|
{fromAccount && (
|
|
<AccountListItem
|
|
account={fromAccount}
|
|
className="signature-request-siwe-header__account-list-item"
|
|
/>
|
|
)}
|
|
</div>
|
|
);
|
|
}
|
|
|
|
SignatureRequestSIWEHeader.propTypes = {
|
|
/**
|
|
* The account that is requesting permissions
|
|
*/
|
|
fromAccount: PropTypes.object,
|
|
/**
|
|
* The domain that the request is for
|
|
*/
|
|
domain: PropTypes.string,
|
|
/**
|
|
* Whether the domain is valid
|
|
*/
|
|
isSIWEDomainValid: PropTypes.bool,
|
|
/**
|
|
* The metadata for the subject. This is used to display the icon and name
|
|
* and is selected from the domain in the SIWE request.
|
|
*/
|
|
subjectMetadata: PropTypes.object,
|
|
};
|
|
|