mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-23 10:30:04 +01:00
118 lines
3.4 KiB
JavaScript
118 lines
3.4 KiB
JavaScript
import React from 'react';
|
|
import PropTypes from 'prop-types';
|
|
import classnames from 'classnames';
|
|
|
|
import Typography from '../../ui/typography/typography';
|
|
import {
|
|
COLORS,
|
|
FONT_WEIGHT,
|
|
TYPOGRAPHY,
|
|
DISPLAY,
|
|
FLEX_WRAP,
|
|
ALIGN_ITEMS,
|
|
TEXT_ALIGN,
|
|
} from '../../../helpers/constants/design-system';
|
|
|
|
export default function TransactionDetailItem({
|
|
detailTitle = '',
|
|
detailText = '',
|
|
detailTitleColor = COLORS.TEXT_DEFAULT,
|
|
detailTotal = '',
|
|
subTitle = '',
|
|
subText = '',
|
|
boldHeadings = true,
|
|
flexWidthValues = false,
|
|
}) {
|
|
return (
|
|
<div className="transaction-detail-item">
|
|
<div className="transaction-detail-item__row">
|
|
<Typography
|
|
color={detailTitleColor}
|
|
fontWeight={boldHeadings ? FONT_WEIGHT.BOLD : FONT_WEIGHT.NORMAL}
|
|
variant={TYPOGRAPHY.H6}
|
|
boxProps={{
|
|
display: DISPLAY.FLEX,
|
|
flexWrap: FLEX_WRAP.NO_WRAP,
|
|
alignItems: ALIGN_ITEMS.CENTER,
|
|
}}
|
|
>
|
|
{detailTitle}
|
|
</Typography>
|
|
<div
|
|
className={classnames('transaction-detail-item__detail-values', {
|
|
'transaction-detail-item__detail-values--flex-width': flexWidthValues,
|
|
})}
|
|
>
|
|
{detailText && (
|
|
<Typography variant={TYPOGRAPHY.H6} color={COLORS.TEXT_ALTERNATIVE}>
|
|
{detailText}
|
|
</Typography>
|
|
)}
|
|
<Typography
|
|
color={COLORS.TEXT_DEFAULT}
|
|
fontWeight={boldHeadings ? FONT_WEIGHT.BOLD : FONT_WEIGHT.NORMAL}
|
|
variant={TYPOGRAPHY.H6}
|
|
margin={[1, 0, 1, 1]}
|
|
boxProps={{ textAlign: TEXT_ALIGN.RIGHT }}
|
|
>
|
|
{detailTotal}
|
|
</Typography>
|
|
</div>
|
|
</div>
|
|
<div className="transaction-detail-item__row">
|
|
{React.isValidElement(subTitle) ? (
|
|
<div>{subTitle}</div>
|
|
) : (
|
|
<Typography variant={TYPOGRAPHY.H7} color={COLORS.TEXT_ALTERNATIVE}>
|
|
{subTitle}
|
|
</Typography>
|
|
)}
|
|
|
|
<Typography
|
|
variant={TYPOGRAPHY.H7}
|
|
color={COLORS.TEXT_ALTERNATIVE}
|
|
align="end"
|
|
className="transaction-detail-item__row-subText"
|
|
>
|
|
{subText}
|
|
</Typography>
|
|
</div>
|
|
</div>
|
|
);
|
|
}
|
|
|
|
TransactionDetailItem.propTypes = {
|
|
/**
|
|
* Detail title text wrapped in Typography component.
|
|
*/
|
|
detailTitle: PropTypes.oneOfType([PropTypes.string, PropTypes.node]),
|
|
/**
|
|
* The color of the detailTitle text accepts all Typography color props
|
|
*/
|
|
detailTitleColor: PropTypes.string,
|
|
/**
|
|
* Text to show on the left of the detailTotal. Wrapped in Typography component.
|
|
*/
|
|
detailText: PropTypes.oneOfType([PropTypes.string, PropTypes.node]),
|
|
/**
|
|
* Total amount to show. Wrapped in Typography component. Will be bold if boldHeadings is true
|
|
*/
|
|
detailTotal: PropTypes.oneOfType([PropTypes.string, PropTypes.node]),
|
|
/**
|
|
* Subtitle text. Checks if React.isValidElement before displaying. Displays under detailTitle
|
|
*/
|
|
subTitle: PropTypes.oneOfType([PropTypes.string, PropTypes.node]),
|
|
/**
|
|
* Text to show under detailTotal. Wrapped in Typography component.
|
|
*/
|
|
subText: PropTypes.oneOfType([PropTypes.string, PropTypes.node]),
|
|
/**
|
|
* Whether detailTotal is bold or not. Defaults to true
|
|
*/
|
|
boldHeadings: PropTypes.bool,
|
|
/**
|
|
* Changes width to auto for transaction-detail-item__detail-values
|
|
*/
|
|
flexWidthValues: PropTypes.bool,
|
|
};
|