File size: 1,813 Bytes
1e92f2d |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 |
import FormControlLabel from '@mui/material/FormControlLabel';
import FormLabel from '@mui/material/FormLabel';
import type { RadioProps } from '@mui/material/Radio';
import RadioMaterial from '@mui/material/Radio';
import RadioGroup from '@mui/material/RadioGroup';
import omit from 'lodash/omit';
import React from 'react';
import type { FieldProps } from 'uniforms';
import { connectField, filterDOMProps } from 'uniforms';
import wrapField from './wrapField';
export type RadioFieldProps = FieldProps<
string,
RadioProps,
{
allowedValues?: string[];
checkboxes?: boolean;
fullWidth?: boolean;
helperText?: string;
margin?: 'dense' | 'normal' | 'none';
row?: boolean;
transform?: (value: string) => string;
}
>;
function Radio({
allowedValues,
disabled,
fullWidth = true,
id,
inputRef,
label,
margin = 'dense',
name,
onChange,
readOnly,
row,
transform,
value,
...props
}: RadioFieldProps) {
return wrapField(
{ ...props, component: 'fieldset', disabled, fullWidth, margin },
label && (
<FormLabel component="legend" htmlFor={name}>
{label}
</FormLabel>
),
<RadioGroup
id={id}
name={name}
onChange={(event: any) =>
disabled || readOnly || onChange(event.target.value)
}
ref={inputRef}
row={row}
value={value ?? ''}
>
{allowedValues?.map((item) => (
<FormControlLabel
control={
<RadioMaterial
{...omit(filterDOMProps(props), ['checkboxes', 'helperText'])}
/>
}
key={item}
label={transform ? transform(item) : item}
value={`${item}`}
/>
))}
</RadioGroup>
);
}
export default connectField<RadioFieldProps>(Radio, { kind: 'leaf' });
|