Skip to content

Instantly share code, notes, and snippets.

@toddbirchard
Created August 5, 2020 02:38
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save toddbirchard/1df27d8d38d2ec6bef88fe62de8e07af to your computer and use it in GitHub Desktop.
Save toddbirchard/1df27d8d38d2ec6bef88fe62de8e07af to your computer and use it in GitHub Desktop.
Gatsby Widget: Github organization top repositories
import React from 'react'
import PropTypes from 'prop-types'
import { StaticQuery, graphql } from 'gatsby'
import { FaGithub, FaCode, FaStar, FaCodeBranch, FaProjectDiagram } from 'react-icons/fa'
/**
* Github widget
*/
const GithubWidget = ({ data }) => {
const githubOrg = data.githubOrganization
const githubRepos = data.githubOrganization.itemShowcase.items.edges
const githubRepoSummary = githubOrg.repositories.totalCount + ` Repos`
return (
<>
<div className="widget github">
<div className="github-header">
<FaGithub className="github-avatar" />
<div className="profile-details">
<a
href={githubOrg.url}
className="github-name"
target="_blank"
rel="noopener noreferrer">
{`@${githubOrg.login}`}
</a>
<div className="github-org-meta">
<div className="meta-item"><FaProjectDiagram /> {githubRepoSummary} </div>
</div>
</div>
</div>
<div className="repos">
{githubRepos.map(({ node }) => (
<a
href={node.url}
className="github-repo"
key={`${node.id}-link`}
rel="nofollow noreferrer"
>
<div className="repo-name">{node.name}</div>
<div className="repo-description">{node.description.split(`: `).pop()}</div>
<div className="repo-meta">
<div className="repo-lang meta-item">
<FaCode /> <span>{node.primaryLanguage.name}</span>
</div>
<div className="repo-stargazers meta-item">
<FaStar /> <span>{node.stargazers.totalCount}</span>
</div>
<div className="repo-forks meta-item">
<FaCodeBranch /> <span>{node.forkCount}</span>
</div>
</div>
</a>
))}
</div>
</div>
</>
)
}
GithubWidget.propTypes = {
data: PropTypes.shape({
githubOrganization: PropTypes.object,
itemShowcase: PropTypes.shape({
items: PropTypes.shape({
edges: PropTypes.arrayOf(
PropTypes.shape({
node: PropTypes.object.isRequired,
})
),
}),
}),
repositories: PropTypes.shape({
totalCount: PropTypes.number,
}),
stargazers: PropTypes.shape({
totalCount: PropTypes.number,
}),
}),
}
const GithubWidgetQuery = props => (
<StaticQuery
query={graphql`
query githubOrg {
githubOrganization {
name
description
url
login
repositories {
totalCount
}
itemShowcase {
items {
edges {
node {
id
description
name
forkCount
primaryLanguage {
name
}
stargazers {
totalCount
}
url
}
}
}
}
}
}`
}
render={data => <GithubWidget data={data} {...props} />}
/>
)
export default GithubWidgetQuery
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment