Created
February 1, 2019 16:47
React - Searching & sorting a list of random users
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 axios from "axios"; | |
class App extends Component { | |
constructor(props) { | |
super(props); | |
this.state = { users: [], searchTerm: '', alphabetical: 'az' }; | |
this.handleChange = this.handleChange.bind(this); | |
} | |
componentDidMount() { | |
axios | |
.get("https://randomuser.me/api/?results=60") | |
.then(response => { | |
console.log(response.data.results); | |
this.setState({ users: response.data.results }); | |
}) | |
.catch(error => { | |
console.log(error); | |
}); | |
} | |
handleChange(event) { | |
const target = event.target; | |
const value = target.type === 'checkbox' ? target.checked : target.value; | |
const name = target.name; | |
this.setState({ | |
[name]: value | |
}); | |
} | |
render() { | |
let sortedUsers; | |
if (this.state.alphabetical === "az") { | |
console.log("sort"); | |
sortedUsers = this.state.users.sort((a, b) => | |
a.name.first > b.name.first ? 1 : -1 | |
); | |
} else { | |
sortedUsers = this.state.users.sort((a, b) => | |
a.name.first < b.name.first ? 1 : -1 | |
); | |
} | |
let filteredUsers = sortedUsers; | |
if (this.state.searchTerm) | |
filteredUsers = this.state.users.filter(u => | |
u.name.first.startsWith(this.state.searchTerm) | |
); | |
const userNames = filteredUsers.map(u => { | |
return <User key={u.email} name={u.name.first} age={u.dob.age} />; | |
}); | |
return ( | |
<div> | |
<form onSubmit={this.handleSubmit}> | |
<label> | |
Search for user: | |
<input | |
type="text" | |
name="searchTerm" | |
value={this.state.searchTerm} | |
onChange={this.handleChange} | |
/> | |
</label> | |
<input type="submit" value="Submit" /> | |
</form> | |
<select | |
name="alphabetical" | |
value={this.state.alphabetical} | |
onChange={this.handleChange} | |
> | |
<option selected value="az"> | |
A to Z | |
</option> | |
<option value="za">Z to A</option> | |
</select> | |
{userNames} | |
</div> | |
); | |
} | |
} | |
class User extends Component { | |
render() { | |
return ( | |
<div> | |
<h2>{this.props.name}</h2> | |
<h3>{this.props.age}</h3> | |
</div> | |
); | |
} | |
} | |
export default App; |
This code hasn't been maintained for several years so may no longer function.
Can you elaborate on your query?
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
tell me the way to get github users