85 lines
2.0 KiB
JavaScript
85 lines
2.0 KiB
JavaScript
import PropTypes from 'prop-types';
|
|
import * as React from 'react';
|
|
import { Controller, useFormContext } from 'react-hook-form';
|
|
import FormControlLabel from '@mui/material/FormControlLabel';
|
|
import MuiSwitch from '@mui/material/Switch';
|
|
|
|
function Switch(props) {
|
|
const { control } = useFormContext();
|
|
const inputRef = React.useRef(null);
|
|
const {
|
|
required,
|
|
name,
|
|
defaultChecked = false,
|
|
shouldUnregister = false,
|
|
disabled = false,
|
|
onBlur,
|
|
onChange,
|
|
label,
|
|
FormControlLabelProps,
|
|
className,
|
|
...switchProps
|
|
} = props;
|
|
|
|
return (
|
|
<Controller
|
|
rules={{ required }}
|
|
name={name}
|
|
defaultValue={defaultChecked}
|
|
control={control}
|
|
shouldUnregister={shouldUnregister}
|
|
render={({
|
|
field: {
|
|
ref,
|
|
onChange: controllerOnChange,
|
|
onBlur: controllerOnBlur,
|
|
value,
|
|
...field
|
|
},
|
|
}) => (
|
|
<FormControlLabel
|
|
className={className}
|
|
{...FormControlLabelProps}
|
|
control={
|
|
<MuiSwitch
|
|
data-test="switch"
|
|
{...switchProps}
|
|
{...field}
|
|
checked={value}
|
|
disabled={disabled}
|
|
onChange={(...args) => {
|
|
controllerOnChange(...args);
|
|
onChange?.(...args);
|
|
}}
|
|
onBlur={(...args) => {
|
|
controllerOnBlur();
|
|
onBlur?.(...args);
|
|
}}
|
|
inputRef={(element) => {
|
|
inputRef.current = element;
|
|
ref(element);
|
|
}}
|
|
/>
|
|
}
|
|
label={label}
|
|
/>
|
|
)}
|
|
/>
|
|
);
|
|
}
|
|
|
|
Switch.propTypes = {
|
|
required: PropTypes.bool,
|
|
name: PropTypes.string.isRequired,
|
|
defaultChecked: PropTypes.bool,
|
|
disabled: PropTypes.bool,
|
|
label: PropTypes.string.isRequired,
|
|
shouldUnregister: PropTypes.bool,
|
|
onBlur: PropTypes.func,
|
|
onChange: PropTypes.func,
|
|
FormControlLabelProps: PropTypes.object,
|
|
className: PropTypes.string,
|
|
};
|
|
|
|
export default Switch;
|