1
Fork 0
mirror of https://github.com/pds-nest/nest.git synced 2024-11-22 21:14:18 +00:00
pds-2021-g2-nest/nest_frontend/components/interactive/SummaryRepository.js

87 lines
2.8 KiB
JavaScript
Raw Normal View History

2021-05-18 00:04:06 +00:00
import React, { useContext } from "react"
2021-04-29 14:58:31 +00:00
import Button from "../base/Button"
2021-05-11 16:24:51 +00:00
import { faArchive, faFolder, faFolderOpen, faPencilAlt, faTrash } from "@fortawesome/free-solid-svg-icons"
2021-05-10 13:22:07 +00:00
import { useHistory } from "react-router"
2021-05-11 16:34:07 +00:00
import Summary from "../base/Summary"
2021-05-18 00:04:06 +00:00
import ContextLanguage from "../../contexts/ContextLanguage"
/**
* A long line representing a repository in a list.
*
2021-05-11 16:24:51 +00:00
* @param repo - The repository object.
2021-05-11 14:33:12 +00:00
* @param refresh - Function that can be called to refresh the repositories list.
* @param canDelete - If the Delete button should be displayed or not.
* @param deleteSelf - Function to call when the Delete button is pressed.
* @param canEdit - If the Edit button should be displayed or not.
* @param canArchive - If the Archive button should be displayed or not.
* @param archiveSelf - Function to call when the Archive button is pressed.
* @param running - If an action is currently running.
* @param className - Additional class(es) to be added to the outer box.
* @param props - Additional props to pass to the outer box.
* @returns {JSX.Element}
* @constructor
*/
2021-05-11 16:24:51 +00:00
export default function SummaryRepository(
{ repo, refresh, canDelete, deleteSelf, canEdit, canArchive, archiveSelf, running, className, ...props },
) {
2021-05-10 15:17:16 +00:00
const history = useHistory()
2021-05-18 00:48:34 +00:00
const { strings } = useContext(ContextLanguage)
2021-05-10 13:22:07 +00:00
2021-05-12 02:34:54 +00:00
const onRepoClick = () => {
history.push(`/repositories/${repo.id}`)
}
2021-05-11 16:24:51 +00:00
const onEditClick = () => {
history.push(`/repositories/${repo.id}/edit`)
2021-05-11 14:33:12 +00:00
}
2021-05-11 16:34:07 +00:00
const buttons = <>
{canDelete ?
<Button
color={"Red"}
icon={faTrash}
onClick={deleteSelf}
disabled={running}
2021-05-11 16:34:07 +00:00
>
2021-05-18 00:04:06 +00:00
{strings.delete}
2021-05-11 16:34:07 +00:00
</Button>
: null}
{canEdit ?
<Button
color={"Yellow"}
icon={faPencilAlt}
onClick={onEditClick}
disabled={running}
2021-05-11 16:34:07 +00:00
>
2021-05-18 00:04:06 +00:00
{strings.edit}
2021-05-11 16:34:07 +00:00
</Button>
: null}
{canArchive ?
<Button
color={"Grey"}
icon={faArchive}
onClick={archiveSelf}
disabled={running}
2021-05-11 16:34:07 +00:00
>
2021-05-18 00:04:06 +00:00
{strings.archive}
2021-05-11 16:34:07 +00:00
</Button>
: null}
</>
return (
2021-05-11 16:34:07 +00:00
<Summary
icon={repo.is_active ? faFolderOpen : faFolder}
title={repo.name}
subtitle={repo.owner ? repo.owner.username : null}
2021-05-12 02:34:54 +00:00
onClick={onRepoClick}
2021-05-18 00:04:06 +00:00
upperLabel={strings.created}
2021-05-11 16:34:07 +00:00
upperValue={repo.start ? new Date(repo.start).toLocaleString() : null}
2021-05-18 00:04:06 +00:00
lowerLabel={strings.archived}
2021-05-11 16:34:07 +00:00
lowerValue={repo.end ? new Date(repo.end).toLocaleString() : null}
buttons={buttons}
{...props}
/>
)
}