1
0
mirror of https://github.com/kremalicious/metamask-extension.git synced 2024-10-23 11:46:13 +02:00
metamask-extension/ui/app/pages/swaps/swaps-footer/swaps-footer.js
Erik Marks 76a2a9bb8b
@metamask/eslint config@5.0.0 (#10358)
* @metamask/eslint-config@5.0.0
* Update eslintrc and prettierrc
* yarn lint:fix
2021-02-04 10:15:23 -08:00

71 lines
1.9 KiB
JavaScript

import React, { useContext } from 'react';
import PropTypes from 'prop-types';
import classnames from 'classnames';
import { I18nContext } from '../../../contexts/i18n';
import PageContainerFooter from '../../../components/ui/page-container/page-container-footer';
export default function SwapsFooter({
onCancel,
hideCancel,
onSubmit,
submitText,
disabled,
showTermsOfService,
showTopBorder,
className = '',
}) {
const t = useContext(I18nContext);
return (
<div className="swaps-footer">
<div
className={classnames('swaps-footer__buttons', className, {
'swaps-footer__buttons--border': showTopBorder,
})}
>
<PageContainerFooter
onCancel={onCancel}
hideCancel={hideCancel}
cancelText={t('back')}
onSubmit={onSubmit}
submitText={submitText}
submitButtonType="confirm"
footerClassName={classnames(
'swaps-footer__custom-page-container-footer-class',
className,
)}
footerButtonClassName={classnames(
'swaps-footer__custom-page-container-footer-button-class',
{
'swaps-footer__custom-page-container-footer-button-class--single': hideCancel,
},
)}
disabled={disabled}
/>
</div>
{showTermsOfService && (
<div
className="swaps-footer__bottom-text"
onClick={() =>
global.platform.openTab({ url: 'https://metamask.io/terms.html' })
}
>
{t('termsOfService')}
</div>
)}
</div>
);
}
SwapsFooter.propTypes = {
onCancel: PropTypes.func,
hideCancel: PropTypes.bool,
onSubmit: PropTypes.func.isRequired,
submitText: PropTypes.string,
disabled: PropTypes.bool,
showTermsOfService: PropTypes.bool,
showTopBorder: PropTypes.bool,
className: PropTypes.string,
};