mirror of
https://github.com/fleetdm/fleet
synced 2026-05-09 02:01:09 +00:00
## Addresses #14882 - Add help text - Align heading of Advanced section - Add `help-text` mixin for improved modularity/reusability - Fix responsive styles on LabelFilterSelect <img width="721" alt="Screenshot 2023-11-21 at 9 52 45 AM" src="https://github.com/fleetdm/fleet/assets/61553566/216112f8-de9d-4ee3-acb5-376e6ccd3b4e"> - [x] Manual QA for all new/changed functionality --------- Co-authored-by: Jacob Shandling <jacob@fleetdm.com>
102 lines
2.5 KiB
TypeScript
102 lines
2.5 KiB
TypeScript
import React, { ReactNode } from "react";
|
|
import classnames from "classnames";
|
|
import { noop, pick } from "lodash";
|
|
|
|
import FormField from "components/forms/FormField";
|
|
import { IFormFieldProps } from "components/forms/FormField/FormField";
|
|
import TooltipWrapper from "components/TooltipWrapper";
|
|
|
|
const baseClass = "fleet-checkbox";
|
|
|
|
export interface ICheckboxProps {
|
|
children?: ReactNode;
|
|
className?: string;
|
|
disabled?: boolean;
|
|
name?: string;
|
|
onChange?: any; // TODO: meant to be an event; figure out type for this
|
|
onBlur?: any;
|
|
value?: boolean;
|
|
wrapperClassName?: string;
|
|
indeterminate?: boolean;
|
|
parseTarget?: boolean;
|
|
tooltipContent?: React.ReactNode;
|
|
isLeftLabel?: boolean;
|
|
helpText?: string;
|
|
}
|
|
|
|
const Checkbox = (props: ICheckboxProps) => {
|
|
const {
|
|
children,
|
|
className,
|
|
disabled = false,
|
|
name,
|
|
onChange = noop,
|
|
onBlur = noop,
|
|
value,
|
|
wrapperClassName,
|
|
indeterminate,
|
|
parseTarget,
|
|
tooltipContent,
|
|
isLeftLabel,
|
|
helpText,
|
|
} = props;
|
|
|
|
const handleChange = () => {
|
|
if (parseTarget) {
|
|
// Returns both name and value
|
|
return onChange({ name, value: !value });
|
|
}
|
|
|
|
return onChange(!value);
|
|
};
|
|
|
|
const checkBoxClass = classnames(
|
|
{ inverse: isLeftLabel },
|
|
className,
|
|
baseClass
|
|
);
|
|
const formFieldProps = {
|
|
...pick(props, ["hint", "label", "error", "name"]),
|
|
className: wrapperClassName,
|
|
type: "checkbox",
|
|
} as IFormFieldProps;
|
|
|
|
const checkBoxTickClass = classnames(`${checkBoxClass}__tick`, {
|
|
[`${checkBoxClass}__tick--disabled`]: disabled,
|
|
[`${checkBoxClass}__tick--indeterminate`]: indeterminate,
|
|
});
|
|
|
|
return (
|
|
<FormField {...formFieldProps}>
|
|
<>
|
|
<label htmlFor={name} className={checkBoxClass}>
|
|
<input
|
|
checked={value}
|
|
className={`${baseClass}__input`}
|
|
disabled={disabled}
|
|
id={name}
|
|
name={name}
|
|
onChange={handleChange}
|
|
onBlur={onBlur}
|
|
type="checkbox"
|
|
/>
|
|
<span className={checkBoxTickClass} />
|
|
{tooltipContent ? (
|
|
<span className={`${baseClass}__label-tooltip tooltip`}>
|
|
<TooltipWrapper tipContent={tooltipContent}>
|
|
{children}
|
|
</TooltipWrapper>
|
|
</span>
|
|
) : (
|
|
<span className={`${baseClass}__label`}>{children} </span>
|
|
)}
|
|
</label>
|
|
{helpText && (
|
|
<span className={`${baseClass}__help-text`}>{helpText}</span>
|
|
)}
|
|
</>
|
|
</FormField>
|
|
);
|
|
};
|
|
|
|
export default Checkbox;
|