1
0
mirror of https://gitlab.nic.cz/turris/reforis/foris-js.git synced 2024-12-27 00:31:35 +01:00
foris-js/src/bootstrap/Input.js

81 lines
2.1 KiB
JavaScript
Raw Normal View History

2019-08-23 15:20:22 +02:00
/*
* Copyright (C) 2019-2022 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.
*/
import React, { forwardRef } from "react";
2024-06-06 16:57:08 +02:00
2019-08-27 16:09:18 +02:00
import PropTypes from "prop-types";
2024-06-06 16:57:08 +02:00
import { useUID } from "react-uid";
2019-08-27 17:46:45 +02:00
/** Base bootstrap input component. */
2024-06-06 16:57:08 +02:00
const Input = forwardRef(
(
{
type,
label,
helpText,
error,
className,
children,
labelClassName,
groupClassName,
...props
},
ref
) => {
const uid = useUID();
const inputClassName = `${className || ""} ${
error ? "is-invalid" : ""
}`.trim();
return (
<div className="mb-3">
<label
className={`form-label ${labelClassName || ""}`.trim()}
htmlFor={uid}
>
{label}
</label>
<div className={`input-group ${groupClassName || ""}`.trim()}>
<input
className={`form-control ${inputClassName}`.trim()}
type={type}
id={uid}
ref={ref}
{...props}
/>
{children}
</div>
{error && <div className="invalid-feedback">{error}</div>}
{helpText && (
<div className="form-text">
<small>{helpText}</small>
</div>
)}
</div>
);
}
);
2024-06-06 16:57:08 +02:00
Input.displayName = "Input";
2019-08-23 15:20:22 +02:00
Input.propTypes = {
type: PropTypes.string.isRequired,
label: PropTypes.string.isRequired,
helpText: PropTypes.string,
error: PropTypes.string,
className: PropTypes.string,
children: PropTypes.oneOfType([
PropTypes.arrayOf(PropTypes.node),
2019-08-27 16:09:18 +02:00
PropTypes.node,
]),
2019-10-22 10:24:10 +02:00
labelClassName: PropTypes.string,
groupClassName: PropTypes.string,
2019-08-27 16:09:18 +02:00
};
2024-06-06 16:57:08 +02:00
export default Input;