2021-05-10 14:21:19 +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 14:38:56 +00:00
|
|
|
import useBackend from "../../hooks/useBackend"
|
2021-05-10 14:21:19 +00:00
|
|
|
import ContextUser from "../../contexts/ContextUser"
|
2021-05-11 16:34:07 +00:00
|
|
|
import Summary from "../base/Summary"
|
2021-04-24 02:23:23 +00:00
|
|
|
|
|
|
|
|
2021-04-25 15:22:52 +00:00
|
|
|
/**
|
|
|
|
* 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.
|
2021-04-25 15:22:52 +00:00
|
|
|
* @param canDelete - If the Delete button should be displayed or not.
|
|
|
|
* @param canEdit - If the Edit button should be displayed or not.
|
|
|
|
* @param canArchive - If the Archive button should be displayed or not.
|
|
|
|
* @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, canEdit, canArchive, className, ...props },
|
2021-04-25 15:22:52 +00:00
|
|
|
) {
|
2021-05-11 14:37:15 +00:00
|
|
|
const { fetchDataAuth } = useContext(ContextUser)
|
2021-05-10 15:17:16 +00:00
|
|
|
const history = useHistory()
|
2021-05-11 16:24:51 +00:00
|
|
|
const { fetchNow: archiveThis } = useBackend(fetchDataAuth, "PATCH", `/api/v1/repositories/${repo.id}`, { "close": true })
|
|
|
|
const { fetchNow: deletThis } = useBackend(fetchDataAuth, "DELETE", `/api/v1/repositories/${repo.id}`)
|
2021-05-10 13:22:07 +00:00
|
|
|
|
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:24:51 +00:00
|
|
|
const onArchiveClick = async () => {
|
2021-05-11 14:33:12 +00:00
|
|
|
await archiveThis()
|
|
|
|
await refresh()
|
|
|
|
}
|
|
|
|
|
2021-05-11 16:24:51 +00:00
|
|
|
const onDeleteClick = async () => {
|
2021-05-11 14:33:12 +00:00
|
|
|
await deletThis()
|
|
|
|
await refresh()
|
|
|
|
}
|
|
|
|
|
2021-05-11 16:34:07 +00:00
|
|
|
const buttons = <>
|
|
|
|
{canDelete ?
|
|
|
|
<Button
|
|
|
|
color={"Red"}
|
|
|
|
icon={faTrash}
|
|
|
|
onClick={onDeleteClick}
|
|
|
|
>
|
|
|
|
Delete
|
|
|
|
</Button>
|
|
|
|
: null}
|
|
|
|
{canEdit ?
|
|
|
|
<Button
|
|
|
|
color={"Yellow"}
|
|
|
|
icon={faPencilAlt}
|
|
|
|
onClick={onEditClick}
|
|
|
|
>
|
|
|
|
Edit
|
|
|
|
</Button>
|
|
|
|
: null}
|
|
|
|
{canArchive ?
|
|
|
|
<Button
|
|
|
|
color={"Grey"}
|
|
|
|
icon={faArchive}
|
2021-05-11 17:42:04 +00:00
|
|
|
onClick={onArchiveClick}
|
2021-05-11 16:34:07 +00:00
|
|
|
>
|
2021-05-11 17:42:04 +00:00
|
|
|
{"Archive"}
|
2021-05-11 16:34:07 +00:00
|
|
|
</Button>
|
|
|
|
: null}
|
|
|
|
</>
|
|
|
|
|
2021-04-24 02:23:23 +00:00
|
|
|
return (
|
2021-05-11 16:34:07 +00:00
|
|
|
<Summary
|
|
|
|
icon={repo.is_active ? faFolderOpen : faFolder}
|
|
|
|
title={repo.name}
|
2021-05-11 16:35:44 +00:00
|
|
|
subtitle={repo.owner ? repo.owner.username : null}
|
2021-05-11 17:42:04 +00:00
|
|
|
upperLabel={"Created"}
|
2021-05-11 16:34:07 +00:00
|
|
|
upperValue={repo.start ? new Date(repo.start).toLocaleString() : null}
|
2021-05-11 17:42:04 +00:00
|
|
|
lowerLabel={"Archived"}
|
2021-05-11 16:34:07 +00:00
|
|
|
lowerValue={repo.end ? new Date(repo.end).toLocaleString() : null}
|
|
|
|
buttons={buttons}
|
|
|
|
{...props}
|
|
|
|
/>
|
2021-04-24 02:23:23 +00:00
|
|
|
)
|
|
|
|
}
|