1
0
mirror of https://github.com/kremalicious/metamask-extension.git synced 2024-10-22 19:26:13 +02:00
metamask-extension/ui/pages/swaps/loading-swaps-quotes/loading-swaps-quotes.js

253 lines
8.7 KiB
JavaScript
Raw Normal View History

import EventEmitter from 'events';
import React, { useState, useEffect, useRef, useContext } from 'react';
import { useDispatch, useSelector } from 'react-redux';
import PropTypes from 'prop-types';
import { shuffle } from 'lodash';
import { useHistory } from 'react-router-dom';
import classnames from 'classnames';
2020-11-03 00:41:28 +01:00
import {
navigateBackToBuildQuote,
getFetchParams,
getQuotesFetchStartTime,
} from '../../../ducks/swaps/swaps';
import {
isHardwareWallet,
getHardwareWalletType,
} from '../../../selectors/selectors';
import { I18nContext } from '../../../contexts/i18n';
import { MetaMetricsContext } from '../../../contexts/metametrics.new';
import Mascot from '../../../components/ui/mascot';
import SwapsFooter from '../swaps-footer';
import BackgroundAnimation from './background-animation';
import AggregatorLogo from './aggregator-logo';
2020-10-06 20:28:38 +02:00
// These locations reference where we want the top-left corner of the logo div to appear in relation to the
// centre point of the fox
const AGGREGATOR_LOCATIONS = [
{ x: -125, y: -75 },
{ x: 30, y: -75 },
{ x: -145, y: 0 },
{ x: 50, y: 0 },
{ x: -135, y: 46 },
{ x: 40, y: 46 },
];
2020-10-06 20:28:38 +02:00
2020-11-03 00:41:28 +01:00
function getRandomLocations(numberOfLocations) {
const randomLocations = shuffle(AGGREGATOR_LOCATIONS);
2020-10-06 20:28:38 +02:00
if (numberOfLocations <= AGGREGATOR_LOCATIONS.length) {
return randomLocations.slice(0, numberOfLocations);
2020-10-06 20:28:38 +02:00
}
const numberOfExtraLocations =
numberOfLocations - AGGREGATOR_LOCATIONS.length;
return [...randomLocations, ...getRandomLocations(numberOfExtraLocations)];
2020-10-06 20:28:38 +02:00
}
2020-11-03 00:41:28 +01:00
function getMascotTarget(aggregatorName, centerPoint, aggregatorLocationMap) {
const location = aggregatorLocationMap[aggregatorName];
2020-10-06 20:28:38 +02:00
if (!location || !centerPoint) {
return centerPoint ?? {};
2020-10-06 20:28:38 +02:00
}
// The aggregator logos are 94px x 40px. For the fox to look at the center of each logo, the target needs to be
// the coordinates for the centre point of the fox + the desired top and left coordinates of the logo + half
// the height and width of the logo.
return {
x: location.x + centerPoint.x + 47,
y: location.y + centerPoint.y + 20,
};
2020-10-06 20:28:38 +02:00
}
2020-11-03 00:41:28 +01:00
export default function LoadingSwapsQuotes({
2020-10-06 20:28:38 +02:00
aggregatorMetadata,
loadingComplete,
onDone,
}) {
const t = useContext(I18nContext);
const metaMetricsEvent = useContext(MetaMetricsContext);
const dispatch = useDispatch();
const history = useHistory();
const animationEventEmitter = useRef(new EventEmitter());
const fetchParams = useSelector(getFetchParams);
const quotesFetchStartTime = useSelector(getQuotesFetchStartTime);
const hardwareWalletUsed = useSelector(isHardwareWallet);
const hardwareWalletType = useSelector(getHardwareWalletType);
2020-10-06 20:28:38 +02:00
const quotesRequestCancelledEventConfig = {
event: 'Quotes Request Cancelled',
category: 'swaps',
sensitiveProperties: {
2020-10-06 20:28:38 +02:00
token_from: fetchParams?.sourceTokenInfo?.symbol,
token_from_amount: fetchParams?.value,
request_type: fetchParams?.balanceError,
token_to: fetchParams?.destinationTokenInfo?.symbol,
slippage: fetchParams?.slippage,
custom_slippage: fetchParams?.slippage !== 2,
response_time: Date.now() - quotesFetchStartTime,
is_hardware_wallet: hardwareWalletUsed,
hardware_wallet_type: hardwareWalletType,
2020-10-06 20:28:38 +02:00
},
};
2020-10-06 20:28:38 +02:00
2020-11-03 00:41:28 +01:00
const [aggregatorNames] = useState(() =>
shuffle(Object.keys(aggregatorMetadata)),
);
const numberOfQuotes = aggregatorNames.length;
const mascotContainer = useRef();
const currentMascotContainer = mascotContainer.current;
2020-10-06 20:28:38 +02:00
const [quoteCount, updateQuoteCount] = useState(0);
2020-10-06 20:28:38 +02:00
// is an array of randomized items from AGGREGATOR_LOCATIONS, containing
// numberOfQuotes number of items it is randomized so that the order in
// which the fox looks at locations is random
2020-11-03 00:41:28 +01:00
const [aggregatorLocations] = useState(() =>
getRandomLocations(numberOfQuotes),
);
2020-11-03 00:41:28 +01:00
const _aggregatorLocationMap = aggregatorNames.reduce(
(nameLocationMap, name, index) => ({
...nameLocationMap,
[name]: aggregatorLocations[index],
}),
{},
);
const [aggregatorLocationMap] = useState(_aggregatorLocationMap);
const [midPointTarget, setMidpointTarget] = useState(null);
2020-10-06 20:28:38 +02:00
useEffect(() => {
let timeoutLength;
2020-10-06 20:28:38 +02:00
// The below logic simulates a sequential loading of the aggregator quotes, even though we are fetching them all with a single call.
// This is to give the user a sense of progress. The callback passed to `setTimeout` updates the quoteCount and therefore causes
// a new logo to be shown, the fox to look at that logo, the logo bar and aggregator name to update.
if (loadingComplete) {
// If loading is complete, but the quoteCount is not, we quickly display the remaining logos/names/fox looks. 0.2s each
timeoutLength = 200;
2020-10-06 20:28:38 +02:00
} else {
// If loading is not complete, we display remaining logos/names/fox looks at random intervals between 0.5s and 2s, to simulate the
// sort of loading a user would experience in most async scenarios
timeoutLength = 500 + Math.floor(Math.random() * 1500);
2020-10-06 20:28:38 +02:00
}
const quoteCountTimeout = setTimeout(() => {
if (quoteCount < numberOfQuotes) {
updateQuoteCount(quoteCount + 1);
2020-10-06 20:28:38 +02:00
} else if (quoteCount === numberOfQuotes && loadingComplete) {
onDone();
2020-10-06 20:28:38 +02:00
}
}, timeoutLength);
2020-10-06 20:28:38 +02:00
2020-11-03 00:41:28 +01:00
return function cleanup() {
clearTimeout(quoteCountTimeout);
};
}, [quoteCount, loadingComplete, onDone, numberOfQuotes]);
2020-10-06 20:28:38 +02:00
useEffect(() => {
if (currentMascotContainer) {
2020-11-03 00:41:28 +01:00
const {
top,
left,
width,
height,
} = currentMascotContainer.getBoundingClientRect();
const center = { x: left + width / 2, y: top + height / 2 };
setMidpointTarget(center);
2020-10-06 20:28:38 +02:00
}
}, [currentMascotContainer]);
2020-10-06 20:28:38 +02:00
return (
<div className="loading-swaps-quotes">
<div className="loading-swaps-quotes__content">
<>
<div className="loading-swaps-quotes__quote-counter">
<span>
2020-11-03 00:41:28 +01:00
{t('swapQuoteNofN', [
Math.min(quoteCount + 1, numberOfQuotes),
numberOfQuotes,
])}
2020-10-06 20:28:38 +02:00
</span>
</div>
<div className="loading-swaps-quotes__quote-name-check">
<span>
2020-11-03 00:41:28 +01:00
{quoteCount === numberOfQuotes
? t('swapFinalizing')
: t('swapCheckingQuote', [
2020-10-06 20:28:38 +02:00
aggregatorMetadata[aggregatorNames[quoteCount]].title,
2020-11-03 00:41:28 +01:00
])}
2020-10-06 20:28:38 +02:00
</span>
</div>
<div className="loading-swaps-quotes__loading-bar-container">
<div
className="loading-swaps-quotes__loading-bar"
style={{
width: `${(100 / numberOfQuotes) * quoteCount}%`,
}}
/>
</div>
</>
<div className="loading-swaps-quotes__animation">
<BackgroundAnimation />
<div
className="loading-swaps-quotes__mascot-container"
ref={mascotContainer}
>
<Mascot
animationEventEmitter={animationEventEmitter.current}
width="90"
height="90"
followMouse={false}
2020-11-03 00:41:28 +01:00
lookAtTarget={getMascotTarget(
aggregatorNames[quoteCount],
midPointTarget,
aggregatorLocationMap,
)}
2020-10-06 20:28:38 +02:00
/>
</div>
2020-11-03 00:41:28 +01:00
{currentMascotContainer &&
midPointTarget &&
aggregatorNames.map((aggName) => (
<div
className={classnames('loading-swaps-quotes__logo', {
'loading-swaps-quotes__logo--transition':
aggName === aggregatorNames[quoteCount],
})}
style={{
opacity: aggName === aggregatorNames[quoteCount] ? 1 : 0,
top:
aggregatorLocationMap[aggName]?.y + midPointTarget?.y ?? 0,
left:
aggregatorLocationMap[aggName]?.x + midPointTarget?.x ?? 0,
}}
key={`aggregator-logo-${aggName}`}
>
<AggregatorLogo
aggregatorName={aggName}
icon={aggregatorMetadata[aggName]?.icon}
color={aggregatorMetadata[aggName]?.color}
/>
</div>
))}
2020-10-06 20:28:38 +02:00
</div>
</div>
<SwapsFooter
submitText={t('back')}
onSubmit={async () => {
metaMetricsEvent(quotesRequestCancelledEventConfig);
await dispatch(navigateBackToBuildQuote(history));
2020-10-06 20:28:38 +02:00
}}
hideCancel
/>
</div>
);
2020-10-06 20:28:38 +02:00
}
LoadingSwapsQuotes.propTypes = {
loadingComplete: PropTypes.bool.isRequired,
onDone: PropTypes.func.isRequired,
2020-11-03 00:41:28 +01:00
aggregatorMetadata: PropTypes.objectOf(
PropTypes.shape({
color: PropTypes.string,
icon: PropTypes.string,
}),
),
};