mirror of
https://gitlab.nic.cz/turris/reforis/foris-js.git
synced 2025-04-20 08:16:38 +02:00
85 lines
2.3 KiB
JavaScript
85 lines
2.3 KiB
JavaScript
/*
|
|
* Copyright (C) 2019 CZ.NIC z.s.p.o. (http://www.nic.cz/)
|
|
*
|
|
* This is free software, licensed under the GNU General Public License v3.
|
|
* See /LICENSE for more information.
|
|
*/
|
|
|
|
import React from "react";
|
|
import PropTypes from "prop-types";
|
|
import { useUID } from "react-uid";
|
|
|
|
RadioSet.propTypes = {
|
|
/** Name attribute of the input HTML tag. */
|
|
name: PropTypes.string.isRequired,
|
|
/** RadioSet label . */
|
|
label: PropTypes.string,
|
|
/** Choices . */
|
|
choices: PropTypes.arrayOf(PropTypes.shape({
|
|
/** Choice lable . */
|
|
label: PropTypes.string.isRequired,
|
|
/** Choice value . */
|
|
value: PropTypes.oneOfType([PropTypes.string, PropTypes.number]).isRequired,
|
|
})).isRequired,
|
|
/** Initial value . */
|
|
value: PropTypes.string,
|
|
/** Help text message . */
|
|
helpText: PropTypes.string,
|
|
};
|
|
|
|
export function RadioSet({
|
|
name, label, choices, value, helpText, ...props
|
|
}) {
|
|
const uid = useUID();
|
|
const radios = choices.map((choice, key) => {
|
|
const id = `${name}-${key}`;
|
|
return (
|
|
<Radio
|
|
id={id}
|
|
key={id}
|
|
name={name}
|
|
label={choice.label}
|
|
value={choice.value}
|
|
helpText={choice.helpText}
|
|
checked={choice.value === value}
|
|
|
|
{...props}
|
|
/>
|
|
);
|
|
});
|
|
|
|
return (
|
|
<div className="form-group">
|
|
{label && <label htmlFor={uid} className="d-block">{label}</label>}
|
|
{radios}
|
|
{helpText && <small className="form-text text-muted">{helpText}</small>}
|
|
</div>
|
|
);
|
|
}
|
|
|
|
Radio.propTypes = {
|
|
label: PropTypes.string.isRequired,
|
|
id: PropTypes.string.isRequired,
|
|
helpText: PropTypes.string,
|
|
};
|
|
|
|
export function Radio({
|
|
label, id, helpText, ...props
|
|
}) {
|
|
return (
|
|
<>
|
|
<div className={`custom-control custom-radio ${!helpText ? "custom-control-inline" : ""}`.trim()}>
|
|
<input
|
|
id={id}
|
|
className="custom-control-input"
|
|
type="radio"
|
|
|
|
{...props}
|
|
/>
|
|
<label className="custom-control-label" htmlFor={id}>{label}</label>
|
|
{helpText && <small className="form-text text-muted mt-0 mb-3">{helpText}</small>}
|
|
</div>
|
|
</>
|
|
);
|
|
}
|