mirror of
https://github.com/r-freeman/portfolio.git
synced 2024-11-14 11:45:41 +00:00
Ryan Freeman
d939bfb989
All checks were successful
Build And Publish / BuildAndPublish (push) Successful in 2m38s
49 lines
1.3 KiB
TypeScript
49 lines
1.3 KiB
TypeScript
import type {Repo} from '@/types'
|
|
import fetcher from '@/lib/fetcher'
|
|
|
|
const GITHUB_ACCESS_TOKEN = process.env.GITHUB_ACCESS_TOKEN
|
|
const GITHUB_USERNAME = process.env.GITHUB_USERNAME
|
|
const GITHUB_GRAPHQL = "https://api.github.com/graphql"
|
|
|
|
type PinnedReposResponse = {
|
|
data: {
|
|
user: {
|
|
pinnedItems: {
|
|
nodes: Repo[]
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
export async function getPinnedRepos() {
|
|
const response = await fetcher(GITHUB_GRAPHQL, {
|
|
method: 'POST',
|
|
headers: {
|
|
'Content-Type': 'application/json',
|
|
'Authorization': `Bearer ${GITHUB_ACCESS_TOKEN}`
|
|
},
|
|
body: JSON.stringify({
|
|
query: `{
|
|
user(login: "${GITHUB_USERNAME}") {
|
|
pinnedItems(first: 6, types: REPOSITORY) {
|
|
nodes {
|
|
... on Repository {
|
|
name
|
|
description
|
|
url
|
|
stargazerCount
|
|
forkCount
|
|
primaryLanguage {
|
|
name
|
|
color
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}`
|
|
})
|
|
}) as PinnedReposResponse
|
|
|
|
return response.data.user.pinnedItems.nodes
|
|
} |