blob: 8281a864e3edb6ac1b8ab0d35eafd3599468ad4c (
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
|
import useSWR from 'swr';
import { getAllComments } from '../../services/graphql/comments';
import { SingleComment } from '../../types/app';
export type UseCommentsConfig = {
contentId?: string | number;
fallback?: SingleComment[];
};
/**
* Retrieve the comments of a page/article.
*
* @param {string | number} contentId - A page/article id.
* @returns {SingleComment[]|undefined}
*/
const useComments = ({
contentId,
fallback,
}: UseCommentsConfig): SingleComment[] | undefined => {
const { data } = useSWR(contentId ? { contentId } : null, getAllComments);
return data || fallback;
};
export default useComments;
|