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

116 lines
4 KiB
JavaScript
Raw Normal View History

2021-05-18 00:04:06 +00:00
import React, { useContext } 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-18 00:04:06 +00:00
import ContextLanguage from "../../contexts/ContextLanguage"
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}.
*
2021-05-17 14:11:58 +00:00
* @param running - If a request is running, disabling the buttons.
* @param props - Additional props to pass to the box.
2021-05-10 13:22:07 +00:00
* @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-18 00:48:34 +00:00
const { strings } = useContext(ContextLanguage)
2021-05-07 15:30:10 +00:00
return (
2021-05-18 00:04:06 +00:00
<BoxFull header={strings.createRepo} {...props}>
2021-05-11 14:37:15 +00:00
<FormLabelled
onSubmit={e => {
e.preventDefault()
save()
}}
>
2021-05-18 00:04:06 +00:00
<FormLabel htmlFor={"repo-name"} text={strings.repoName}>
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-18 00:04:06 +00:00
<FormLabel htmlFor={"filter-mode"} text={strings.request}>
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-18 00:04:06 +00:00
{strings.filterOR}
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-18 00:04:06 +00:00
{strings.filterAND}
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-18 00:04:06 +00:00
{strings.rollback}
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-18 00:04:06 +00:00
{strings.save}
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-18 00:04:06 +00:00
{strings.createRepo}
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>
)
}