Introduce pagination in items (#1239)

This commit is contained in:
Patrick Arminio
2024-06-27 21:49:54 +02:00
committed by GitHub
parent db7d06b0f8
commit dda7934ed8

View File

@@ -1,4 +1,6 @@
import { z } from "zod"
import { import {
Button,
Container, Container,
Flex, Flex,
Heading, Heading,
@@ -11,85 +13,118 @@ import {
Thead, Thead,
Tr, Tr,
} from "@chakra-ui/react" } from "@chakra-ui/react"
import { useSuspenseQuery } from "@tanstack/react-query" import { useQuery, useQueryClient } from "@tanstack/react-query"
import { createFileRoute } from "@tanstack/react-router" import { createFileRoute, useNavigate } from "@tanstack/react-router"
import { Suspense } from "react" import { useEffect } from "react"
import { ErrorBoundary } from "react-error-boundary"
import { ItemsService } from "../../client" import { ItemsService } from "../../client"
import ActionsMenu from "../../components/Common/ActionsMenu" import ActionsMenu from "../../components/Common/ActionsMenu"
import Navbar from "../../components/Common/Navbar" import Navbar from "../../components/Common/Navbar"
export const Route = createFileRoute("/_layout/items")({ const itemsSearchSchema = z.object({
component: Items, page: z.number().catch(1),
}) })
function ItemsTableBody() { export const Route = createFileRoute("/_layout/items")({
const { data: items } = useSuspenseQuery({ component: Items,
queryKey: ["items"], validateSearch: (search) => itemsSearchSchema.parse(search),
queryFn: () => ItemsService.readItems({}), })
const PER_PAGE = 5
function getItemsQueryOptions({ page }: { page: number }) {
return {
queryFn: () =>
ItemsService.readItems({ skip: (page - 1) * PER_PAGE, limit: PER_PAGE }),
queryKey: ["items", { page }],
}
}
function ItemsTable() {
const queryClient = useQueryClient()
const { page } = Route.useSearch()
const navigate = useNavigate({ from: Route.fullPath })
const setPage = (page: number) =>
navigate({ search: (prev) => ({ ...prev, page }) })
const {
data: items,
isPending,
isPlaceholderData,
} = useQuery({
...getItemsQueryOptions({ page }),
placeholderData: (prevData) => prevData,
}) })
const hasNextPage = !isPlaceholderData && items?.data.length === PER_PAGE
const hasPreviousPage = page > 1
useEffect(() => {
if (hasNextPage) {
queryClient.prefetchQuery(getItemsQueryOptions({ page: page + 1 }))
}
}, [page, queryClient])
return ( return (
<Tbody> <>
{items.data.map((item) => ( <TableContainer>
<Tr key={item.id}> <Table size={{ base: "sm", md: "md" }}>
<Td>{item.id}</Td> <Thead>
<Td>{item.title}</Td> <Tr>
<Td color={!item.description ? "ui.dim" : "inherit"}> <Th>ID</Th>
{item.description || "N/A"} <Th>Title</Th>
</Td> <Th>Description</Th>
<Td> <Th>Actions</Th>
<ActionsMenu type={"Item"} value={item} /> </Tr>
</Td> </Thead>
</Tr> {isPending ? (
))}
</Tbody>
)
}
function ItemsTable() {
return (
<TableContainer>
<Table size={{ base: "sm", md: "md" }}>
<Thead>
<Tr>
<Th>ID</Th>
<Th>Title</Th>
<Th>Description</Th>
<Th>Actions</Th>
</Tr>
</Thead>
<ErrorBoundary
fallbackRender={({ error }) => (
<Tbody> <Tbody>
<Tr> {new Array(5).fill(null).map((_, index) => (
<Td colSpan={4}>Something went wrong: {error.message}</Td> <Tr key={index}>
</Tr> {new Array(4).fill(null).map((_, index) => (
<Td key={index}>
<Flex>
<Skeleton height="20px" width="20px" />
</Flex>
</Td>
))}
</Tr>
))}
</Tbody>
) : (
<Tbody>
{items?.data.map((item) => (
<Tr key={item.id} opacity={isPlaceholderData ? 0.5 : 1}>
<Td>{item.id}</Td>
<Td>{item.title}</Td>
<Td color={!item.description ? "ui.dim" : "inherit"}>
{item.description || "N/A"}
</Td>
<Td>
<ActionsMenu type={"Item"} value={item} />
</Td>
</Tr>
))}
</Tbody> </Tbody>
)} )}
> </Table>
<Suspense </TableContainer>
fallback={ <Flex
<Tbody> gap={4}
{new Array(5).fill(null).map((_, index) => ( alignItems="center"
<Tr key={index}> mt={4}
{new Array(4).fill(null).map((_, index) => ( direction="row"
<Td key={index}> justifyContent="flex-end"
<Flex> >
<Skeleton height="20px" width="20px" /> <Button onClick={() => setPage(page - 1)} isDisabled={!hasPreviousPage}>
</Flex> Previous
</Td> </Button>
))} <span>Page {page}</span>
</Tr> <Button isDisabled={!hasNextPage} onClick={() => setPage(page + 1)}>
))} Next
</Tbody> </Button>
} </Flex>
> </>
<ItemsTableBody />
</Suspense>
</ErrorBoundary>
</Table>
</TableContainer>
) )
} }