mirror of
https://github.com/muerwre/vault-frontend.git
synced 2025-05-01 15:46:40 +07:00
35 lines
951 B
TypeScript
35 lines
951 B
TypeScript
import React, { FC, useMemo } from "react";
|
|
import styles from "./styles.module.scss";
|
|
import { getPrettyDate } from "~/utils/dom";
|
|
import { GithubIssue } from "~/types/boris";
|
|
import classNames from "classnames";
|
|
|
|
interface IProps {
|
|
data: GithubIssue;
|
|
}
|
|
|
|
const stateLabels: Record<GithubIssue['state'], string> = {
|
|
open: 'Ожидает',
|
|
closed: 'Сделано',
|
|
};
|
|
|
|
const BorisStatsGitCard: FC<IProps> = ({ data: { created_at, title, html_url, state } }) => {
|
|
const date = useMemo(() => getPrettyDate(created_at), [created_at]);
|
|
|
|
if (!title || !created_at) return null;
|
|
|
|
return (
|
|
<div className={styles.wrap}>
|
|
<div className={styles.time}>
|
|
<span className={classNames(styles.icon, styles[state])}>{stateLabels[state]}</span>
|
|
{date}
|
|
</div>
|
|
|
|
<a className={styles.subject} href={html_url} target="_blank" rel="noreferrer">
|
|
{title}
|
|
</a>
|
|
</div>
|
|
);
|
|
};
|
|
|
|
export { BorisStatsGitCard };
|