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.
104 lines
3.2 KiB
104 lines
3.2 KiB
import React, { useState, useContext } from 'react';
|
|
import PropTypes from 'prop-types';
|
|
|
|
import Typography from '../../ui/typography/typography';
|
|
import {
|
|
COLORS,
|
|
TYPOGRAPHY,
|
|
FONT_WEIGHT,
|
|
} from '../../../helpers/constants/design-system';
|
|
|
|
import InfoTooltip from '../../ui/info-tooltip';
|
|
import TransactionTotalBanner from '../transaction-total-banner/transaction-total-banner.component';
|
|
import RadioGroup from '../../ui/radio-group/radio-group.component';
|
|
import AdvancedGasControls from '../advanced-gas-controls/advanced-gas-controls.component';
|
|
|
|
import { I18nContext } from '../../../contexts/i18n';
|
|
import ActionableMessage from '../../../pages/swaps/actionable-message';
|
|
|
|
export default function EditGasDisplay({
|
|
alwaysShowForm,
|
|
type,
|
|
showEducationButton,
|
|
onEducationClick,
|
|
}) {
|
|
const t = useContext(I18nContext);
|
|
|
|
const [warning] = useState(null);
|
|
const [showAdvancedForm, setShowAdvancedForm] = useState(false);
|
|
|
|
return (
|
|
<div className="edit-gas-display">
|
|
<div className="edit-gas-display__content">
|
|
{warning && (
|
|
<div className="edit-gas-display__warning">
|
|
<ActionableMessage
|
|
className="actionable-message--warning"
|
|
message="Swaps are time sensitive. “Medium” is not reccomended."
|
|
/>
|
|
</div>
|
|
)}
|
|
{type === 'speed-up' && (
|
|
<div className="edit-gas-display__top-tooltip">
|
|
<Typography
|
|
color={COLORS.BLACK}
|
|
variant={TYPOGRAPHY.H8}
|
|
fontWeight={FONT_WEIGHT.BOLD}
|
|
>
|
|
{t('speedUpTooltipText')}{' '}
|
|
<InfoTooltip
|
|
position="top"
|
|
contentText={t('speedUpExplanation')}
|
|
/>
|
|
</Typography>
|
|
</div>
|
|
)}
|
|
<TransactionTotalBanner total="" detail="" timing="" />
|
|
<RadioGroup
|
|
name="gas-recommendation"
|
|
options={[
|
|
{ value: 'low', label: t('editGasLow'), recommended: false },
|
|
{ value: 'medium', label: t('editGasMedium'), recommended: false },
|
|
{ value: 'high', label: t('editGasHigh'), recommended: true },
|
|
]}
|
|
selectedValue="high"
|
|
/>
|
|
{!alwaysShowForm && (
|
|
<button
|
|
className="edit-gas-display__advanced-button"
|
|
onClick={() => setShowAdvancedForm(!showAdvancedForm)}
|
|
>
|
|
{t('advancedOptions')}{' '}
|
|
{showAdvancedForm ? (
|
|
<i className="fa fa-caret-up"></i>
|
|
) : (
|
|
<i className="fa fa-caret-down"></i>
|
|
)}
|
|
</button>
|
|
)}
|
|
{(alwaysShowForm || showAdvancedForm) && <AdvancedGasControls />}
|
|
</div>
|
|
{showEducationButton && (
|
|
<div className="edit-gas-display__education">
|
|
<button onClick={onEducationClick}>
|
|
{t('editGasEducationButtonText')}
|
|
</button>
|
|
</div>
|
|
)}
|
|
</div>
|
|
);
|
|
}
|
|
|
|
EditGasDisplay.propTypes = {
|
|
alwaysShowForm: PropTypes.bool,
|
|
type: PropTypes.oneOf(['customize-gas', 'speed-up']),
|
|
showEducationButton: PropTypes.bool,
|
|
onEducationClick: PropTypes.func,
|
|
};
|
|
|
|
EditGasDisplay.defaultProps = {
|
|
alwaysShowForm: false,
|
|
type: 'customize-gas',
|
|
showEducationButton: false,
|
|
onEducationClick: undefined,
|
|
};
|
|
|