372 lines
16 KiB
Plaintext
372 lines
16 KiB
Plaintext
"use strict";
|
|
'use client';
|
|
|
|
var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault");
|
|
Object.defineProperty(exports, "__esModule", {
|
|
value: true
|
|
});
|
|
exports.default = void 0;
|
|
var _objectWithoutPropertiesLoose2 = _interopRequireDefault(require("@babel/runtime/helpers/objectWithoutPropertiesLoose"));
|
|
var _extends2 = _interopRequireDefault(require("@babel/runtime/helpers/extends"));
|
|
var React = _interopRequireWildcard(require("react"));
|
|
var _propTypes = _interopRequireDefault(require("prop-types"));
|
|
var _clsx = _interopRequireDefault(require("clsx"));
|
|
var _composeClasses = _interopRequireDefault(require("@mui/utils/composeClasses"));
|
|
var _colorManipulator = require("@mui/system/colorManipulator");
|
|
var _RtlProvider = require("@mui/system/RtlProvider");
|
|
var _useThemeProps = _interopRequireDefault(require("../styles/useThemeProps"));
|
|
var _paginationItemClasses = _interopRequireWildcard(require("./paginationItemClasses"));
|
|
var _ButtonBase = _interopRequireDefault(require("../ButtonBase"));
|
|
var _capitalize = _interopRequireDefault(require("../utils/capitalize"));
|
|
var _FirstPage = _interopRequireDefault(require("../internal/svg-icons/FirstPage"));
|
|
var _LastPage = _interopRequireDefault(require("../internal/svg-icons/LastPage"));
|
|
var _NavigateBefore = _interopRequireDefault(require("../internal/svg-icons/NavigateBefore"));
|
|
var _NavigateNext = _interopRequireDefault(require("../internal/svg-icons/NavigateNext"));
|
|
var _styled = _interopRequireDefault(require("../styles/styled"));
|
|
var _jsxRuntime = require("react/jsx-runtime");
|
|
const _excluded = ["className", "color", "component", "components", "disabled", "page", "selected", "shape", "size", "slots", "type", "variant"];
|
|
function _getRequireWildcardCache(e) { if ("function" != typeof WeakMap) return null; var r = new WeakMap(), t = new WeakMap(); return (_getRequireWildcardCache = function (e) { return e ? t : r; })(e); }
|
|
function _interopRequireWildcard(e, r) { if (!r && e && e.__esModule) return e; if (null === e || "object" != typeof e && "function" != typeof e) return { default: e }; var t = _getRequireWildcardCache(r); if (t && t.has(e)) return t.get(e); var n = { __proto__: null }, a = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var u in e) if ("default" !== u && Object.prototype.hasOwnProperty.call(e, u)) { var i = a ? Object.getOwnPropertyDescriptor(e, u) : null; i && (i.get || i.set) ? Object.defineProperty(n, u, i) : n[u] = e[u]; } return n.default = e, t && t.set(e, n), n; }
|
|
const overridesResolver = (props, styles) => {
|
|
const {
|
|
ownerState
|
|
} = props;
|
|
return [styles.root, styles[ownerState.variant], styles[`size${(0, _capitalize.default)(ownerState.size)}`], ownerState.variant === 'text' && styles[`text${(0, _capitalize.default)(ownerState.color)}`], ownerState.variant === 'outlined' && styles[`outlined${(0, _capitalize.default)(ownerState.color)}`], ownerState.shape === 'rounded' && styles.rounded, ownerState.type === 'page' && styles.page, (ownerState.type === 'start-ellipsis' || ownerState.type === 'end-ellipsis') && styles.ellipsis, (ownerState.type === 'previous' || ownerState.type === 'next') && styles.previousNext, (ownerState.type === 'first' || ownerState.type === 'last') && styles.firstLast];
|
|
};
|
|
const useUtilityClasses = ownerState => {
|
|
const {
|
|
classes,
|
|
color,
|
|
disabled,
|
|
selected,
|
|
size,
|
|
shape,
|
|
type,
|
|
variant
|
|
} = ownerState;
|
|
const slots = {
|
|
root: ['root', `size${(0, _capitalize.default)(size)}`, variant, shape, color !== 'standard' && `color${(0, _capitalize.default)(color)}`, color !== 'standard' && `${variant}${(0, _capitalize.default)(color)}`, disabled && 'disabled', selected && 'selected', {
|
|
page: 'page',
|
|
first: 'firstLast',
|
|
last: 'firstLast',
|
|
'start-ellipsis': 'ellipsis',
|
|
'end-ellipsis': 'ellipsis',
|
|
previous: 'previousNext',
|
|
next: 'previousNext'
|
|
}[type]],
|
|
icon: ['icon']
|
|
};
|
|
return (0, _composeClasses.default)(slots, _paginationItemClasses.getPaginationItemUtilityClass, classes);
|
|
};
|
|
const PaginationItemEllipsis = (0, _styled.default)('div', {
|
|
name: 'MuiPaginationItem',
|
|
slot: 'Root',
|
|
overridesResolver
|
|
})(({
|
|
theme,
|
|
ownerState
|
|
}) => (0, _extends2.default)({}, theme.typography.body2, {
|
|
borderRadius: 32 / 2,
|
|
textAlign: 'center',
|
|
boxSizing: 'border-box',
|
|
minWidth: 32,
|
|
padding: '0 6px',
|
|
margin: '0 3px',
|
|
color: (theme.vars || theme).palette.text.primary,
|
|
height: 'auto',
|
|
[`&.${_paginationItemClasses.default.disabled}`]: {
|
|
opacity: (theme.vars || theme).palette.action.disabledOpacity
|
|
}
|
|
}, ownerState.size === 'small' && {
|
|
minWidth: 26,
|
|
borderRadius: 26 / 2,
|
|
margin: '0 1px',
|
|
padding: '0 4px'
|
|
}, ownerState.size === 'large' && {
|
|
minWidth: 40,
|
|
borderRadius: 40 / 2,
|
|
padding: '0 10px',
|
|
fontSize: theme.typography.pxToRem(15)
|
|
}));
|
|
const PaginationItemPage = (0, _styled.default)(_ButtonBase.default, {
|
|
name: 'MuiPaginationItem',
|
|
slot: 'Root',
|
|
overridesResolver
|
|
})(({
|
|
theme,
|
|
ownerState
|
|
}) => (0, _extends2.default)({}, theme.typography.body2, {
|
|
borderRadius: 32 / 2,
|
|
textAlign: 'center',
|
|
boxSizing: 'border-box',
|
|
minWidth: 32,
|
|
height: 32,
|
|
padding: '0 6px',
|
|
margin: '0 3px',
|
|
color: (theme.vars || theme).palette.text.primary,
|
|
[`&.${_paginationItemClasses.default.focusVisible}`]: {
|
|
backgroundColor: (theme.vars || theme).palette.action.focus
|
|
},
|
|
[`&.${_paginationItemClasses.default.disabled}`]: {
|
|
opacity: (theme.vars || theme).palette.action.disabledOpacity
|
|
},
|
|
transition: theme.transitions.create(['color', 'background-color'], {
|
|
duration: theme.transitions.duration.short
|
|
}),
|
|
'&:hover': {
|
|
backgroundColor: (theme.vars || theme).palette.action.hover,
|
|
// Reset on touch devices, it doesn't add specificity
|
|
'@media (hover: none)': {
|
|
backgroundColor: 'transparent'
|
|
}
|
|
},
|
|
[`&.${_paginationItemClasses.default.selected}`]: {
|
|
backgroundColor: (theme.vars || theme).palette.action.selected,
|
|
'&:hover': {
|
|
backgroundColor: theme.vars ? `rgba(${theme.vars.palette.action.selectedChannel} / calc(${theme.vars.palette.action.selectedOpacity} + ${theme.vars.palette.action.hoverOpacity}))` : (0, _colorManipulator.alpha)(theme.palette.action.selected, theme.palette.action.selectedOpacity + theme.palette.action.hoverOpacity),
|
|
// Reset on touch devices, it doesn't add specificity
|
|
'@media (hover: none)': {
|
|
backgroundColor: (theme.vars || theme).palette.action.selected
|
|
}
|
|
},
|
|
[`&.${_paginationItemClasses.default.focusVisible}`]: {
|
|
backgroundColor: theme.vars ? `rgba(${theme.vars.palette.action.selectedChannel} / calc(${theme.vars.palette.action.selectedOpacity} + ${theme.vars.palette.action.focusOpacity}))` : (0, _colorManipulator.alpha)(theme.palette.action.selected, theme.palette.action.selectedOpacity + theme.palette.action.focusOpacity)
|
|
},
|
|
[`&.${_paginationItemClasses.default.disabled}`]: {
|
|
opacity: 1,
|
|
color: (theme.vars || theme).palette.action.disabled,
|
|
backgroundColor: (theme.vars || theme).palette.action.selected
|
|
}
|
|
}
|
|
}, ownerState.size === 'small' && {
|
|
minWidth: 26,
|
|
height: 26,
|
|
borderRadius: 26 / 2,
|
|
margin: '0 1px',
|
|
padding: '0 4px'
|
|
}, ownerState.size === 'large' && {
|
|
minWidth: 40,
|
|
height: 40,
|
|
borderRadius: 40 / 2,
|
|
padding: '0 10px',
|
|
fontSize: theme.typography.pxToRem(15)
|
|
}, ownerState.shape === 'rounded' && {
|
|
borderRadius: (theme.vars || theme).shape.borderRadius
|
|
}), ({
|
|
theme,
|
|
ownerState
|
|
}) => (0, _extends2.default)({}, ownerState.variant === 'text' && {
|
|
[`&.${_paginationItemClasses.default.selected}`]: (0, _extends2.default)({}, ownerState.color !== 'standard' && {
|
|
color: (theme.vars || theme).palette[ownerState.color].contrastText,
|
|
backgroundColor: (theme.vars || theme).palette[ownerState.color].main,
|
|
'&:hover': {
|
|
backgroundColor: (theme.vars || theme).palette[ownerState.color].dark,
|
|
// Reset on touch devices, it doesn't add specificity
|
|
'@media (hover: none)': {
|
|
backgroundColor: (theme.vars || theme).palette[ownerState.color].main
|
|
}
|
|
},
|
|
[`&.${_paginationItemClasses.default.focusVisible}`]: {
|
|
backgroundColor: (theme.vars || theme).palette[ownerState.color].dark
|
|
}
|
|
}, {
|
|
[`&.${_paginationItemClasses.default.disabled}`]: {
|
|
color: (theme.vars || theme).palette.action.disabled
|
|
}
|
|
})
|
|
}, ownerState.variant === 'outlined' && {
|
|
border: theme.vars ? `1px solid rgba(${theme.vars.palette.common.onBackgroundChannel} / 0.23)` : `1px solid ${theme.palette.mode === 'light' ? 'rgba(0, 0, 0, 0.23)' : 'rgba(255, 255, 255, 0.23)'}`,
|
|
[`&.${_paginationItemClasses.default.selected}`]: (0, _extends2.default)({}, ownerState.color !== 'standard' && {
|
|
color: (theme.vars || theme).palette[ownerState.color].main,
|
|
border: `1px solid ${theme.vars ? `rgba(${theme.vars.palette[ownerState.color].mainChannel} / 0.5)` : (0, _colorManipulator.alpha)(theme.palette[ownerState.color].main, 0.5)}`,
|
|
backgroundColor: theme.vars ? `rgba(${theme.vars.palette[ownerState.color].mainChannel} / ${theme.vars.palette.action.activatedOpacity})` : (0, _colorManipulator.alpha)(theme.palette[ownerState.color].main, theme.palette.action.activatedOpacity),
|
|
'&:hover': {
|
|
backgroundColor: theme.vars ? `rgba(${theme.vars.palette[ownerState.color].mainChannel} / calc(${theme.vars.palette.action.activatedOpacity} + ${theme.vars.palette.action.focusOpacity}))` : (0, _colorManipulator.alpha)(theme.palette[ownerState.color].main, theme.palette.action.activatedOpacity + theme.palette.action.focusOpacity),
|
|
// Reset on touch devices, it doesn't add specificity
|
|
'@media (hover: none)': {
|
|
backgroundColor: 'transparent'
|
|
}
|
|
},
|
|
[`&.${_paginationItemClasses.default.focusVisible}`]: {
|
|
backgroundColor: theme.vars ? `rgba(${theme.vars.palette[ownerState.color].mainChannel} / calc(${theme.vars.palette.action.activatedOpacity} + ${theme.vars.palette.action.focusOpacity}))` : (0, _colorManipulator.alpha)(theme.palette[ownerState.color].main, theme.palette.action.activatedOpacity + theme.palette.action.focusOpacity)
|
|
}
|
|
}, {
|
|
[`&.${_paginationItemClasses.default.disabled}`]: {
|
|
borderColor: (theme.vars || theme).palette.action.disabledBackground,
|
|
color: (theme.vars || theme).palette.action.disabled
|
|
}
|
|
})
|
|
}));
|
|
const PaginationItemPageIcon = (0, _styled.default)('div', {
|
|
name: 'MuiPaginationItem',
|
|
slot: 'Icon',
|
|
overridesResolver: (props, styles) => styles.icon
|
|
})(({
|
|
theme,
|
|
ownerState
|
|
}) => (0, _extends2.default)({
|
|
fontSize: theme.typography.pxToRem(20),
|
|
margin: '0 -8px'
|
|
}, ownerState.size === 'small' && {
|
|
fontSize: theme.typography.pxToRem(18)
|
|
}, ownerState.size === 'large' && {
|
|
fontSize: theme.typography.pxToRem(22)
|
|
}));
|
|
const PaginationItem = /*#__PURE__*/React.forwardRef(function PaginationItem(inProps, ref) {
|
|
const props = (0, _useThemeProps.default)({
|
|
props: inProps,
|
|
name: 'MuiPaginationItem'
|
|
});
|
|
const {
|
|
className,
|
|
color = 'standard',
|
|
component,
|
|
components = {},
|
|
disabled = false,
|
|
page,
|
|
selected = false,
|
|
shape = 'circular',
|
|
size = 'medium',
|
|
slots = {},
|
|
type = 'page',
|
|
variant = 'text'
|
|
} = props,
|
|
other = (0, _objectWithoutPropertiesLoose2.default)(props, _excluded);
|
|
const ownerState = (0, _extends2.default)({}, props, {
|
|
color,
|
|
disabled,
|
|
selected,
|
|
shape,
|
|
size,
|
|
type,
|
|
variant
|
|
});
|
|
const isRtl = (0, _RtlProvider.useRtl)();
|
|
const classes = useUtilityClasses(ownerState);
|
|
const normalizedIcons = isRtl ? {
|
|
previous: slots.next || components.next || _NavigateNext.default,
|
|
next: slots.previous || components.previous || _NavigateBefore.default,
|
|
last: slots.first || components.first || _FirstPage.default,
|
|
first: slots.last || components.last || _LastPage.default
|
|
} : {
|
|
previous: slots.previous || components.previous || _NavigateBefore.default,
|
|
next: slots.next || components.next || _NavigateNext.default,
|
|
first: slots.first || components.first || _FirstPage.default,
|
|
last: slots.last || components.last || _LastPage.default
|
|
};
|
|
const Icon = normalizedIcons[type];
|
|
return type === 'start-ellipsis' || type === 'end-ellipsis' ? /*#__PURE__*/(0, _jsxRuntime.jsx)(PaginationItemEllipsis, {
|
|
ref: ref,
|
|
ownerState: ownerState,
|
|
className: (0, _clsx.default)(classes.root, className),
|
|
children: "\u2026"
|
|
}) : /*#__PURE__*/(0, _jsxRuntime.jsxs)(PaginationItemPage, (0, _extends2.default)({
|
|
ref: ref,
|
|
ownerState: ownerState,
|
|
component: component,
|
|
disabled: disabled,
|
|
className: (0, _clsx.default)(classes.root, className)
|
|
}, other, {
|
|
children: [type === 'page' && page, Icon ? /*#__PURE__*/(0, _jsxRuntime.jsx)(PaginationItemPageIcon, {
|
|
as: Icon,
|
|
ownerState: ownerState,
|
|
className: classes.icon
|
|
}) : null]
|
|
}));
|
|
});
|
|
process.env.NODE_ENV !== "production" ? PaginationItem.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`. │
|
|
// └─────────────────────────────────────────────────────────────────────┘
|
|
/**
|
|
* @ignore
|
|
*/
|
|
children: _propTypes.default.node,
|
|
/**
|
|
* Override or extend the styles applied to the component.
|
|
*/
|
|
classes: _propTypes.default.object,
|
|
/**
|
|
* @ignore
|
|
*/
|
|
className: _propTypes.default.string,
|
|
/**
|
|
* The active color.
|
|
* It supports both default and custom theme colors, which can be added as shown in the
|
|
* [palette customization guide](https://mui.com/material-ui/customization/palette/#custom-colors).
|
|
* @default 'standard'
|
|
*/
|
|
color: _propTypes.default /* @typescript-to-proptypes-ignore */.oneOfType([_propTypes.default.oneOf(['primary', 'secondary', 'standard']), _propTypes.default.string]),
|
|
/**
|
|
* The component used for the root node.
|
|
* Either a string to use a HTML element or a component.
|
|
*/
|
|
component: _propTypes.default.elementType,
|
|
/**
|
|
* The components used for each slot inside.
|
|
*
|
|
* This prop is an alias for the `slots` prop.
|
|
* It's recommended to use the `slots` prop instead.
|
|
*
|
|
* @default {}
|
|
*/
|
|
components: _propTypes.default.shape({
|
|
first: _propTypes.default.elementType,
|
|
last: _propTypes.default.elementType,
|
|
next: _propTypes.default.elementType,
|
|
previous: _propTypes.default.elementType
|
|
}),
|
|
/**
|
|
* If `true`, the component is disabled.
|
|
* @default false
|
|
*/
|
|
disabled: _propTypes.default.bool,
|
|
/**
|
|
* The current page number.
|
|
*/
|
|
page: _propTypes.default.node,
|
|
/**
|
|
* If `true` the pagination item is selected.
|
|
* @default false
|
|
*/
|
|
selected: _propTypes.default.bool,
|
|
/**
|
|
* The shape of the pagination item.
|
|
* @default 'circular'
|
|
*/
|
|
shape: _propTypes.default.oneOf(['circular', 'rounded']),
|
|
/**
|
|
* The size of the component.
|
|
* @default 'medium'
|
|
*/
|
|
size: _propTypes.default /* @typescript-to-proptypes-ignore */.oneOfType([_propTypes.default.oneOf(['small', 'medium', 'large']), _propTypes.default.string]),
|
|
/**
|
|
* The components used for each slot inside.
|
|
*
|
|
* This prop is an alias for the `components` prop, which will be deprecated in the future.
|
|
*
|
|
* @default {}
|
|
*/
|
|
slots: _propTypes.default.shape({
|
|
first: _propTypes.default.elementType,
|
|
last: _propTypes.default.elementType,
|
|
next: _propTypes.default.elementType,
|
|
previous: _propTypes.default.elementType
|
|
}),
|
|
/**
|
|
* The system prop that allows defining system overrides as well as additional CSS styles.
|
|
*/
|
|
sx: _propTypes.default.oneOfType([_propTypes.default.arrayOf(_propTypes.default.oneOfType([_propTypes.default.func, _propTypes.default.object, _propTypes.default.bool])), _propTypes.default.func, _propTypes.default.object]),
|
|
/**
|
|
* The type of pagination item.
|
|
* @default 'page'
|
|
*/
|
|
type: _propTypes.default.oneOf(['end-ellipsis', 'first', 'last', 'next', 'page', 'previous', 'start-ellipsis']),
|
|
/**
|
|
* The variant to use.
|
|
* @default 'text'
|
|
*/
|
|
variant: _propTypes.default /* @typescript-to-proptypes-ignore */.oneOfType([_propTypes.default.oneOf(['outlined', 'text']), _propTypes.default.string])
|
|
} : void 0;
|
|
var _default = exports.default = PaginationItem; |