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
|
|
|
|
2019-08-27 15:28:29 +02:00
|
|
|
import { formFieldsSize } from "./constants";
|
2019-08-23 15:20:22 +02: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 15:28:29 +02:00
|
|
|
disabled: PropTypes.bool,
|
2019-08-23 15:20:22 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
CheckBox.defaultProps = {
|
|
|
|
useDefaultSize: true,
|
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({
|
2019-08-27 15:28:29 +02:00
|
|
|
label, helpText, useDefaultSize, disabled, ...props
|
|
|
|
}) {
|
2019-08-23 15:20:22 +02:00
|
|
|
const uid = useUID();
|
2019-08-27 15:28:29 +02:00
|
|
|
return (
|
2019-10-24 10:12:39 +02:00
|
|
|
<div className={`form-group ${useDefaultSize ? formFieldsSize : ""}`.trim()}>
|
|
|
|
<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
|
|
|
}
|