From 9c8921db92d16b07ffc2a63ff3c80c4dcdd9ff9d Mon Sep 17 00:00:00 2001 From: Armand Philippot Date: Tue, 10 May 2022 17:38:07 +0200 Subject: chore: add Project single pages --- src/utils/hooks/use-github-api.tsx | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100644 src/utils/hooks/use-github-api.tsx (limited to 'src/utils/hooks/use-github-api.tsx') diff --git a/src/utils/hooks/use-github-api.tsx b/src/utils/hooks/use-github-api.tsx new file mode 100644 index 0000000..edff974 --- /dev/null +++ b/src/utils/hooks/use-github-api.tsx @@ -0,0 +1,30 @@ +import { SWRResult } from '@ts/types/swr'; +import useSWR, { Fetcher } from 'swr'; + +export type RepoData = { + created_at: string; + updated_at: string; + stargazers_count: number; +}; + +const fetcher: Fetcher = (...args) => + fetch(...args).then((res) => res.json()); + +/** + * Retrieve data from Github API. + * + * @param repo - The Github repo (`owner/repo-name`). + * @returns The repository data. + */ +const useGithubApi = (repo: string): SWRResult => { + const apiUrl = repo ? `https://api.github.com/repos/${repo}` : null; + const { data, error } = useSWR(apiUrl, fetcher); + + return { + data, + isLoading: !error && !data, + isError: error, + }; +}; + +export default useGithubApi; -- cgit v1.2.3