Skip to content

Commit

Permalink
Eliminate artificial delay in swaps loading screen after request load…
Browse files Browse the repository at this point in the history
…ing is complete
  • Loading branch information
danjm committed Feb 23, 2021
1 parent aabe653 commit 08b75e4
Showing 1 changed file with 3 additions and 7 deletions.
10 changes: 3 additions & 7 deletions ui/app/pages/swaps/loading-swaps-quotes/loading-swaps-quotes.js
Original file line number Diff line number Diff line change
Expand Up @@ -112,13 +112,9 @@ export default function LoadingSwapsQuotes({
// 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 loading is complete and all logos + aggregator names have been shown, give the user 1.2 seconds to read the
// "Finalizing message" and prepare for the screen change
if (quoteCount === numberOfQuotes && loadingComplete) {
timeoutLength = 1200;
} else if (loadingComplete) {
// If loading is complete, but the quoteCount is not, we quickly display the remaining logos/names/fox looks. 0.5s each
timeoutLength = 500;
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;
} 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
Expand Down

0 comments on commit 08b75e4

Please sign in to comment.