material-ui
Version:
Material Design UI components built with React
74 lines (58 loc) • 1.85 kB
JSX
const React = require('react');
const ContextPure = require('../mixins/context-pure');
const StylePropable = require('../mixins/style-propable');
const Styles = require('../utils/styles');
const DefaultRawTheme = require('../styles/raw-themes/light-raw-theme');
const ThemeManager = require('../styles/theme-manager');
const FlatButtonLabel = React.createClass({
mixins: [ContextPure, StylePropable],
contextTypes: {
muiTheme: React.PropTypes.object,
},
propTypes: {
label: React.PropTypes.node,
style: React.PropTypes.object,
},
//for passing default theme context to children
childContextTypes: {
muiTheme: React.PropTypes.object,
},
getChildContext () {
return {
muiTheme: this.state.muiTheme,
};
},
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 (nextProps, nextContext) {
let newMuiTheme = nextContext.muiTheme ? nextContext.muiTheme : this.state.muiTheme;
this.setState({muiTheme: newMuiTheme});
},
statics: {
getRelevantContextKeys(muiTheme) {
return {
spacingDesktopGutterLess: muiTheme.rawTheme.spacing.desktopGutterLess,
};
},
},
render: function() {
const {
label,
style,
} = this.props;
const contextKeys = this.constructor.getRelevantContextKeys(this.state.muiTheme);
const mergedRootStyles = this.mergeStyles({
position: 'relative',
padding: '0 ' + contextKeys.spacingDesktopGutterLess + 'px',
}, style);
return (
<span style={this.prepareStyles(mergedRootStyles)}>{label}</span>
);
},
});
module.exports = FlatButtonLabel;