import { storiesOf } from "@storybook/react"; import { IPagingInfo, Table, useTableQueryPaging } from "@vivid-planet/comet-admin"; import * as React from "react"; interface IExampleRow { id: number; foo1: string; foo2: string; } function Story() { const data = Array.from(Array(100).keys()).map( (i): IExampleRow => ({ id: i, foo1: `blub1 ${i}`, foo2: `blub2 ${i}`, }), ); const pagingApi = useTableQueryPaging(1); const pageSize = 10; const totalPages = data.length / pageSize; const pagingInfo: IPagingInfo = { fetchNextPage: pagingApi.current < totalPages ? () => { return pagingApi.changePage(pagingApi.current + 1); } : undefined, fetchPreviousPage: pagingApi.current > 1 ? () => pagingApi.changePage(pagingApi.current - 1) : undefined, totalPages, attachTableRef: pagingApi.attachTableRef, }; const pagedData = data.slice((pagingApi.current - 1) * pageSize, pagingApi.current * pageSize); return ( <>