@material-ui/core
Version:
React components that implement Google's Material Design.
94 lines (88 loc) • 2.73 kB
JavaScript
import _extends from "@babel/runtime/helpers/esm/extends";
import _objectWithoutProperties from "@babel/runtime/helpers/esm/objectWithoutProperties";
import _defineProperty from "@babel/runtime/helpers/esm/defineProperty";
import React from 'react';
import PropTypes from 'prop-types';
import clsx from 'clsx';
import withStyles from '../styles/withStyles';
import Paper from '../Paper';
import Typography from '../Typography';
import { emphasize } from '../styles/colorManipulator';
export var styles = function styles(theme) {
var emphasis = theme.palette.type === 'light' ? 0.8 : 0.98;
var backgroundColor = emphasize(theme.palette.background.default, emphasis);
return {
/* Styles applied to the root element. */
root: _defineProperty({
color: theme.palette.getContrastText(backgroundColor),
backgroundColor: backgroundColor,
display: 'flex',
alignItems: 'center',
flexWrap: 'wrap',
padding: '6px 16px',
borderRadius: theme.shape.borderRadius,
flexGrow: 1
}, theme.breakpoints.up('sm'), {
flexGrow: 'initial',
minWidth: 288
}),
/* Styles applied to the message wrapper element. */
message: {
padding: '8px 0'
},
/* Styles applied to the action wrapper element if `action` is provided. */
action: {
display: 'flex',
alignItems: 'center',
marginLeft: 'auto',
paddingLeft: 16,
marginRight: -8
}
};
};
var SnackbarContent = React.forwardRef(function SnackbarContent(props, ref) {
var action = props.action,
classes = props.classes,
className = props.className,
message = props.message,
other = _objectWithoutProperties(props, ["action", "classes", "className", "message"]);
return React.createElement(Paper, _extends({
component: Typography,
variant: "body2",
variantMapping: {
body1: 'div',
body2: 'div'
},
role: "alertdialog",
square: true,
elevation: 6,
className: clsx(classes.root, className),
ref: ref
}, other), React.createElement("div", {
className: classes.message
}, message), action ? React.createElement("div", {
className: classes.action
}, action) : null);
});
process.env.NODE_ENV !== "production" ? SnackbarContent.propTypes = {
/**
* The action to display.
*/
action: PropTypes.node,
/**
* Override or extend the styles applied to the component.
* See [CSS API](#css) below for more details.
*/
classes: PropTypes.object.isRequired,
/**
* @ignore
*/
className: PropTypes.string,
/**
* The message to display.
*/
message: PropTypes.node
} : void 0;
export default withStyles(styles, {
name: 'MuiSnackbarContent'
})(SnackbarContent);