mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-12-12 20:57:12 +01:00
badebe017f
* Add UnitInput component * Add CurrencyInput component * Add UserPreferencedCurrencyInput component * Add UserPreferencedCurrencyDisplay component * Add updatePreferences action * Add styles for CurrencyInput, CurrencyDisplay, and UnitInput * Update SettingsTab page with Primary Currency toggle * Refactor currency displays and inputs to use UserPreferenced displays and inputs * Add TokenInput component * Add UserPreferencedTokenInput component * Use TokenInput in the send screen * Fix unit tests * Fix e2e and integration tests * Remove send/CurrencyDisplay component * Replace diamond unicode character with Eth logo. Fix typos
85 lines
2.3 KiB
JavaScript
85 lines
2.3 KiB
JavaScript
import React from 'react'
|
|
import PropTypes from 'prop-types'
|
|
import classnames from 'classnames'
|
|
import UserPreferencedCurrencyDisplay from '../../user-preferenced-currency-display'
|
|
import { PRIMARY, SECONDARY } from '../../../constants/common'
|
|
|
|
const ConfirmDetailRow = props => {
|
|
const {
|
|
label,
|
|
primaryText,
|
|
secondaryText,
|
|
onHeaderClick,
|
|
primaryValueTextColor,
|
|
headerText,
|
|
headerTextClassName,
|
|
value,
|
|
} = props
|
|
|
|
return (
|
|
<div className="confirm-detail-row">
|
|
<div className="confirm-detail-row__label">
|
|
{ label }
|
|
</div>
|
|
<div className="confirm-detail-row__details">
|
|
<div
|
|
className={classnames('confirm-detail-row__header-text', headerTextClassName)}
|
|
onClick={() => onHeaderClick && onHeaderClick()}
|
|
>
|
|
{ headerText }
|
|
</div>
|
|
{
|
|
primaryText
|
|
? (
|
|
<div
|
|
className="confirm-detail-row__primary"
|
|
style={{ color: primaryValueTextColor }}
|
|
>
|
|
{ primaryText }
|
|
</div>
|
|
) : (
|
|
<UserPreferencedCurrencyDisplay
|
|
className="confirm-detail-row__primary"
|
|
type={PRIMARY}
|
|
value={value}
|
|
showEthLogo
|
|
ethLogoHeight="18"
|
|
style={{ color: primaryValueTextColor }}
|
|
hideLabel
|
|
/>
|
|
)
|
|
}
|
|
{
|
|
secondaryText
|
|
? (
|
|
<div className="confirm-detail-row__secondary">
|
|
{ secondaryText }
|
|
</div>
|
|
) : (
|
|
<UserPreferencedCurrencyDisplay
|
|
className="confirm-detail-row__secondary"
|
|
type={SECONDARY}
|
|
value={value}
|
|
showEthLogo
|
|
hideLabel
|
|
/>
|
|
)
|
|
}
|
|
</div>
|
|
</div>
|
|
)
|
|
}
|
|
|
|
ConfirmDetailRow.propTypes = {
|
|
headerText: PropTypes.string,
|
|
headerTextClassName: PropTypes.string,
|
|
label: PropTypes.string,
|
|
onHeaderClick: PropTypes.func,
|
|
primaryValueTextColor: PropTypes.string,
|
|
primaryText: PropTypes.oneOfType([PropTypes.string, PropTypes.node]),
|
|
secondaryText: PropTypes.string,
|
|
value: PropTypes.string,
|
|
}
|
|
|
|
export default ConfirmDetailRow
|