Last active
November 28, 2020 22:15
-
-
Save aerrity/53a7f710fcf4e78228de477b48a1259f to your computer and use it in GitHub Desktop.
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 from 'react'; | |
import ReactDOM from 'react-dom'; | |
class UserProfiles extends React.Component { | |
constructor(){ | |
super(); | |
this.state = { | |
users: [] | |
}; | |
} | |
componentWillMount() { | |
fetch('https://randomuser.me/api/?results=50') | |
.then(response => { | |
if(response.ok) return response.json(); | |
throw new Error('Request failed.'); | |
}) | |
.then(data => { | |
this.setState({users: data.results}); | |
}) | |
.catch(error => { | |
console.log(error); | |
}); | |
} | |
render() { | |
const list = this.state.users.map( (u, i) => { | |
return <User key={u.login.md5} name={`${u.name.first} ${u.name.last}`} email={u.email} />; | |
}); | |
return ( | |
<div> | |
<h1>My users are:</h1> | |
{list} | |
</div> | |
); | |
} | |
} | |
class User extends React.Component { | |
render() { | |
return ( | |
<div style={{'borderStyle': 'dotted'}}> | |
<h3>{this.props.name}</h3> | |
<p>{this.props.email}</p> | |
</div> | |
); | |
} | |
} | |
ReactDOM.render( | |
<UserProfiles />, | |
document.getElementById('root') | |
); |
Thanks.
Most of these gists are snapshots from live coding examples I wrote while teaching. This would have been refactored at a later point to explain the benefits of using a functional component when state, etc. isn't needed.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
bro use functional component
the code was great