@mui/x-data-grid
Version:
The Community plan edition of the MUI X Data Grid components.
124 lines • 4.37 kB
JavaScript
import _extends from "@babel/runtime/helpers/esm/extends";
import _objectWithoutPropertiesLoose from "@babel/runtime/helpers/esm/objectWithoutPropertiesLoose";
const _excluded = ["render", "className", "slotProps", "onKeyDown", "onChange"];
import * as React from 'react';
import PropTypes from 'prop-types';
import useForkRef from '@mui/utils/useForkRef';
import { forwardRef } from '@mui/x-internals/forwardRef';
import { useComponentRenderer } from '@mui/x-internals/useComponentRenderer';
import { useGridRootProps } from "../../hooks/utils/useGridRootProps.js";
import { useQuickFilterContext } from "./QuickFilterContext.js";
import { jsx as _jsx } from "react/jsx-runtime";
/**
* A component that takes user input and filters row data.
* It renders the `baseTextField` slot.
*
* Demos:
*
* - [Quick Filter](https://mui.com/x/react-data-grid/components/quick-filter/)
*
* API:
*
* - [QuickFilterControl API](https://mui.com/x/api/data-grid/quick-filter-control/)
*/
const QuickFilterControl = forwardRef(function QuickFilterControl(props, ref) {
const {
render,
className,
slotProps,
onKeyDown,
onChange
} = props,
other = _objectWithoutPropertiesLoose(props, _excluded);
const rootProps = useGridRootProps();
const {
state,
controlId,
controlRef,
onValueChange,
onExpandedChange,
clearValue
} = useQuickFilterContext();
const resolvedClassName = typeof className === 'function' ? className(state) : className;
const handleRef = useForkRef(controlRef, ref);
const handleKeyDown = event => {
if (event.key === 'Escape') {
if (state.value === '') {
onExpandedChange(false);
} else {
clearValue();
}
}
onKeyDown?.(event);
};
const handleBlur = event => {
if (state.value === '') {
onExpandedChange(false);
}
slotProps?.htmlInput?.onBlur?.(event);
};
const handleChange = event => {
if (!state.expanded) {
onExpandedChange(true);
}
onValueChange(event);
onChange?.(event);
};
const element = useComponentRenderer(rootProps.slots.baseTextField, render, _extends({}, rootProps.slotProps?.baseTextField, {
slotProps: _extends({
htmlInput: _extends({
role: 'searchbox',
id: controlId,
tabIndex: state.expanded ? undefined : -1
}, slotProps?.htmlInput, {
onBlur: handleBlur
})
}, slotProps),
value: state.value,
className: resolvedClassName
}, other, {
onChange: handleChange,
onKeyDown: handleKeyDown,
ref: handleRef
}), state);
return /*#__PURE__*/_jsx(React.Fragment, {
children: element
});
});
if (process.env.NODE_ENV !== "production") QuickFilterControl.displayName = "QuickFilterControl";
process.env.NODE_ENV !== "production" ? QuickFilterControl.propTypes = {
// ----------------------------- Warning --------------------------------
// | These PropTypes are generated from the TypeScript type definitions |
// | To update them edit the TypeScript types and run "pnpm proptypes" |
// ----------------------------------------------------------------------
autoComplete: PropTypes.string,
autoFocus: PropTypes.bool,
/**
* Override or extend the styles applied to the component.
*/
className: PropTypes.oneOfType([PropTypes.func, PropTypes.string]),
color: PropTypes.oneOf(['error', 'primary']),
disabled: PropTypes.bool,
error: PropTypes.bool,
fullWidth: PropTypes.bool,
helperText: PropTypes.string,
id: PropTypes.string,
inputRef: PropTypes.oneOfType([PropTypes.func, PropTypes.shape({
current: PropTypes.object
})]),
label: PropTypes.node,
multiline: PropTypes.bool,
placeholder: PropTypes.string,
/**
* A function to customize rendering of the component.
*/
render: PropTypes.oneOfType([PropTypes.element, PropTypes.func]),
role: PropTypes.string,
size: PropTypes.oneOf(['medium', 'small']),
slotProps: PropTypes.object,
style: PropTypes.object,
tabIndex: PropTypes.number,
type: PropTypes.oneOfType([PropTypes.oneOf(['button', 'checkbox', 'color', 'date', 'datetime-local', 'email', 'file', 'hidden', 'image', 'month', 'number', 'password', 'radio', 'range', 'reset', 'search', 'submit', 'tel', 'text', 'time', 'url', 'week']), PropTypes.object]),
value: PropTypes.string
} : void 0;
export { QuickFilterControl };