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.
72 lines
2.3 KiB
72 lines
2.3 KiB
import React from 'react';
|
|
import PropTypes from 'prop-types';
|
|
import {
|
|
ENVIRONMENT_TYPE_POPUP,
|
|
ENVIRONMENT_TYPE_NOTIFICATION,
|
|
} from '../../../../../shared/constants/app';
|
|
import { getEnvironmentType } from '../../../../../app/scripts/lib/util';
|
|
import NetworkDisplay from '../../network-display';
|
|
import Identicon from '../../../ui/identicon';
|
|
import { shortenAddress } from '../../../../helpers/utils/util';
|
|
import AccountMismatchWarning from '../../../ui/account-mismatch-warning/account-mismatch-warning.component';
|
|
import { useI18nContext } from '../../../../hooks/useI18nContext';
|
|
|
|
export default function ConfirmPageContainerHeader({
|
|
onEdit,
|
|
showEdit,
|
|
accountAddress,
|
|
showAccountInHeader,
|
|
children,
|
|
}) {
|
|
const t = useI18nContext();
|
|
const windowType = getEnvironmentType();
|
|
const isFullScreen =
|
|
windowType !== ENVIRONMENT_TYPE_NOTIFICATION &&
|
|
windowType !== ENVIRONMENT_TYPE_POPUP;
|
|
|
|
if (!showEdit && isFullScreen) {
|
|
return children;
|
|
}
|
|
return (
|
|
<div className="confirm-page-container-header">
|
|
<div className="confirm-page-container-header__row">
|
|
{showAccountInHeader ? (
|
|
<div className="confirm-page-container-header__address-container">
|
|
<div className="confirm-page-container-header__address-identicon">
|
|
<Identicon address={accountAddress} diameter={24} />
|
|
</div>
|
|
<div className="confirm-page-container-header__address">
|
|
{shortenAddress(accountAddress)}
|
|
</div>
|
|
<AccountMismatchWarning address={accountAddress} />
|
|
</div>
|
|
) : (
|
|
<div
|
|
className="confirm-page-container-header__back-button-container"
|
|
style={{
|
|
visibility: showEdit ? 'initial' : 'hidden',
|
|
}}
|
|
>
|
|
<img src="./images/caret-left.svg" alt="" />
|
|
<span
|
|
className="confirm-page-container-header__back-button"
|
|
onClick={() => onEdit()}
|
|
>
|
|
{t('edit')}
|
|
</span>
|
|
</div>
|
|
)}
|
|
{isFullScreen ? null : <NetworkDisplay />}
|
|
</div>
|
|
{children}
|
|
</div>
|
|
);
|
|
}
|
|
|
|
ConfirmPageContainerHeader.propTypes = {
|
|
accountAddress: PropTypes.string,
|
|
showAccountInHeader: PropTypes.bool,
|
|
showEdit: PropTypes.bool,
|
|
onEdit: PropTypes.func,
|
|
children: PropTypes.node,
|
|
};
|
|
|