1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
import { Button } from '@components/Buttons';
import { getLayout } from '@components/Layouts/Layout';
import PaginationCursor from '@components/PaginationCursor/PaginationCursor';
import PostHeader from '@components/PostHeader/PostHeader';
import PostsList from '@components/PostsList/PostsList';
import Sidebar from '@components/Sidebar/Sidebar';
import Spinner from '@components/Spinner/Spinner';
import { ThematicsList, TopicsList } from '@components/Widgets';
import { config } from '@config/website';
import { getPublishedPosts } from '@services/graphql/queries';
import styles from '@styles/pages/Page.module.scss';
import { NextPageWithLayout } from '@ts/types/app';
import { PostsList as PostsListData } from '@ts/types/blog';
import { getIntlInstance, loadTranslation } from '@utils/helpers/i18n';
import { GetStaticProps, GetStaticPropsContext } from 'next';
import Head from 'next/head';
import { useRouter } from 'next/router';
import { useEffect, useRef, useState } from 'react';
import { useIntl } from 'react-intl';
import useSWRInfinite from 'swr/infinite';
const Search: NextPageWithLayout = () => {
const intl = useIntl();
const [query, setQuery] = useState('');
const router = useRouter();
const lastPostRef = useRef<HTMLSpanElement>(null);
useEffect(() => {
if (!router.isReady) return;
if (router.query?.s && typeof router.query.s === 'string') {
setQuery(router.query.s);
}
}, [router.isReady, router.query.s]);
const getKey = (pageIndex: number, previousData: PostsListData) => {
if (previousData && !previousData.posts) return null;
return pageIndex === 0
? { first: config.postsPerPage, searchQuery: query }
: {
first: config.postsPerPage,
after: previousData.pageInfo.endCursor,
searchQuery: query,
};
};
const { data, error, size, setSize } = useSWRInfinite(
getKey,
getPublishedPosts
);
const [totalPostsCount, setTotalPostsCount] = useState<number>(0);
useEffect(() => {
if (data) setTotalPostsCount(data[0].pageInfo.total);
}, [data]);
const [loadedPostsCount, setLoadedPostsCount] = useState<number>(
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 ||
(size > 0 && data !== undefined && typeof data[size - 1] === 'undefined');
const hasNextPage = data && data[data.length - 1].pageInfo.hasNextPage;
const title = query
? intl.formatMessage(
{
defaultMessage: 'Search results for {query}',
description: 'SearchPage: search results text',
},
{ query }
)
: intl.formatMessage({
defaultMessage: 'Search',
description: 'SearchPage: page title',
});
const description = query
? intl.formatMessage(
{
defaultMessage: 'Discover search results for {query}',
description: 'SearchPage: meta description with query',
},
{ query }
)
: intl.formatMessage(
{
defaultMessage: 'Search for a post on {websiteName}',
description: 'SearchPage: meta description without query',
},
{ websiteName: config.name }
);
const head = {
title: `${title} | ${config.name}`,
description,
};
const loadMorePosts = () => {
if (lastPostRef.current) {
lastPostRef.current.focus();
}
setSize(size + 1);
};
const getPostsList = () => {
if (error)
return intl.formatMessage({
defaultMessage: 'Failed to load.',
description: 'SearchPage: failed to load text',
});
if (!data) return <Spinner />;
return <PostsList ref={lastPostRef} data={data} showYears={false} />;
};
return (
<>
<Head>
<title>{head.title}</title>
<meta name="description" content={head.description} />
</Head>
<article
className={`${styles.article} ${styles['article--no-comments']}`}
>
<PostHeader title={title} meta={{ results: totalPostsCount }} />
<div className={styles.body}>
{getPostsList()}
{hasNextPage && (
<>
<PaginationCursor
current={loadedPostsCount}
total={totalPostsCount}
/>
<Button
isDisabled={isLoadingMore}
clickHandler={loadMorePosts}
position="center"
>
{intl.formatMessage({
defaultMessage: 'Load more?',
description: 'SearchPage: load more text',
})}
</Button>
</>
)}
</div>
<Sidebar position="right">
<ThematicsList
title={intl.formatMessage({
defaultMessage: 'Thematics',
description: 'SearchPage: thematics list widget title',
})}
/>
<TopicsList
title={intl.formatMessage({
defaultMessage: 'Topics',
description: 'SearchPage: topics list widget title',
})}
/>
</Sidebar>
</article>
</>
);
};
Search.getLayout = getLayout;
export const getStaticProps: GetStaticProps = async (
context: GetStaticPropsContext
) => {
const intl = await getIntlInstance();
const breadcrumbTitle = intl.formatMessage({
defaultMessage: 'Search',
description: 'SearchPage: breadcrumb item',
});
const { locale } = context;
const translation = await loadTranslation(locale);
return {
props: {
breadcrumbTitle,
locale,
translation,
},
};
};
export default Search;
|