UI/UX: Graceful service degradation: Home page #3233
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Description and Related Issue(s)
Resolves #1835
This PR implements graceful service degradation for the home page, allowing it to display data from a public RPC node when the Blockscout API is unavailable. When the API fails, the home page shows recent blocks and transactions fetched directly from the RPC, ensuring users can still access essential blockchain information.
Proposed Changes
LatestBlocksDegraded,LatestTxsDegraded) that fetch data from RPC when API is unavailableformatBlockData,formatTxData) to transform RPC responses into the expected data structureLatestBlocks,LatestTxs) to automatically fall back to degraded views on API errorsFallbackBox,FallbackChart) for consistent error and loading statesunwatchwhen components unmountBreaking or Incompatible Changes
None.
Additional Information
The implementation follows the design specifications in issue #1835, which outlines what data can be retrieved from RPC nodes (recent blocks, recent transactions, latest block height, gas price) when the API is unavailable.
Checklist for PR author