mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-23 18:41:38 +01:00
051254dffd
* Fixing tooltip theming by enforcing background color * Removing wide prop
93 lines
2.2 KiB
JavaScript
93 lines
2.2 KiB
JavaScript
import React from 'react';
|
|
import PropTypes from 'prop-types';
|
|
|
|
import { useI18nContext } from '../../../../hooks/useI18nContext';
|
|
import Box from '../../../ui/box';
|
|
import Tooltip from '../../../ui/tooltip';
|
|
|
|
import {
|
|
DISPLAY,
|
|
FLEX_DIRECTION,
|
|
} from '../../../../helpers/constants/design-system';
|
|
|
|
const NetworkStatusTooltip = ({ children, html, title }) => (
|
|
<Tooltip position="top" html={html} title={title}>
|
|
<Box display={DISPLAY.FLEX} flexDirection={FLEX_DIRECTION.COLUMN}>
|
|
{children}
|
|
</Box>
|
|
</Tooltip>
|
|
);
|
|
|
|
NetworkStatusTooltip.propTypes = {
|
|
children: PropTypes.node.isRequired,
|
|
html: PropTypes.node,
|
|
title: PropTypes.string,
|
|
};
|
|
|
|
export const BaseFeeTooltip = ({ children }) => {
|
|
const t = useI18nContext();
|
|
return (
|
|
<NetworkStatusTooltip
|
|
html={t('networkStatusBaseFeeTooltip', [
|
|
<strong
|
|
key="base_fee_medium_estimate"
|
|
className="network-status__tooltip-label"
|
|
>
|
|
{t('medium')}
|
|
</strong>,
|
|
<strong
|
|
key="base_fee_high_estimate"
|
|
className="network-status__tooltip-label"
|
|
>
|
|
{t('high')}
|
|
</strong>,
|
|
])}
|
|
>
|
|
{children}
|
|
</NetworkStatusTooltip>
|
|
);
|
|
};
|
|
|
|
BaseFeeTooltip.propTypes = {
|
|
children: PropTypes.node.isRequired,
|
|
};
|
|
|
|
export const PriorityFeeTooltip = ({ children }) => {
|
|
const t = useI18nContext();
|
|
return (
|
|
<NetworkStatusTooltip title={t('networkStatusPriorityFeeTooltip')}>
|
|
{children}
|
|
</NetworkStatusTooltip>
|
|
);
|
|
};
|
|
|
|
PriorityFeeTooltip.propTypes = {
|
|
children: PropTypes.node.isRequired,
|
|
};
|
|
|
|
export const NetworkStabilityTooltip = ({ children, color, tooltipLabel }) => {
|
|
const t = useI18nContext();
|
|
|
|
return (
|
|
<NetworkStatusTooltip
|
|
html={t('networkStatusStabilityFeeTooltip', [
|
|
<strong
|
|
key="network-status__tooltip"
|
|
className="network-status__tooltip-label"
|
|
style={{ color }}
|
|
>
|
|
{t(tooltipLabel)}
|
|
</strong>,
|
|
])}
|
|
>
|
|
{children}
|
|
</NetworkStatusTooltip>
|
|
);
|
|
};
|
|
|
|
NetworkStabilityTooltip.propTypes = {
|
|
children: PropTypes.node.isRequired,
|
|
color: PropTypes.string.isRequired,
|
|
tooltipLabel: PropTypes.string.isRequired,
|
|
};
|