Last active
December 4, 2017 19:28
-
-
Save wschenk/509420f7ca8ed18eb47dff8dbf0ff1db to your computer and use it in GitHub Desktop.
material-ui example feed
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import React, {Component} from 'react' | |
import { withStyles } from 'material-ui/styles' | |
import Paper from 'material-ui/Paper' | |
import Button from 'material-ui/Button' | |
const styles = theme => ({ | |
feed: { | |
width: '100%', | |
display: 'flex', | |
flexDirection: 'column', | |
alignItems: 'center' | |
}, | |
feedItem: { | |
marginTop: '15px', | |
width: '100%', | |
padding: '5px', | |
maxWidth: '800px' | |
}, | |
buttons: { | |
display: 'flex', | |
alignItems: 'center', | |
justifyContent: 'space-around' | |
} | |
}) | |
class FeedItem extends Component { | |
state = {elevation: 2} | |
render() { | |
const {classes} = this.props; | |
return ( | |
<Paper | |
className={classes.feedItem} | |
elevation={this.state.elevation} | |
onMouseOver={() => this.setState( {elevation: 6} )} | |
onMouseOut={() => this.setState( {elevation:2} ) } | |
> | |
<h1>Im a feed item</h1> | |
<p>Lots of fun here</p> | |
<div className={classes.buttons}> | |
<Button raised color="primary" onClick={this.props.onClick}>Primary</Button> | |
<Button raised color="accent" onClick={this.props.onClick}>Secondary Button</Button> | |
</div> | |
</Paper> | |
) | |
} | |
} | |
const StyledFeedItem = withStyles(styles)(FeedItem) | |
class Feed extends Component { | |
render() { | |
const {classes} = this.props | |
return ( | |
<div className={classes.feed}> | |
<StyledFeedItem onClick={() => this.props.setTheme(0)}/> | |
<StyledFeedItem onClick={() => this.props.setTheme(1)}/> | |
<StyledFeedItem onClick={() => this.props.setTheme(2)}/> | |
</div> | |
) | |
} | |
} | |
export default withStyles(styles)(Feed) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment