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

48 lines
1.2 KiB
JavaScript
Raw Normal View History

2019-08-23 15:20:22 +02:00
/*
* 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.
*/
2019-08-27 15:28:29 +02:00
import React from "react";
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
};
2019-08-27 17:46:45 +02:00
export function CheckBox({
2020-01-07 13:27:49 +01:00
label, helpText, disabled, ...props
2019-08-27 15:28:29 +02:00
}) {
2019-08-23 15:20:22 +02:00
const uid = useUID();
2019-08-27 15:28:29 +02:00
return (
2020-01-07 13:27:49 +01:00
<div className="form-group">
2019-10-24 10:12:39 +02:00
<div className="custom-control custom-checkbox ">
2019-08-27 15:28:29 +02:00
<input
className="custom-control-input"
type="checkbox"
id={uid}
disabled={disabled}
2019-08-23 15:20:22 +02:00
2019-08-27 15:28:29 +02:00
{...props}
/>
2019-11-19 13:34:01 +01:00
<label className="custom-control-label" htmlFor={uid}>
{label}
{helpText && <small className="form-text text-muted">{helpText}</small>}
</label>
2019-08-27 15:28:29 +02:00
</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
}