171 lines
5.4 KiB
Plaintext
171 lines
5.4 KiB
Plaintext
'use client';
|
|
|
|
import _objectWithoutPropertiesLoose from "@babel/runtime/helpers/esm/objectWithoutPropertiesLoose";
|
|
import _extends from "@babel/runtime/helpers/esm/extends";
|
|
const _excluded = ["active", "children", "className", "direction", "hideSortIcon", "IconComponent"];
|
|
import composeClasses from '@mui/utils/composeClasses';
|
|
import clsx from 'clsx';
|
|
import PropTypes from 'prop-types';
|
|
import * as React from 'react';
|
|
import ButtonBase from '../ButtonBase';
|
|
import ArrowDownwardIcon from '../internal/svg-icons/ArrowDownward';
|
|
import styled from '../styles/styled';
|
|
import useThemeProps from '../styles/useThemeProps';
|
|
import capitalize from '../utils/capitalize';
|
|
import tableSortLabelClasses, { getTableSortLabelUtilityClass } from './tableSortLabelClasses';
|
|
import { jsx as _jsx } from "react/jsx-runtime";
|
|
import { jsxs as _jsxs } from "react/jsx-runtime";
|
|
const useUtilityClasses = ownerState => {
|
|
const {
|
|
classes,
|
|
direction,
|
|
active
|
|
} = ownerState;
|
|
const slots = {
|
|
root: ['root', active && 'active'],
|
|
icon: ['icon', `iconDirection${capitalize(direction)}`]
|
|
};
|
|
return composeClasses(slots, getTableSortLabelUtilityClass, classes);
|
|
};
|
|
const TableSortLabelRoot = styled(ButtonBase, {
|
|
name: 'MuiTableSortLabel',
|
|
slot: 'Root',
|
|
overridesResolver: (props, styles) => {
|
|
const {
|
|
ownerState
|
|
} = props;
|
|
return [styles.root, ownerState.active && styles.active];
|
|
}
|
|
})(({
|
|
theme
|
|
}) => ({
|
|
cursor: 'pointer',
|
|
display: 'inline-flex',
|
|
justifyContent: 'flex-start',
|
|
flexDirection: 'inherit',
|
|
alignItems: 'center',
|
|
'&:focus': {
|
|
color: (theme.vars || theme).palette.text.secondary
|
|
},
|
|
'&:hover': {
|
|
color: (theme.vars || theme).palette.text.secondary,
|
|
[`& .${tableSortLabelClasses.icon}`]: {
|
|
opacity: 0.5
|
|
}
|
|
},
|
|
[`&.${tableSortLabelClasses.active}`]: {
|
|
color: (theme.vars || theme).palette.text.primary,
|
|
[`& .${tableSortLabelClasses.icon}`]: {
|
|
opacity: 1,
|
|
color: (theme.vars || theme).palette.text.secondary
|
|
}
|
|
}
|
|
}));
|
|
const TableSortLabelIcon = styled('span', {
|
|
name: 'MuiTableSortLabel',
|
|
slot: 'Icon',
|
|
overridesResolver: (props, styles) => {
|
|
const {
|
|
ownerState
|
|
} = props;
|
|
return [styles.icon, styles[`iconDirection${capitalize(ownerState.direction)}`]];
|
|
}
|
|
})(({
|
|
theme,
|
|
ownerState
|
|
}) => _extends({
|
|
fontSize: 18,
|
|
marginRight: 4,
|
|
marginLeft: 4,
|
|
opacity: 0,
|
|
transition: theme.transitions.create(['opacity', 'transform'], {
|
|
duration: theme.transitions.duration.shorter
|
|
}),
|
|
userSelect: 'none'
|
|
}, ownerState.direction === 'desc' && {
|
|
transform: 'rotate(0deg)'
|
|
}, ownerState.direction === 'asc' && {
|
|
transform: 'rotate(180deg)'
|
|
}));
|
|
|
|
/**
|
|
* A button based label for placing inside `TableCell` for column sorting.
|
|
*/
|
|
const TableSortLabel = /*#__PURE__*/React.forwardRef(function TableSortLabel(inProps, ref) {
|
|
const props = useThemeProps({
|
|
props: inProps,
|
|
name: 'MuiTableSortLabel'
|
|
});
|
|
const {
|
|
active = false,
|
|
children,
|
|
className,
|
|
direction = 'asc',
|
|
hideSortIcon = false,
|
|
IconComponent = ArrowDownwardIcon
|
|
} = props,
|
|
other = _objectWithoutPropertiesLoose(props, _excluded);
|
|
const ownerState = _extends({}, props, {
|
|
active,
|
|
direction,
|
|
hideSortIcon,
|
|
IconComponent
|
|
});
|
|
const classes = useUtilityClasses(ownerState);
|
|
return /*#__PURE__*/_jsxs(TableSortLabelRoot, _extends({
|
|
className: clsx(classes.root, className),
|
|
component: "span",
|
|
disableRipple: true,
|
|
ownerState: ownerState,
|
|
ref: ref
|
|
}, other, {
|
|
children: [children, hideSortIcon && !active ? null : /*#__PURE__*/_jsx(TableSortLabelIcon, {
|
|
as: IconComponent,
|
|
className: clsx(classes.icon),
|
|
ownerState: ownerState
|
|
})]
|
|
}));
|
|
});
|
|
process.env.NODE_ENV !== "production" ? TableSortLabel.propTypes /* remove-proptypes */ = {
|
|
// ┌────────────────────────────── Warning ──────────────────────────────┐
|
|
// │ These PropTypes are generated from the TypeScript type definitions. │
|
|
// │ To update them, edit the d.ts file and run `pnpm proptypes`. │
|
|
// └─────────────────────────────────────────────────────────────────────┘
|
|
/**
|
|
* If `true`, the label will have the active styling (should be true for the sorted column).
|
|
* @default false
|
|
*/
|
|
active: PropTypes.bool,
|
|
/**
|
|
* Label contents, the arrow will be appended automatically.
|
|
*/
|
|
children: PropTypes.node,
|
|
/**
|
|
* Override or extend the styles applied to the component.
|
|
*/
|
|
classes: PropTypes.object,
|
|
/**
|
|
* @ignore
|
|
*/
|
|
className: PropTypes.string,
|
|
/**
|
|
* The current sort direction.
|
|
* @default 'asc'
|
|
*/
|
|
direction: PropTypes.oneOf(['asc', 'desc']),
|
|
/**
|
|
* Hide sort icon when active is false.
|
|
* @default false
|
|
*/
|
|
hideSortIcon: PropTypes.bool,
|
|
/**
|
|
* Sort icon to use.
|
|
* @default ArrowDownwardIcon
|
|
*/
|
|
IconComponent: PropTypes.elementType,
|
|
/**
|
|
* The system prop that allows defining system overrides as well as additional CSS styles.
|
|
*/
|
|
sx: PropTypes.oneOfType([PropTypes.arrayOf(PropTypes.oneOfType([PropTypes.func, PropTypes.object, PropTypes.bool])), PropTypes.func, PropTypes.object])
|
|
} : void 0;
|
|
export default TableSortLabel; |