2021-05-18 00:04:06 +00:00
|
|
|
import React, { useContext } from "react"
|
2021-04-29 14:58:31 +00:00
|
|
|
import BoxFull from "../base/BoxFull"
|
|
|
|
import ConditionBadge from "./ConditionBadge"
|
|
|
|
import useRepositoryEditor from "../../hooks/useRepositoryEditor"
|
2021-05-18 00:04:06 +00:00
|
|
|
import ContextLanguage from "../../contexts/ContextLanguage"
|
2021-04-29 14:58:31 +00:00
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* A box which renders all conditions of the {@link RepositoryEditor} as {@link ConditionBadge}s.
|
|
|
|
*
|
|
|
|
* @param props
|
|
|
|
* @returns {JSX.Element}
|
|
|
|
* @constructor
|
|
|
|
*/
|
|
|
|
export default function BoxConditions({ ...props }) {
|
2021-05-11 14:37:15 +00:00
|
|
|
const { conditions } = useRepositoryEditor()
|
2021-05-18 00:48:34 +00:00
|
|
|
const { strings } = useContext(ContextLanguage)
|
2021-04-29 14:58:31 +00:00
|
|
|
|
|
|
|
const badges = conditions.map((cond, pos) => <ConditionBadge key={pos} {...cond}/>)
|
|
|
|
|
|
|
|
return (
|
2021-05-18 00:04:06 +00:00
|
|
|
<BoxFull header={strings.conditions} {...props}>
|
2021-04-29 14:58:31 +00:00
|
|
|
{badges}
|
|
|
|
</BoxFull>
|
|
|
|
)
|
|
|
|
}
|