1
0
mirror of https://gitlab.nic.cz/turris/reforis/foris-js.git synced 2024-11-14 17:35:35 +01:00
foris-js/src/bootstrap/CheckBox.js

51 lines
1.2 KiB
JavaScript
Raw Normal View History

2019-08-23 15:20:22 +02:00
/*
2024-06-06 16:57:08 +02:00
* Copyright (C) 2019-2024 CZ.NIC z.s.p.o. (https://www.nic.cz/)
2019-08-23 15:20:22 +02:00
*
* This is free software, licensed under the GNU General Public License v3.
* See /LICENSE for more information.
*/
2019-08-27 15:28:29 +02:00
import React from "react";
2024-06-06 16:57:08 +02:00
2019-08-27 15:28:29 +02:00
import PropTypes from "prop-types";
2019-10-10 17:25:00 +02:00
import { useUID } from "react-uid";
2019-08-23 15:20:22 +02:00
CheckBox.propTypes = {
/** Label message */
label: PropTypes.string.isRequired,
/** Help text message */
helpText: PropTypes.string,
/** Control if checkbox is clickable */
2019-08-27 15:28:29 +02:00
disabled: PropTypes.bool,
2019-08-23 15:20:22 +02:00
};
CheckBox.defaultProps = {
2019-08-27 15:28:29 +02:00
disabled: false,
2019-08-23 15:20:22 +02:00
};
2024-06-06 16:57:08 +02:00
function CheckBox({ label, helpText, disabled, ...props }) {
2019-08-23 15:20:22 +02:00
const uid = useUID();
2019-08-27 15:28:29 +02:00
return (
<div className="mb-3 form-check">
<input
className="form-check-input"
type="checkbox"
id={uid}
disabled={disabled}
{...props}
/>
<label className="form-check-label" htmlFor={uid}>
{label}
</label>
{helpText && (
<div className="form-text">
<small>{helpText}</small>
</div>
)}
2019-08-23 15:20:22 +02:00
</div>
2019-08-27 15:28:29 +02:00
);
2019-08-23 15:20:22 +02:00
}
2024-06-06 16:57:08 +02:00
export default CheckBox;