Press n or j to go to the next uncovered block, b, p or k for the previous block.
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 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 | 5x 5x 5x 5x 225x 920x 5x | import {
FormControl,
InputLabel,
MenuItem,
Select as MuiSelect,
SelectChangeEvent,
SelectProps,
} from "@mui/material";
import React, { forwardRef } from "react";
import { theme } from "theme";
const Select = forwardRef(function Select<
T extends Record<string | number, string>,
>(
{
id,
className,
native = true,
menuItems = false,
optionLabelMap,
label,
variant = "outlined",
options,
onChange,
...otherProps
}: Omit<SelectProps, "children"> & {
id: string;
options: Extract<keyof T, string | number>[];
value?: T extends undefined
? string | number | number[]
: keyof T | Array<keyof T>;
menuItems?: boolean;
optionLabelMap: T;
onChange?: (event: SelectChangeEvent<T>) => void;
},
ref: React.Ref<HTMLSelectElement>,
) {
const OptionComponent: React.ElementType = menuItems ? MenuItem : "option";
return (
<FormControl
variant={variant}
className={className}
margin="normal"
sx={{
"& .MuiOutlinedInput-root": {
borderRadius: theme.spacing(1.5),
backgroundColor: theme.palette.common.white,
boxShadow: "0 1px 3px rgba(0, 0, 0, 0.05)",
transition: "all 0.2s ease-in-out",
"& .MuiOutlinedInput-notchedOutline": {
borderColor: theme.palette.grey[300],
},
"&:hover .MuiOutlinedInput-notchedOutline": {
borderColor: theme.palette.primary.main,
},
"&:hover": {
backgroundColor: theme.palette.grey[50],
},
"&.Mui-focused .MuiOutlinedInput-notchedOutline": {
borderColor: theme.palette.primary.main,
borderWidth: "1px",
},
"&.Mui-focused": {
boxShadow: `0 0 0 2px ${theme.palette.primary.main}15`,
},
},
"& .MuiInputBase-input": {
height: "auto",
fontSize: "1rem",
padding: theme.spacing(1.5, 2),
},
"& .MuiSelect-icon": {
color: theme.palette.grey[600],
},
display: "block",
}}
>
<InputLabel htmlFor={id}>{label}</InputLabel>
<MuiSelect
inputRef={ref}
variant={variant}
native={native}
label={label}
onChange={onChange}
{...otherProps}
inputProps={{
name: id,
id,
}}
>
{options.map((option) => (
<OptionComponent value={option} key={option}>
{optionLabelMap[option]}
</OptionComponent>
))}
</MuiSelect>
</FormControl>
);
});
export default Select;
|