-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix latest blocks loading skeleton (#128)
- Loading branch information
Showing
1 changed file
with
13 additions
and
33 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,50 +1,30 @@ | ||
import { Button, Stack } from '@chakra-ui/react' | ||
import { Flex } from '@chakra-ui/react' | ||
import { keepPreviousData } from '@tanstack/react-query' | ||
import { Trans } from 'react-i18next' | ||
import { generatePath, Link as RouterLink } from 'react-router-dom' | ||
import { BlockCard } from '~components/Blocks/BlockCard' | ||
import { ContentError } from '~components/Layout/ContentError' | ||
import { LoadingCards } from '~components/Layout/Loading' | ||
import { RoutePath } from '~constants' | ||
import { PaginatedAsyncList } from '~components/Layout/AsyncList' | ||
import { useBlockList } from '~queries/blocks' | ||
import { useChainInfo } from '~queries/stats' | ||
|
||
export const LatestBlocks = () => { | ||
const blockListSize = 3 | ||
|
||
const { data: stats, isLoading: isLoadingStats } = useChainInfo() | ||
const { | ||
data: blocks, | ||
isLoading: isLoadingBlocks, | ||
error, | ||
isError, | ||
} = useBlockList({ | ||
const { data, isLoading, error, isError } = useBlockList({ | ||
params: { | ||
page: 0, | ||
limit: blockListSize, | ||
}, | ||
enabled: !!stats?.height, | ||
placeholderData: keepPreviousData, | ||
}) | ||
|
||
const isLoading = isLoadingStats || isLoadingBlocks | ||
|
||
if (isLoading || !stats || !stats?.height || !blocks) { | ||
return <LoadingCards length={blockListSize} /> | ||
} | ||
|
||
if (isError) { | ||
return <ContentError error={error} /> | ||
} | ||
|
||
return ( | ||
<Stack spacing={4}> | ||
{blocks.blocks.map((block, i) => ( | ||
<BlockCard key={i} block={block} compact /> | ||
))} | ||
<Button as={RouterLink} to={generatePath(RoutePath.BlocksList)} bgColor='accent1' color={'white'}> | ||
<Trans i18nKey='stats.view_all_blocks'>View all blocks</Trans> | ||
</Button> | ||
</Stack> | ||
<Flex direction={'column'} gap={7}> | ||
<PaginatedAsyncList | ||
isLoading={isLoading} | ||
elements={data?.blocks} | ||
isError={isError} | ||
error={error} | ||
component={({ element }) => <BlockCard block={element} />} | ||
skeletonProps={{ length: blockListSize }} | ||
/> | ||
</Flex> | ||
) | ||
} |
36ac277
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
π Published on https://vocdoni-explorer-dev.netlify.app as production
π Deployed on https://66deca002b43ebba9d08463a--vocdoni-explorer-dev.netlify.app
36ac277
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
π Published on https://vocdoni-explorer-stg.netlify.app as production
π Deployed on https://66deca029f3d2813a2256ec3--vocdoni-explorer-stg.netlify.app