221 lines
8.8 KiB
JavaScript
221 lines
8.8 KiB
JavaScript
'use client';
|
|
|
|
import _objectWithoutPropertiesLoose from "@babel/runtime/helpers/esm/objectWithoutPropertiesLoose";
|
|
import _extends from "@babel/runtime/helpers/esm/extends";
|
|
const _excluded = ["children", "disabled", "id", "loading", "loadingIndicator", "loadingPosition", "variant"];
|
|
import * as React from 'react';
|
|
import PropTypes from 'prop-types';
|
|
import { chainPropTypes } from '@mui/utils';
|
|
import { capitalize, unstable_useId as useId } from '@mui/material/utils';
|
|
import { unstable_composeClasses as composeClasses } from '@mui/base';
|
|
import { styled, useThemeProps } from '@mui/material/styles';
|
|
import Button from '@mui/material/Button';
|
|
import { ButtonGroupContext } from '@mui/material/ButtonGroup';
|
|
import CircularProgress from '@mui/material/CircularProgress';
|
|
import resolveProps from '@mui/utils/resolveProps';
|
|
import loadingButtonClasses, { getLoadingButtonUtilityClass } from './loadingButtonClasses';
|
|
import { jsx as _jsx } from "react/jsx-runtime";
|
|
import { jsxs as _jsxs } from "react/jsx-runtime";
|
|
const useUtilityClasses = ownerState => {
|
|
const {
|
|
loading,
|
|
loadingPosition,
|
|
classes
|
|
} = ownerState;
|
|
const slots = {
|
|
root: ['root', loading && 'loading'],
|
|
startIcon: [loading && `startIconLoading${capitalize(loadingPosition)}`],
|
|
endIcon: [loading && `endIconLoading${capitalize(loadingPosition)}`],
|
|
loadingIndicator: ['loadingIndicator', loading && `loadingIndicator${capitalize(loadingPosition)}`]
|
|
};
|
|
const composedClasses = composeClasses(slots, getLoadingButtonUtilityClass, classes);
|
|
return _extends({}, classes, composedClasses);
|
|
};
|
|
|
|
// TODO use `import { rootShouldForwardProp } from '../styles/styled';` once move to core
|
|
const rootShouldForwardProp = prop => prop !== 'ownerState' && prop !== 'theme' && prop !== 'sx' && prop !== 'as' && prop !== 'classes';
|
|
const LoadingButtonRoot = styled(Button, {
|
|
shouldForwardProp: prop => rootShouldForwardProp(prop) || prop === 'classes',
|
|
name: 'MuiLoadingButton',
|
|
slot: 'Root',
|
|
overridesResolver: (props, styles) => {
|
|
return [styles.root, styles.startIconLoadingStart && {
|
|
[`& .${loadingButtonClasses.startIconLoadingStart}`]: styles.startIconLoadingStart
|
|
}, styles.endIconLoadingEnd && {
|
|
[`& .${loadingButtonClasses.endIconLoadingEnd}`]: styles.endIconLoadingEnd
|
|
}];
|
|
}
|
|
})(({
|
|
ownerState,
|
|
theme
|
|
}) => _extends({
|
|
[`& .${loadingButtonClasses.startIconLoadingStart}, & .${loadingButtonClasses.endIconLoadingEnd}`]: {
|
|
transition: theme.transitions.create(['opacity'], {
|
|
duration: theme.transitions.duration.short
|
|
}),
|
|
opacity: 0
|
|
}
|
|
}, ownerState.loadingPosition === 'center' && {
|
|
transition: theme.transitions.create(['background-color', 'box-shadow', 'border-color'], {
|
|
duration: theme.transitions.duration.short
|
|
}),
|
|
[`&.${loadingButtonClasses.loading}`]: {
|
|
color: 'transparent'
|
|
}
|
|
}, ownerState.loadingPosition === 'start' && ownerState.fullWidth && {
|
|
[`& .${loadingButtonClasses.startIconLoadingStart}, & .${loadingButtonClasses.endIconLoadingEnd}`]: {
|
|
transition: theme.transitions.create(['opacity'], {
|
|
duration: theme.transitions.duration.short
|
|
}),
|
|
opacity: 0,
|
|
marginRight: -8
|
|
}
|
|
}, ownerState.loadingPosition === 'end' && ownerState.fullWidth && {
|
|
[`& .${loadingButtonClasses.startIconLoadingStart}, & .${loadingButtonClasses.endIconLoadingEnd}`]: {
|
|
transition: theme.transitions.create(['opacity'], {
|
|
duration: theme.transitions.duration.short
|
|
}),
|
|
opacity: 0,
|
|
marginLeft: -8
|
|
}
|
|
}));
|
|
const LoadingButtonLoadingIndicator = styled('span', {
|
|
name: 'MuiLoadingButton',
|
|
slot: 'LoadingIndicator',
|
|
overridesResolver: (props, styles) => {
|
|
const {
|
|
ownerState
|
|
} = props;
|
|
return [styles.loadingIndicator, styles[`loadingIndicator${capitalize(ownerState.loadingPosition)}`]];
|
|
}
|
|
})(({
|
|
theme,
|
|
ownerState
|
|
}) => _extends({
|
|
position: 'absolute',
|
|
visibility: 'visible',
|
|
display: 'flex'
|
|
}, ownerState.loadingPosition === 'start' && (ownerState.variant === 'outlined' || ownerState.variant === 'contained') && {
|
|
left: ownerState.size === 'small' ? 10 : 14
|
|
}, ownerState.loadingPosition === 'start' && ownerState.variant === 'text' && {
|
|
left: 6
|
|
}, ownerState.loadingPosition === 'center' && {
|
|
left: '50%',
|
|
transform: 'translate(-50%)',
|
|
color: (theme.vars || theme).palette.action.disabled
|
|
}, ownerState.loadingPosition === 'end' && (ownerState.variant === 'outlined' || ownerState.variant === 'contained') && {
|
|
right: ownerState.size === 'small' ? 10 : 14
|
|
}, ownerState.loadingPosition === 'end' && ownerState.variant === 'text' && {
|
|
right: 6
|
|
}, ownerState.loadingPosition === 'start' && ownerState.fullWidth && {
|
|
position: 'relative',
|
|
left: -10
|
|
}, ownerState.loadingPosition === 'end' && ownerState.fullWidth && {
|
|
position: 'relative',
|
|
right: -10
|
|
}));
|
|
const LoadingButton = /*#__PURE__*/React.forwardRef(function LoadingButton(inProps, ref) {
|
|
const contextProps = React.useContext(ButtonGroupContext);
|
|
const resolvedProps = resolveProps(contextProps, inProps);
|
|
const props = useThemeProps({
|
|
props: resolvedProps,
|
|
name: 'MuiLoadingButton'
|
|
});
|
|
const {
|
|
children,
|
|
disabled = false,
|
|
id: idProp,
|
|
loading = false,
|
|
loadingIndicator: loadingIndicatorProp,
|
|
loadingPosition = 'center',
|
|
variant = 'text'
|
|
} = props,
|
|
other = _objectWithoutPropertiesLoose(props, _excluded);
|
|
const id = useId(idProp);
|
|
const loadingIndicator = loadingIndicatorProp != null ? loadingIndicatorProp : /*#__PURE__*/_jsx(CircularProgress, {
|
|
"aria-labelledby": id,
|
|
color: "inherit",
|
|
size: 16
|
|
});
|
|
const ownerState = _extends({}, props, {
|
|
disabled,
|
|
loading,
|
|
loadingIndicator,
|
|
loadingPosition,
|
|
variant
|
|
});
|
|
const classes = useUtilityClasses(ownerState);
|
|
const loadingButtonLoadingIndicator = loading ? /*#__PURE__*/_jsx(LoadingButtonLoadingIndicator, {
|
|
className: classes.loadingIndicator,
|
|
ownerState: ownerState,
|
|
children: loadingIndicator
|
|
}) : null;
|
|
return /*#__PURE__*/_jsxs(LoadingButtonRoot, _extends({
|
|
disabled: disabled || loading,
|
|
id: id,
|
|
ref: ref
|
|
}, other, {
|
|
variant: variant,
|
|
classes: classes,
|
|
ownerState: ownerState,
|
|
children: [ownerState.loadingPosition === 'end' ? children : loadingButtonLoadingIndicator, ownerState.loadingPosition === 'end' ? loadingButtonLoadingIndicator : children]
|
|
}));
|
|
});
|
|
process.env.NODE_ENV !== "production" ? LoadingButton.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`. │
|
|
// └─────────────────────────────────────────────────────────────────────┘
|
|
/**
|
|
* The content of the component.
|
|
*/
|
|
children: PropTypes.node,
|
|
/**
|
|
* Override or extend the styles applied to the component.
|
|
*/
|
|
classes: PropTypes.object,
|
|
/**
|
|
* If `true`, the component is disabled.
|
|
* @default false
|
|
*/
|
|
disabled: PropTypes.bool,
|
|
/**
|
|
* @ignore
|
|
*/
|
|
id: PropTypes.string,
|
|
/**
|
|
* If `true`, the loading indicator is shown and the button becomes disabled.
|
|
* @default false
|
|
*/
|
|
loading: PropTypes.bool,
|
|
/**
|
|
* Element placed before the children if the button is in loading state.
|
|
* The node should contain an element with `role="progressbar"` with an accessible name.
|
|
* By default we render a `CircularProgress` that is labelled by the button itself.
|
|
* @default <CircularProgress color="inherit" size={16} />
|
|
*/
|
|
loadingIndicator: PropTypes.node,
|
|
/**
|
|
* The loading indicator can be positioned on the start, end, or the center of the button.
|
|
* @default 'center'
|
|
*/
|
|
loadingPosition: chainPropTypes(PropTypes.oneOf(['start', 'end', 'center']), props => {
|
|
if (props.loadingPosition === 'start' && !props.startIcon) {
|
|
return new Error(`MUI: The loadingPosition="start" should be used in combination with startIcon.`);
|
|
}
|
|
if (props.loadingPosition === 'end' && !props.endIcon) {
|
|
return new Error(`MUI: The loadingPosition="end" should be used in combination with endIcon.`);
|
|
}
|
|
return null;
|
|
}),
|
|
/**
|
|
* 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]),
|
|
/**
|
|
* The variant to use.
|
|
* @default 'text'
|
|
*/
|
|
variant: PropTypes /* @typescript-to-proptypes-ignore */.oneOfType([PropTypes.oneOf(['contained', 'outlined', 'text']), PropTypes.string])
|
|
} : void 0;
|
|
export default LoadingButton; |