material-ui
Version:
Material Design UI components built with React
100 lines (80 loc) • 3.54 kB
JavaScript
;
var _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; };
function _objectWithoutProperties(obj, keys) { var target = {}; for (var i in obj) { if (keys.indexOf(i) >= 0) continue; if (!Object.prototype.hasOwnProperty.call(obj, i)) continue; target[i] = obj[i]; } return target; }
var React = require('react');
var PureRenderMixin = require('react-addons-pure-render-mixin');
var StylePropable = require('./mixins/style-propable');
var PropTypes = require('./utils/prop-types');
var Transitions = require('./styles/transitions');
var DefaultRawTheme = require('./styles/raw-themes/light-raw-theme');
var ThemeManager = require('./styles/theme-manager');
var Paper = React.createClass({
displayName: 'Paper',
mixins: [PureRenderMixin, StylePropable],
contextTypes: {
muiTheme: React.PropTypes.object
},
//for passing default theme context to children
childContextTypes: {
muiTheme: React.PropTypes.object
},
getChildContext: function getChildContext() {
return {
muiTheme: this.state.muiTheme
};
},
getInitialState: function getInitialState() {
return {
muiTheme: this.context.muiTheme ? this.context.muiTheme : ThemeManager.getMuiTheme(DefaultRawTheme)
};
},
//to update theme inside state whenever a new theme is passed down
//from the parent / owner using context
componentWillReceiveProps: function componentWillReceiveProps(nextProps, nextContext) {
var newMuiTheme = nextContext.muiTheme ? nextContext.muiTheme : this.state.muiTheme;
this.setState({ muiTheme: newMuiTheme });
},
propTypes: {
circle: React.PropTypes.bool,
rounded: React.PropTypes.bool,
transitionEnabled: React.PropTypes.bool,
zDepth: PropTypes.zDepth
},
getDefaultProps: function getDefaultProps() {
return {
circle: false,
rounded: true,
transitionEnabled: true,
zDepth: 1
};
},
render: function render() {
var _props = this.props;
var children = _props.children;
var circle = _props.circle;
var rounded = _props.rounded;
var style = _props.style;
var transitionEnabled = _props.transitionEnabled;
var zDepth = _props.zDepth;
var other = _objectWithoutProperties(_props, ['children', 'circle', 'rounded', 'style', 'transitionEnabled', 'zDepth']);
var styles = {
backgroundColor: this.state.muiTheme.paper.backgroundColor,
transition: transitionEnabled && Transitions.easeOut(),
boxSizing: 'border-box',
fontFamily: this.state.muiTheme.rawTheme.fontFamily,
WebkitTapHighlightColor: 'rgba(0,0,0,0)',
boxShadow: this._getZDepthShadows(zDepth),
borderRadius: circle ? '50%' : rounded ? '2px' : '0px'
};
return React.createElement(
'div',
_extends({}, other, { style: this.prepareStyles(styles, style) }),
children
);
},
_getZDepthShadows: function _getZDepthShadows(zDepth) {
var shadows = [null, '0 1px 6px rgba(0, 0, 0, 0.12), 0 1px 4px rgba(0, 0, 0, 0.24)', '0 3px 10px rgba(0, 0, 0, 0.16), 0 3px 10px rgba(0, 0, 0, 0.23)', '0 10px 30px rgba(0, 0, 0, 0.19), 0 6px 10px rgba(0, 0, 0, 0.23)', '0 14px 45px rgba(0, 0, 0, 0.25), 0 10px 18px rgba(0, 0, 0, 0.22)', '0 19px 60px rgba(0, 0, 0, 0.30), 0 15px 20px rgba(0, 0, 0, 0.22)'];
return shadows[zDepth];
}
});
module.exports = Paper;