Skip to content

Instantly share code, notes, and snippets.

@koslib
Created August 13, 2017 13:15
Show Gist options
  • Save koslib/3177ed83d1fbf4684a072f6c2c42876d to your computer and use it in GitHub Desktop.
Save koslib/3177ed83d1fbf4684a072f6c2c42876d to your computer and use it in GitHub Desktop.
React.js Github Cards demo
const Card = (props) => {
return (
<div>
<img width="75"
src={props.avatar_url} />
<div style={{display: 'inline-block', marginLeft: '10'}}>
<div style={{fontSize: '1.25em', fontWeight: 'bold'}}>{props.name}</div>
<div>{props.company}</div>
</div>
</div>
);
};
const CardList = (props) => {
return (
<div>
{props.cards.map(card => <Card key={card.id} {...card} />)}
</div>
);
};
class Form extends React.Component {
state = {userName: ''}
handleClick = (event) => {
event.preventDefault();
axios.get(`https://api.github.com/users/${this.state.userName}`)
.then(resp => {
this.props.onSubmit(resp.data);
this.setState({userName: ''});
});
}
render() {
return (
<div>
<form onSubmit={this.handleClick}>
<input
value={this.state.userName}
onChange={(event) => this.setState({userName: event.target.value})}
type="text" name="username" placeholder="Github Username" required/>
<button type="submit">Add Card</button>
</form>
</div>
);
}
}
class App extends React.Component {
state = {
cards: []
}
addNewCard = (cardInfo) => {
this.setState(prevState => ({
cards: prevState.cards.concat(cardInfo)
}));
}
render() {
return (
<div>
<Form onSubmit={this.addNewCard}/>
<CardList cards={this.state.cards} />
</div>
);
}
}
ReactDOM.render(<App />, mountNode)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment