1
0
mirror of https://gitlab.nic.cz/turris/reforis/foris-js.git synced 2024-07-05 20:53:12 +00:00
foris-js/src/bootstrap/CheckBox.js

51 lines
1.4 KiB
JavaScript
Raw Normal View History

2019-08-23 13:20:22 +00: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 13:28:29 +00:00
import React from "react";
import PropTypes from "prop-types";
2019-10-10 15:25:00 +00:00
import { useUID } from "react-uid";
2019-08-23 13:20:22 +00:00
2019-08-27 13:28:29 +00:00
import { formFieldsSize } from "./constants";
2019-08-23 13:20:22 +00:00
CheckBox.propTypes = {
/** Label message */
label: PropTypes.string.isRequired,
/** Help text message */
helpText: PropTypes.string,
/** Apply default size (full-width) */
useDefaultSize: PropTypes.bool,
/** Control if checkbox is clickable */
2019-08-27 13:28:29 +00:00
disabled: PropTypes.bool,
2019-08-23 13:20:22 +00:00
};
CheckBox.defaultProps = {
useDefaultSize: true,
2019-08-27 13:28:29 +00:00
disabled: false,
2019-08-23 13:20:22 +00:00
};
2019-08-27 15:46:45 +00:00
export function CheckBox({
2019-08-27 13:28:29 +00:00
label, helpText, useDefaultSize, disabled, ...props
}) {
2019-08-23 13:20:22 +00:00
const uid = useUID();
2019-08-27 13:28:29 +00:00
return (
2019-10-24 08:12:39 +00:00
<div className={`form-group ${useDefaultSize ? formFieldsSize : ""}`.trim()}>
<div className="custom-control custom-checkbox ">
2019-08-27 13:28:29 +00:00
<input
className="custom-control-input"
type="checkbox"
id={uid}
disabled={disabled}
2019-08-23 13:20:22 +00:00
2019-08-27 13:28:29 +00:00
{...props}
/>
2019-10-24 08:12:39 +00:00
<label className="custom-control-label" htmlFor={uid}>{label}</label>
{helpText && <small className="form-text text-muted">{helpText}</small>}
2019-08-27 13:28:29 +00:00
</div>
2019-08-23 13:20:22 +00:00
</div>
2019-08-27 13:28:29 +00:00
);
2019-08-23 13:20:22 +00:00
}