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/BoxRepositoryCreate.js

113 lines
3.8 KiB
JavaScript
Raw Normal View History

2021-05-07 15:42:20 +00:00
import React from "react"
2021-05-07 15:30:10 +00:00
import BoxFull from "../base/BoxFull"
import FormLabelled from "../base/FormLabelled"
import FormLabel from "../base/formparts/FormLabel"
import InputWithIcon from "../base/InputWithIcon"
2021-05-11 16:05:01 +00:00
import { faBackward, faFolder, faPencilAlt, faPlus } from "@fortawesome/free-solid-svg-icons"
2021-05-07 15:30:10 +00:00
import Radio from "../base/Radio"
import Button from "../base/Button"
import useRepositoryEditor from "../../hooks/useRepositoryEditor"
2021-05-07 23:40:49 +00:00
import FormAlert from "../base/formparts/FormAlert"
import goToOnSuccess from "../../utils/goToOnSuccess"
import { useHistory } from "react-router"
2021-05-07 15:30:10 +00:00
2021-05-10 13:22:07 +00:00
/**
* A {@link BoxFull} allowing the user to save the changes made in the current {@link RepositoryEditor}.
*
* @param props
* @returns {JSX.Element}
* @constructor
*/
export default function BoxRepositoryCreate({ running, ...props }) {
2021-05-07 15:30:10 +00:00
const {
2021-05-10 13:22:07 +00:00
id,
2021-05-07 15:30:10 +00:00
evaluationMode,
setEvaluationMode,
name,
setName,
save,
2021-05-11 16:05:01 +00:00
revert,
2021-05-07 23:40:49 +00:00
error,
2021-05-07 15:30:10 +00:00
} = useRepositoryEditor()
const history = useHistory()
2021-05-07 15:30:10 +00:00
return (
2021-05-13 16:24:52 +00:00
<BoxFull header={"Crea repository"} {...props}>
2021-05-11 14:37:15 +00:00
<FormLabelled
onSubmit={e => {
e.preventDefault()
save()
}}
>
2021-05-15 15:19:45 +00:00
<FormLabel htmlFor={"repo-name"} text={"Nome repository"}>
2021-05-07 15:30:10 +00:00
<InputWithIcon
id={"repo-name"}
icon={faFolder}
value={name}
onChange={e => setName(e.target.value)}
/>
</FormLabel>
2021-05-15 15:19:45 +00:00
<FormLabel htmlFor={"filter-mode"} text={"Richiedi"}>
2021-05-07 15:30:10 +00:00
<label>
<Radio
name={"filter-mode"}
2021-05-10 12:13:45 +00:00
onChange={() => setEvaluationMode(0)}
2021-05-07 15:30:10 +00:00
checked={evaluationMode === 0}
/>
2021-05-15 15:19:45 +00:00
Almeno una cond.
2021-05-07 15:30:10 +00:00
</label>
&nbsp;
<label>
<Radio
name={"filter-mode"}
2021-05-10 12:13:45 +00:00
onChange={() => setEvaluationMode(1)}
2021-05-07 15:30:10 +00:00
checked={evaluationMode === 1}
/>
2021-05-15 15:19:45 +00:00
Tutte le cond.
2021-05-07 15:30:10 +00:00
</label>
</FormLabel>
2021-05-07 23:40:49 +00:00
{error ?
2021-05-11 14:37:15 +00:00
<FormAlert color={"Red"}>
{error.toString()}
</FormAlert>
: null}
2021-05-10 13:22:07 +00:00
{id ?
2021-05-11 16:05:01 +00:00
<>
<Button
style={{ "gridColumn": "1" }}
icon={faBackward}
color={"Red"}
2021-05-11 16:05:18 +00:00
onClick={() => revert()}
disabled={running}
2021-05-11 16:05:01 +00:00
>
2021-05-15 15:19:45 +00:00
Annulla modifiche
2021-05-11 16:05:01 +00:00
</Button>
<Button
style={{ "gridColumn": "2" }}
icon={faPencilAlt}
color={"Green"}
onClick={_ => goToOnSuccess(save, history, "/repositories")()}
disabled={running}
2021-05-11 16:05:01 +00:00
>
2021-05-15 15:19:45 +00:00
Salva modifiche
2021-05-11 16:05:01 +00:00
</Button>
</>
2021-05-11 14:37:15 +00:00
:
<Button
style={{ "gridColumn": "1 / 3" }}
icon={faPlus}
color={"Green"}
2021-05-11 16:05:01 +00:00
onClick={_ => goToOnSuccess(save, history, "/repositories")()}
disabled={running}
2021-05-11 14:37:15 +00:00
>
2021-05-13 16:24:52 +00:00
Crea repository
2021-05-11 14:37:15 +00:00
</Button>
2021-05-10 13:22:07 +00:00
}
2021-05-07 15:30:10 +00:00
</FormLabelled>
</BoxFull>
)
}