File size: 1,980 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 |
import React from 'react';
import Grow from '@mui/material/Grow';
import TextField from '@mui/material/TextField';
import SearchIcon from '@mui/icons-material/Search';
import IconButton from '@mui/material/IconButton';
import ClearIcon from '@mui/icons-material/Clear';
import { makeStyles } from 'tss-react/mui';
const useStyles = makeStyles({ name: 'MUIDataTableSearch' })(theme => ({
main: {
display: 'flex',
flex: '1 0 auto',
alignItems: 'center',
},
searchIcon: {
color: theme.palette.text.secondary,
marginRight: '8px',
},
searchText: {
flex: '0.8 0',
},
clearIcon: {
'&:hover': {
color: theme.palette.error.main,
},
},
}));
const TableSearch = ({ options, searchText, onSearch, onHide }) => {
const { classes } = useStyles();
const handleTextChange = event => {
onSearch(event.target.value);
};
const onKeyDown = event => {
if (event.key === 'Escape') {
onHide();
}
};
const clearIconVisibility = options.searchAlwaysOpen ? 'hidden' : 'visible';
return (
<Grow appear in={true} timeout={300}>
<div className={classes.main}>
<SearchIcon className={classes.searchIcon} />
<TextField
className={classes.searchText}
autoFocus={true}
variant={'standard'}
InputProps={{
'data-test-id': options.textLabels.toolbar.search,
}}
inputProps={{
'aria-label': options.textLabels.toolbar.search,
}}
value={searchText || ''}
onKeyDown={onKeyDown}
onChange={handleTextChange}
fullWidth={true}
placeholder={options.searchPlaceholder}
{...(options.searchProps ? options.searchProps : {})}
/>
<IconButton className={classes.clearIcon} style={{ visibility: clearIconVisibility }} onClick={onHide}>
<ClearIcon />
</IconButton>
</div>
</Grow>
);
};
export default TableSearch;
|