@mui/x-data-grid
Version:
The community edition of the data grid component (MUI X).
94 lines (89 loc) • 3.56 kB
JavaScript
import _extends from "@babel/runtime/helpers/esm/extends";
import _objectWithoutPropertiesLoose from "@babel/runtime/helpers/esm/objectWithoutPropertiesLoose";
const _excluded = ["item", "applyValue", "type", "apiRef", "focusElementRef", "InputProps"];
import * as React from 'react';
import PropTypes from 'prop-types';
import { unstable_useId as useId } from '@mui/material/utils';
import { GridLoadIcon } from '../../icons';
import { useGridRootProps } from '../../../hooks/utils/useGridRootProps';
import { jsx as _jsx } from "react/jsx-runtime";
export const SUBMIT_FILTER_DATE_STROKE_TIME = 500;
function GridFilterInputDate(props) {
var _item$value, _rootProps$components;
const {
item,
applyValue,
type,
apiRef,
focusElementRef,
InputProps
} = props,
other = _objectWithoutPropertiesLoose(props, _excluded);
const filterTimeout = React.useRef();
const [filterValueState, setFilterValueState] = React.useState((_item$value = item.value) != null ? _item$value : '');
const [applying, setIsApplying] = React.useState(false);
const id = useId();
const rootProps = useGridRootProps();
const onFilterChange = React.useCallback(event => {
const value = event.target.value;
clearTimeout(filterTimeout.current);
setFilterValueState(String(value));
setIsApplying(true);
filterTimeout.current = setTimeout(() => {
applyValue(_extends({}, item, {
value
}));
setIsApplying(false);
}, SUBMIT_FILTER_DATE_STROKE_TIME);
}, [applyValue, item]);
React.useEffect(() => {
return () => {
clearTimeout(filterTimeout.current);
};
}, []);
React.useEffect(() => {
var _item$value2;
const itemValue = (_item$value2 = item.value) != null ? _item$value2 : '';
setFilterValueState(String(itemValue));
}, [item.value]);
return /*#__PURE__*/_jsx(rootProps.components.BaseTextField, _extends({
id: id,
label: apiRef.current.getLocaleText('filterPanelInputLabel'),
placeholder: apiRef.current.getLocaleText('filterPanelInputPlaceholder'),
value: filterValueState,
onChange: onFilterChange,
variant: "standard",
type: type || 'text',
InputLabelProps: {
shrink: true
},
inputRef: focusElementRef,
InputProps: _extends({}, applying ? {
endAdornment: /*#__PURE__*/_jsx(GridLoadIcon, {})
} : {}, InputProps, {
inputProps: _extends({
max: type === 'datetime-local' ? '9999-12-31T23:59' : '9999-12-31'
}, InputProps == null ? void 0 : InputProps.inputProps)
})
}, other, (_rootProps$components = rootProps.componentsProps) == null ? void 0 : _rootProps$components.baseTextField));
}
process.env.NODE_ENV !== "production" ? GridFilterInputDate.propTypes = {
// ----------------------------- Warning --------------------------------
// | These PropTypes are generated from the TypeScript type definitions |
// | To update them edit the TypeScript types and run "yarn proptypes" |
// ----------------------------------------------------------------------
apiRef: PropTypes.shape({
current: PropTypes.object.isRequired
}).isRequired,
applyValue: PropTypes.func.isRequired,
focusElementRef: PropTypes
/* @typescript-to-proptypes-ignore */
.oneOfType([PropTypes.func, PropTypes.object]),
item: PropTypes.shape({
columnField: PropTypes.string.isRequired,
id: PropTypes.oneOfType([PropTypes.number, PropTypes.string]),
operatorValue: PropTypes.string,
value: PropTypes.any
}).isRequired
} : void 0;
export { GridFilterInputDate };