portfolio/src/components/molecules/Repository.jsx

50 lines
1.3 KiB
JavaScript

import React from 'react'
import PropTypes from 'prop-types'
import Icon from '../atoms/Icon'
import { repo as styleRepo, repoTitle, meta } from './Repository.module.css'
export default function Repository({ repo }) {
const { name, full_name, description, html_url, homepage, stargazers_count } =
repo
const isExternal = !full_name.includes('kremalicious')
// for blog & portfolio and if there's no homepage, use github url
// else use homepage field
const repoLink =
name === 'blog' || name === 'portfolio' || !homepage || isExternal
? html_url
: homepage
return (
<div className={styleRepo}>
<h1 className={repoTitle}>
<a href={repoLink}>{isExternal ? full_name : name}</a>
</h1>
<p>{description}</p>
<p className={meta}>
{name === 'portfolio' || name === 'blog'
? null
: !isExternal &&
homepage && (
<a href={homepage}>
<Icon name="Compass" /> More info
</a>
)}
<a href={html_url}>
<Icon name="GitHub" /> GitHub
</a>
<a href={`${html_url}/stargazers`}>
<Icon name="Star" /> {stargazers_count}
</a>
</p>
</div>
)
}
Repository.propTypes = {
repo: PropTypes.object.isRequired
}