mirror of
https://github.com/jakejarvis/jarv.is.git
synced 2025-04-26 15:08:27 -04:00
134 lines
3.0 KiB
TypeScript
134 lines
3.0 KiB
TypeScript
import commaNumber from "comma-number";
|
|
import Link from "../Link";
|
|
import RelativeTime from "../RelativeTime";
|
|
import { StarOcticon, ForkOcticon } from "../Icons";
|
|
import { styled } from "../../lib/styles/stitches.config";
|
|
import type { Project } from "../../types";
|
|
|
|
const Wrapper = styled("div", {
|
|
width: "100%",
|
|
padding: "1.2em 1.2em 0.8em 1.2em",
|
|
border: "1px solid $kindaLight",
|
|
borderRadius: "$rounded",
|
|
fontSize: "0.85em",
|
|
color: "$mediumDark",
|
|
|
|
// light-dark theme switch fading
|
|
transition: "border 0.25s ease",
|
|
});
|
|
|
|
const Name = styled(Link, {
|
|
fontSize: "1.2em",
|
|
fontWeight: 600,
|
|
});
|
|
|
|
const Description = styled("p", {
|
|
marginTop: "0.7em",
|
|
marginBottom: "0.5em",
|
|
lineHeight: 1.7,
|
|
});
|
|
|
|
const Meta = styled("div", {
|
|
display: "flex",
|
|
flexWrap: "wrap",
|
|
alignItems: "baseline",
|
|
});
|
|
|
|
const MetaItem = styled("div", {
|
|
marginRight: "1.5em",
|
|
fontSize: "0.875em",
|
|
lineHeight: 2,
|
|
color: "$medium",
|
|
});
|
|
|
|
const MetaLink = styled(Link, {
|
|
color: "inherit",
|
|
|
|
"&:hover": {
|
|
color: "$link",
|
|
},
|
|
});
|
|
|
|
const MetaIcon = styled("svg", {
|
|
width: "16px",
|
|
height: "16px",
|
|
verticalAlign: "text-bottom",
|
|
marginRight: "0.5em",
|
|
fill: "currentColor",
|
|
});
|
|
|
|
const LanguageCircle = styled("span", {
|
|
display: "inline-block",
|
|
position: "relative",
|
|
width: "1.15em",
|
|
height: "1.15em",
|
|
marginRight: "0.5em",
|
|
borderRadius: "50%",
|
|
verticalAlign: "text-top",
|
|
});
|
|
|
|
export type RepositoryCardProps = Project & {
|
|
className?: string;
|
|
};
|
|
|
|
const RepositoryCard = ({
|
|
name,
|
|
url,
|
|
description,
|
|
language,
|
|
stars,
|
|
forks,
|
|
updatedAt,
|
|
className,
|
|
}: RepositoryCardProps) => {
|
|
return (
|
|
<Wrapper className={className}>
|
|
<Name href={url}>{name}</Name>
|
|
|
|
{description && <Description>{description}</Description>}
|
|
|
|
<Meta>
|
|
{language && (
|
|
<MetaItem>
|
|
{language.color && <LanguageCircle css={{ backgroundColor: language.color }} />}
|
|
{language.name}
|
|
</MetaItem>
|
|
)}
|
|
|
|
{stars && stars > 0 && (
|
|
<MetaItem>
|
|
<MetaLink
|
|
href={`${url}/stargazers`}
|
|
title={`${commaNumber(stars)} ${stars === 1 ? "star" : "stars"}`}
|
|
underline={false}
|
|
>
|
|
<MetaIcon as={StarOcticon} />
|
|
{commaNumber(stars)}
|
|
</MetaLink>
|
|
</MetaItem>
|
|
)}
|
|
|
|
{forks && forks > 0 && (
|
|
<MetaItem>
|
|
<MetaLink
|
|
href={`${url}/network/members`}
|
|
title={`${commaNumber(forks)} ${forks === 1 ? "fork" : "forks"}`}
|
|
underline={false}
|
|
>
|
|
<MetaIcon as={ForkOcticon} />
|
|
{commaNumber(forks)}
|
|
</MetaLink>
|
|
</MetaItem>
|
|
)}
|
|
|
|
{/* only use relative "time ago" on client side, since it'll be outdated via SSG and cause hydration errors */}
|
|
<MetaItem>
|
|
<RelativeTime date={updatedAt} verb="Updated" staticFormat="MMM D, YYYY" />
|
|
</MetaItem>
|
|
</Meta>
|
|
</Wrapper>
|
|
);
|
|
};
|
|
|
|
export default RepositoryCard;
|