You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
325 lines
12 KiB
JavaScript
325 lines
12 KiB
JavaScript
'use client';
|
|
|
|
import _objectWithoutPropertiesLoose from "@babel/runtime/helpers/esm/objectWithoutPropertiesLoose";
|
|
import _extends from "@babel/runtime/helpers/esm/extends";
|
|
const _excluded = ["action", "children", "className", "closeText", "color", "components", "componentsProps", "icon", "iconMapping", "onClose", "role", "severity", "slotProps", "slots", "variant"];
|
|
import * as React from 'react';
|
|
import PropTypes from 'prop-types';
|
|
import clsx from 'clsx';
|
|
import { unstable_composeClasses as composeClasses } from '@mui/base/composeClasses';
|
|
import { darken, lighten } from '@mui/system';
|
|
import styled from '../styles/styled';
|
|
import useThemeProps from '../styles/useThemeProps';
|
|
import capitalize from '../utils/capitalize';
|
|
import Paper from '../Paper';
|
|
import alertClasses, { getAlertUtilityClass } from './alertClasses';
|
|
import IconButton from '../IconButton';
|
|
import SuccessOutlinedIcon from '../internal/svg-icons/SuccessOutlined';
|
|
import ReportProblemOutlinedIcon from '../internal/svg-icons/ReportProblemOutlined';
|
|
import ErrorOutlineIcon from '../internal/svg-icons/ErrorOutline';
|
|
import InfoOutlinedIcon from '../internal/svg-icons/InfoOutlined';
|
|
import CloseIcon from '../internal/svg-icons/Close';
|
|
import { jsx as _jsx } from "react/jsx-runtime";
|
|
import { jsxs as _jsxs } from "react/jsx-runtime";
|
|
const useUtilityClasses = ownerState => {
|
|
const {
|
|
variant,
|
|
color,
|
|
severity,
|
|
classes
|
|
} = ownerState;
|
|
const slots = {
|
|
root: ['root', `${variant}${capitalize(color || severity)}`, `${variant}`],
|
|
icon: ['icon'],
|
|
message: ['message'],
|
|
action: ['action']
|
|
};
|
|
return composeClasses(slots, getAlertUtilityClass, classes);
|
|
};
|
|
const AlertRoot = styled(Paper, {
|
|
name: 'MuiAlert',
|
|
slot: 'Root',
|
|
overridesResolver: (props, styles) => {
|
|
const {
|
|
ownerState
|
|
} = props;
|
|
return [styles.root, styles[ownerState.variant], styles[`${ownerState.variant}${capitalize(ownerState.color || ownerState.severity)}`]];
|
|
}
|
|
})(({
|
|
theme,
|
|
ownerState
|
|
}) => {
|
|
const getColor = theme.palette.mode === 'light' ? darken : lighten;
|
|
const getBackgroundColor = theme.palette.mode === 'light' ? lighten : darken;
|
|
const color = ownerState.color || ownerState.severity;
|
|
return _extends({}, theme.typography.body2, {
|
|
backgroundColor: 'transparent',
|
|
display: 'flex',
|
|
padding: '6px 16px'
|
|
}, color && ownerState.variant === 'standard' && {
|
|
color: theme.vars ? theme.vars.palette.Alert[`${color}Color`] : getColor(theme.palette[color].light, 0.6),
|
|
backgroundColor: theme.vars ? theme.vars.palette.Alert[`${color}StandardBg`] : getBackgroundColor(theme.palette[color].light, 0.9),
|
|
[`& .${alertClasses.icon}`]: theme.vars ? {
|
|
color: theme.vars.palette.Alert[`${color}IconColor`]
|
|
} : {
|
|
color: theme.palette[color].main
|
|
}
|
|
}, color && ownerState.variant === 'outlined' && {
|
|
color: theme.vars ? theme.vars.palette.Alert[`${color}Color`] : getColor(theme.palette[color].light, 0.6),
|
|
border: `1px solid ${(theme.vars || theme).palette[color].light}`,
|
|
[`& .${alertClasses.icon}`]: theme.vars ? {
|
|
color: theme.vars.palette.Alert[`${color}IconColor`]
|
|
} : {
|
|
color: theme.palette[color].main
|
|
}
|
|
}, color && ownerState.variant === 'filled' && _extends({
|
|
fontWeight: theme.typography.fontWeightMedium
|
|
}, theme.vars ? {
|
|
color: theme.vars.palette.Alert[`${color}FilledColor`],
|
|
backgroundColor: theme.vars.palette.Alert[`${color}FilledBg`]
|
|
} : {
|
|
backgroundColor: theme.palette.mode === 'dark' ? theme.palette[color].dark : theme.palette[color].main,
|
|
color: theme.palette.getContrastText(theme.palette[color].main)
|
|
}));
|
|
});
|
|
const AlertIcon = styled('div', {
|
|
name: 'MuiAlert',
|
|
slot: 'Icon',
|
|
overridesResolver: (props, styles) => styles.icon
|
|
})({
|
|
marginRight: 12,
|
|
padding: '7px 0',
|
|
display: 'flex',
|
|
fontSize: 22,
|
|
opacity: 0.9
|
|
});
|
|
const AlertMessage = styled('div', {
|
|
name: 'MuiAlert',
|
|
slot: 'Message',
|
|
overridesResolver: (props, styles) => styles.message
|
|
})({
|
|
padding: '8px 0',
|
|
minWidth: 0,
|
|
overflow: 'auto'
|
|
});
|
|
const AlertAction = styled('div', {
|
|
name: 'MuiAlert',
|
|
slot: 'Action',
|
|
overridesResolver: (props, styles) => styles.action
|
|
})({
|
|
display: 'flex',
|
|
alignItems: 'flex-start',
|
|
padding: '4px 0 0 16px',
|
|
marginLeft: 'auto',
|
|
marginRight: -8
|
|
});
|
|
const defaultIconMapping = {
|
|
success: /*#__PURE__*/_jsx(SuccessOutlinedIcon, {
|
|
fontSize: "inherit"
|
|
}),
|
|
warning: /*#__PURE__*/_jsx(ReportProblemOutlinedIcon, {
|
|
fontSize: "inherit"
|
|
}),
|
|
error: /*#__PURE__*/_jsx(ErrorOutlineIcon, {
|
|
fontSize: "inherit"
|
|
}),
|
|
info: /*#__PURE__*/_jsx(InfoOutlinedIcon, {
|
|
fontSize: "inherit"
|
|
})
|
|
};
|
|
const Alert = /*#__PURE__*/React.forwardRef(function Alert(inProps, ref) {
|
|
const props = useThemeProps({
|
|
props: inProps,
|
|
name: 'MuiAlert'
|
|
});
|
|
const {
|
|
action,
|
|
children,
|
|
className,
|
|
closeText = 'Close',
|
|
color,
|
|
components = {},
|
|
componentsProps = {},
|
|
icon,
|
|
iconMapping = defaultIconMapping,
|
|
onClose,
|
|
role = 'alert',
|
|
severity = 'success',
|
|
slotProps = {},
|
|
slots = {},
|
|
variant = 'standard'
|
|
} = props,
|
|
other = _objectWithoutPropertiesLoose(props, _excluded);
|
|
const ownerState = _extends({}, props, {
|
|
color,
|
|
severity,
|
|
variant
|
|
});
|
|
const classes = useUtilityClasses(ownerState);
|
|
const AlertCloseButton = slots.closeButton ?? components.CloseButton ?? IconButton;
|
|
const AlertCloseIcon = slots.closeIcon ?? components.CloseIcon ?? CloseIcon;
|
|
const closeButtonProps = slotProps.closeButton ?? componentsProps.closeButton;
|
|
const closeIconProps = slotProps.closeIcon ?? componentsProps.closeIcon;
|
|
return /*#__PURE__*/_jsxs(AlertRoot, _extends({
|
|
role: role,
|
|
elevation: 0,
|
|
ownerState: ownerState,
|
|
className: clsx(classes.root, className),
|
|
ref: ref
|
|
}, other, {
|
|
children: [icon !== false ? /*#__PURE__*/_jsx(AlertIcon, {
|
|
ownerState: ownerState,
|
|
className: classes.icon,
|
|
children: icon || iconMapping[severity] || defaultIconMapping[severity]
|
|
}) : null, /*#__PURE__*/_jsx(AlertMessage, {
|
|
ownerState: ownerState,
|
|
className: classes.message,
|
|
children: children
|
|
}), action != null ? /*#__PURE__*/_jsx(AlertAction, {
|
|
ownerState: ownerState,
|
|
className: classes.action,
|
|
children: action
|
|
}) : null, action == null && onClose ? /*#__PURE__*/_jsx(AlertAction, {
|
|
ownerState: ownerState,
|
|
className: classes.action,
|
|
children: /*#__PURE__*/_jsx(AlertCloseButton, _extends({
|
|
size: "small",
|
|
"aria-label": closeText,
|
|
title: closeText,
|
|
color: "inherit",
|
|
onClick: onClose
|
|
}, closeButtonProps, {
|
|
children: /*#__PURE__*/_jsx(AlertCloseIcon, _extends({
|
|
fontSize: "small"
|
|
}, closeIconProps))
|
|
}))
|
|
}) : null]
|
|
}));
|
|
});
|
|
process.env.NODE_ENV !== "production" ? Alert.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 action to display. It renders after the message, at the end of the alert.
|
|
*/
|
|
action: PropTypes.node,
|
|
/**
|
|
* The content of the component.
|
|
*/
|
|
children: PropTypes.node,
|
|
/**
|
|
* Override or extend the styles applied to the component.
|
|
*/
|
|
classes: PropTypes.object,
|
|
/**
|
|
* @ignore
|
|
*/
|
|
className: PropTypes.string,
|
|
/**
|
|
* Override the default label for the *close popup* icon button.
|
|
*
|
|
* For localization purposes, you can use the provided [translations](/material-ui/guides/localization/).
|
|
* @default 'Close'
|
|
*/
|
|
closeText: PropTypes.string,
|
|
/**
|
|
* The color of the component. Unless provided, the value is taken from the `severity` prop.
|
|
* 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).
|
|
*/
|
|
color: PropTypes /* @typescript-to-proptypes-ignore */.oneOfType([PropTypes.oneOf(['error', 'info', 'success', 'warning']), PropTypes.string]),
|
|
/**
|
|
* 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.shape({
|
|
CloseButton: PropTypes.elementType,
|
|
CloseIcon: PropTypes.elementType
|
|
}),
|
|
/**
|
|
* The extra props for the slot components.
|
|
* You can override the existing props or add new ones.
|
|
*
|
|
* This prop is an alias for the `slotProps` prop.
|
|
* It's recommended to use the `slotProps` prop instead, as `componentsProps` will be deprecated in the future.
|
|
*
|
|
* @default {}
|
|
*/
|
|
componentsProps: PropTypes.shape({
|
|
closeButton: PropTypes.object,
|
|
closeIcon: PropTypes.object
|
|
}),
|
|
/**
|
|
* Override the icon displayed before the children.
|
|
* Unless provided, the icon is mapped to the value of the `severity` prop.
|
|
* Set to `false` to remove the `icon`.
|
|
*/
|
|
icon: PropTypes.node,
|
|
/**
|
|
* The component maps the `severity` prop to a range of different icons,
|
|
* for instance success to `<SuccessOutlined>`.
|
|
* If you wish to change this mapping, you can provide your own.
|
|
* Alternatively, you can use the `icon` prop to override the icon displayed.
|
|
*/
|
|
iconMapping: PropTypes.shape({
|
|
error: PropTypes.node,
|
|
info: PropTypes.node,
|
|
success: PropTypes.node,
|
|
warning: PropTypes.node
|
|
}),
|
|
/**
|
|
* Callback fired when the component requests to be closed.
|
|
* When provided and no `action` prop is set, a close icon button is displayed that triggers the callback when clicked.
|
|
* @param {React.SyntheticEvent} event The event source of the callback.
|
|
*/
|
|
onClose: PropTypes.func,
|
|
/**
|
|
* The ARIA role attribute of the element.
|
|
* @default 'alert'
|
|
*/
|
|
role: PropTypes.string,
|
|
/**
|
|
* The severity of the alert. This defines the color and icon used.
|
|
* @default 'success'
|
|
*/
|
|
severity: PropTypes /* @typescript-to-proptypes-ignore */.oneOfType([PropTypes.oneOf(['error', 'info', 'success', 'warning']), PropTypes.string]),
|
|
/**
|
|
* The extra props for the slot components.
|
|
* You can override the existing props or add new ones.
|
|
*
|
|
* This prop is an alias for the `componentsProps` prop, which will be deprecated in the future.
|
|
*
|
|
* @default {}
|
|
*/
|
|
slotProps: PropTypes.shape({
|
|
closeButton: PropTypes.object,
|
|
closeIcon: PropTypes.object
|
|
}),
|
|
/**
|
|
* 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.shape({
|
|
closeButton: PropTypes.elementType,
|
|
closeIcon: 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]),
|
|
/**
|
|
* The variant to use.
|
|
* @default 'standard'
|
|
*/
|
|
variant: PropTypes /* @typescript-to-proptypes-ignore */.oneOfType([PropTypes.oneOf(['filled', 'outlined', 'standard']), PropTypes.string])
|
|
} : void 0;
|
|
export default Alert; |