From 71942c86311a9d1ddf4ae486d811f8393786e855 Mon Sep 17 00:00:00 2001 From: Armand Philippot Date: Tue, 25 Jan 2022 11:47:59 +0100 Subject: chore: display a progress bar before load more button Since I'm using cursor pagination, users cannot know if there is a lot of posts available. With this cursor, they can verify the progression. --- src/pages/recherche/index.tsx | 31 ++++++++++++++++++++++++++----- 1 file changed, 26 insertions(+), 5 deletions(-) (limited to 'src/pages/recherche/index.tsx') diff --git a/src/pages/recherche/index.tsx b/src/pages/recherche/index.tsx index 771bd3b..f497ca3 100644 --- a/src/pages/recherche/index.tsx +++ b/src/pages/recherche/index.tsx @@ -17,6 +17,7 @@ import Sidebar from '@components/Sidebar/Sidebar'; import { ThematicsList, TopicsList } from '@components/Widgets'; import styles from '@styles/pages/Page.module.scss'; import Spinner from '@components/Spinner/Spinner'; +import PaginationCursor from '@components/PaginationCursor/PaginationCursor'; const Search: NextPageWithLayout = () => { const [query, setQuery] = useState(''); @@ -53,6 +54,20 @@ const Search: NextPageWithLayout = () => { if (data) setTotalPostsCount(data[0].pageInfo.total); }, [data]); + const [loadedPostsCount, setLoadedPostsCount] = useState( + config.postsPerPage + ); + + useEffect(() => { + if (data && data.length > 0) { + const newCount = + config.postsPerPage + + data[0].pageInfo.total - + data[data.length - 1].pageInfo.total; + setLoadedPostsCount(newCount); + } + }, [data]); + const isLoadingInitialData = !data && !error; const isLoadingMore: boolean = isLoadingInitialData || @@ -104,11 +119,17 @@ const Search: NextPageWithLayout = () => {
{getPostsList()} {hasNextPage && ( - + <> + + + )}
-- cgit v1.2.3