50 lines
2.2 KiB
JavaScript
50 lines
2.2 KiB
JavaScript
import _extends from "@babel/runtime/helpers/esm/extends";
|
|
import _objectWithoutPropertiesLoose from "@babel/runtime/helpers/esm/objectWithoutPropertiesLoose";
|
|
const _excluded = ["onClick"];
|
|
import * as React from 'react';
|
|
import { unstable_useId as useId } from '@mui/material/utils';
|
|
import { useGridSelector } from '../../hooks/utils/useGridSelector';
|
|
import { gridPreferencePanelStateSelector } from '../../hooks/features/preferencesPanel/gridPreferencePanelSelector';
|
|
import { GridPreferencePanelsValue } from '../../hooks/features/preferencesPanel/gridPreferencePanelsValue';
|
|
import { useGridApiContext } from '../../hooks/utils/useGridApiContext';
|
|
import { useGridRootProps } from '../../hooks/utils/useGridRootProps';
|
|
import { jsx as _jsx } from "react/jsx-runtime";
|
|
export const GridToolbarColumnsButton = /*#__PURE__*/React.forwardRef(function GridToolbarColumnsButton(props, ref) {
|
|
const {
|
|
onClick
|
|
} = props,
|
|
other = _objectWithoutPropertiesLoose(props, _excluded);
|
|
const columnButtonId = useId();
|
|
const columnPanelId = useId();
|
|
const apiRef = useGridApiContext();
|
|
const rootProps = useGridRootProps();
|
|
const preferencePanel = useGridSelector(apiRef, gridPreferencePanelStateSelector);
|
|
const showColumns = event => {
|
|
if (preferencePanel.open && preferencePanel.openedPanelValue === GridPreferencePanelsValue.columns) {
|
|
apiRef.current.hidePreferences();
|
|
} else {
|
|
apiRef.current.showPreferences(GridPreferencePanelsValue.columns, columnPanelId, columnButtonId);
|
|
}
|
|
onClick?.(event);
|
|
};
|
|
|
|
// Disable the button if the corresponding is disabled
|
|
if (rootProps.disableColumnSelector) {
|
|
return null;
|
|
}
|
|
const isOpen = preferencePanel.open && preferencePanel.panelId === columnPanelId;
|
|
return /*#__PURE__*/_jsx(rootProps.slots.baseButton, _extends({
|
|
ref: ref,
|
|
id: columnButtonId,
|
|
size: "small",
|
|
"aria-label": apiRef.current.getLocaleText('toolbarColumnsLabel'),
|
|
"aria-haspopup": "menu",
|
|
"aria-expanded": isOpen,
|
|
"aria-controls": isOpen ? columnPanelId : undefined,
|
|
startIcon: /*#__PURE__*/_jsx(rootProps.slots.columnSelectorIcon, {})
|
|
}, other, {
|
|
onClick: showColumns
|
|
}, rootProps.slotProps?.baseButton, {
|
|
children: apiRef.current.getLocaleText('toolbarColumns')
|
|
}));
|
|
}); |