mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-26 20:39:08 +01:00
64 lines
1.7 KiB
JavaScript
64 lines
1.7 KiB
JavaScript
import React, { useContext } from 'react';
|
|
import PropTypes from 'prop-types';
|
|
|
|
import { I18nContext } from '../../../contexts/i18n';
|
|
import Box from '../../../components/ui/box';
|
|
import {
|
|
DISPLAY,
|
|
FLEX_DIRECTION,
|
|
TextColor,
|
|
JustifyContent,
|
|
AlignItems,
|
|
TextVariant,
|
|
} from '../../../helpers/constants/design-system';
|
|
import { Text } from '../../../components/component-library';
|
|
import MascotBackgroundAnimation from '../mascot-background-animation/mascot-background-animation';
|
|
|
|
export default function QuotesLoadingAnimation(props) {
|
|
const { quoteCount, numberOfAggregators } = props;
|
|
|
|
const t = useContext(I18nContext);
|
|
|
|
return (
|
|
<Box
|
|
marginTop={4}
|
|
display={DISPLAY.FLEX}
|
|
justifyContent={JustifyContent.center}
|
|
alignItems={AlignItems.center}
|
|
flexDirection={FLEX_DIRECTION.COLUMN}
|
|
>
|
|
<Box
|
|
display={DISPLAY.FLEX}
|
|
justifyContent={JustifyContent.center}
|
|
alignItems={AlignItems.center}
|
|
>
|
|
<Text
|
|
variant={TextVariant.bodyMd}
|
|
as="h6"
|
|
color={TextColor.textAlternative}
|
|
marginLeft={1}
|
|
marginRight={1}
|
|
>
|
|
{t('swapFetchingQuote')}
|
|
</Text>
|
|
<Text
|
|
variant={TextVariant.bodyMdBold}
|
|
as="h6"
|
|
color={TextColor.textAlternative}
|
|
>
|
|
{t('swapQuoteNofM', [
|
|
Math.min(quoteCount + 1, numberOfAggregators),
|
|
numberOfAggregators,
|
|
])}
|
|
</Text>
|
|
</Box>
|
|
<MascotBackgroundAnimation />
|
|
</Box>
|
|
);
|
|
}
|
|
|
|
QuotesLoadingAnimation.propTypes = {
|
|
quoteCount: PropTypes.number.isRequired,
|
|
numberOfAggregators: PropTypes.number.isRequired,
|
|
};
|