Eliminate artificial delay in swaps loading screen after request loading is complete (#10496)

feature/default_network_editable
Dan J Miller 4 years ago committed by GitHub
parent 23013b1ee9
commit 75a81c605a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 10
      ui/app/pages/swaps/loading-swaps-quotes/loading-swaps-quotes.js

@ -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 // 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. // 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 if (loadingComplete) {
// "Finalizing message" and prepare for the screen change // If loading is complete, but the quoteCount is not, we quickly display the remaining logos/names/fox looks. 0.2s each
if (quoteCount === numberOfQuotes && loadingComplete) { timeoutLength = 200;
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;
} else { } else {
// If loading is not complete, we display remaining logos/names/fox looks at random intervals between 0.5s and 2s, to simulate the // 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 // sort of loading a user would experience in most async scenarios

Loading…
Cancel
Save