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

27 lines
744 B
JavaScript
Raw Normal View History

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