blob: f6512b20ce76d67dee163d43de6e3e3c00b14f6c (
plain)
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
|
import useSWR from 'swr';
import { fetchAPI } from '../../services/graphql/api';
import { getArticleFromRawData } from '../../services/graphql/articles';
import { articleBySlugQuery } from '../../services/graphql/articles.query';
import { Article } from '../../types/app';
import { RawArticle } from '../../types/raw-data';
export type UseArticleConfig = {
fallback?: Article;
slug?: string;
};
/**
* Retrieve an article by slug.
*
* @param {string} slug - The article slug.
* @param {Article} fallback - A fallback article.
* @returns {Article|undefined} The matching article if it exists.
*/
const useArticle = ({
slug,
fallback,
}: UseArticleConfig): Article | undefined => {
const { data } = useSWR(
slug ? { query: articleBySlugQuery, variables: { slug } } : null,
fetchAPI<RawArticle, typeof articleBySlugQuery>
);
return data ? getArticleFromRawData(data.post) : fallback;
};
export default useArticle;
|