diff options
| author | Armand Philippot <git@armandphilippot.com> | 2022-01-24 14:52:04 +0100 |
|---|---|---|
| committer | Armand Philippot <git@armandphilippot.com> | 2022-01-24 19:12:06 +0100 |
| commit | 958569e09071e4bb290f0ec120b4309ae5983d2d (patch) | |
| tree | bb3e49a7b616ccf0acdef330294d7dbbb7339135 /src/ts/types/github.ts | |
| parent | 368fbbf83b913b90cef9dfbe4288e148d589d033 (diff) | |
refactor(project): replace repo api call method with hook and swr
Instead of using post slug and an environment variable to fetch repo
data, I use the given repo in each project MDX file. It allows me to
fetch data from another user/organization if needed.
To make it work, I no longer provide the full URL in MDX file. The new
format is: "User/repo-slug".
I also replaced the fetch method with SWR to improve caching and to
avoid React complaining about cleanup useEffect.
Diffstat (limited to 'src/ts/types/github.ts')
| -rw-r--r-- | src/ts/types/github.ts | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/src/ts/types/github.ts b/src/ts/types/github.ts deleted file mode 100644 index 923fb08..0000000 --- a/src/ts/types/github.ts +++ /dev/null @@ -1,5 +0,0 @@ -export type RepoData = { - created_at: string; - updated_at: string; - stargazers_count: number; -}; |
