89 lines
1.8 KiB
Plaintext
89 lines
1.8 KiB
Plaintext
import React from 'react';
|
|
import PropTypes from 'prop-types';
|
|
import classNames from 'classnames';
|
|
import warning from 'warning';
|
|
import withStyles from '../styles/withStyles';
|
|
|
|
export const styles = theme => {
|
|
const shadows = {};
|
|
theme.shadows.forEach((shadow, index) => {
|
|
shadows[`shadow${index}`] = {
|
|
boxShadow: shadow,
|
|
};
|
|
});
|
|
|
|
return {
|
|
root: {
|
|
backgroundColor: theme.palette.background.paper,
|
|
},
|
|
rounded: {
|
|
borderRadius: 2,
|
|
},
|
|
...shadows,
|
|
};
|
|
};
|
|
|
|
function Paper(props) {
|
|
const {
|
|
classes,
|
|
className: classNameProp,
|
|
component: Component,
|
|
square,
|
|
elevation,
|
|
...other
|
|
} = props;
|
|
|
|
warning(
|
|
elevation >= 0 && elevation < 25,
|
|
`Material-UI: this elevation \`${elevation}\` is not implemented.`,
|
|
);
|
|
|
|
const className = classNames(
|
|
classes.root,
|
|
classes[`shadow${elevation}`],
|
|
{
|
|
[classes.rounded]: !square,
|
|
},
|
|
classNameProp,
|
|
);
|
|
|
|
return <Component className={className} {...other} />;
|
|
}
|
|
|
|
Paper.propTypes = {
|
|
/**
|
|
* The content of the component.
|
|
*/
|
|
children: PropTypes.node,
|
|
/**
|
|
* Useful to extend the style applied to components.
|
|
*/
|
|
classes: PropTypes.object.isRequired,
|
|
/**
|
|
* @ignore
|
|
*/
|
|
className: PropTypes.string,
|
|
/**
|
|
* The component used for the root node.
|
|
* Either a string to use a DOM element or a component.
|
|
*/
|
|
component: PropTypes.oneOfType([PropTypes.string, PropTypes.func]),
|
|
/**
|
|
* Shadow depth, corresponds to `dp` in the spec.
|
|
* It's accepting values between 0 and 24 inclusive.
|
|
*/
|
|
elevation: PropTypes.number,
|
|
/**
|
|
* If `true`, rounded corners are disabled.
|
|
*/
|
|
square: PropTypes.bool,
|
|
};
|
|
|
|
Paper.defaultProps = {
|
|
component: 'div',
|
|
elevation: 2,
|
|
square: false,
|
|
};
|
|
|
|
export default withStyles(styles, { name: 'MuiPaper' })(Paper);
|