'sort an array with react hooks
I'm doing a simple sort of an array with react hooks, but its not updating state. Can anyone point out what I'm going here?
import React, { useState } from "react";
import ReactDOM from "react-dom";
import "./styles.css";
const dogs = [{ name: "fido", age: 22 }, { name: "will", age: 50 }];
function App() {
const [dogList, setDogList] = useState(dogs);
const sortByAge = () => {
const sorted = dogList.sort((a, b) => {
return b.age - a.age;
});
setDogList(sorted);
alert(sorted[0].name);
};
return (
<div>
{dogs.map((dog, i) => {
return <p key={i}>{dog.name}</p>;
})}
<div onClick={sortByAge}>sort by age</div>
</div>
);
}
const rootElement = document.getElementById("root");
ReactDOM.render(<App />, rootElement);
Solution 1:[1]
First: because Array.prototype.sort()
is in place, clone before you sort:
const sorted = [...dogList].sort((a, b) => {
return b.age - a.age;
});
Without this the change detection will not detect the array changed.
You call map on dogs
. Fix:
return (
<div>
{dogList.map((dog, i) => {
return <p key={i}>{dog.name}</p>;
})}
<div onClick={sortByAge}>sort by age</div>
</div>
);
Solution 2:[2]
const dogs = [{ name: "fido", age: 22 }, { name: "will", age: 50 }];
class Application extends React.Component {
state = {dogList: dogs};
sortByAge = () => {
const sorted = this.state.dogList.sort((a, b) => {
return b.age - a.age;
});
this.setState({dogList: sorted});
};
render() {
return (
<div>
{this.state.dogList.map((dog, i) => {
return <p key={i}>{dog.name}</p>;
})}
<button onClick={this.sortByAge}>sort by age</button>
</div>
);
}
}
React.render(<Application />, document.getElementById('root'));
<script src="https://cdnjs.cloudflare.com/ajax/libs/react/0.13.0/react.min.js"></script>
<div id="root"></div>
This is the code using hooks
import React, { useState } from "react";
import ReactDOM from "react-dom";
import "./styles.css";
const dogs = [{ name: "fido", age: 22 }, { name: "will", age: 50 }];
function Application() {
const [dogList, setDogList] = useState(dogs);
const sortByAge = () => {
const sorted = dogList.sort((a, b) => {
return b.age - a.age;
});
setDogList(sorted);
};
return (
<div>
{dogList.map((dog, i) => {
return <p key={i}>{dog.name}</p>;
})}
<button onClick={sortByAge}>sort by age</button>
</div>
);
}
ReactDOM.render(<Application />, document.getElementById('root'));
Solution 3:[3]
You Can able sort by name like below example...
const dogs = [{ name: "bido", age: 22 }, { name: "aill", age: 50 }, { name: "test", age: 90 }];
function App() {
const [dogList, setDogList] = React.useState(dogs);
function compare(a, b)
{
if (a.name > b.name) return 1;
if (a.name < b.name) return -1;
return 0;
}
const sortByAge = () =>
{
const sorted = [...dogList].sort(compare);//calling compare function
setDogList(sorted);//storing sorted values
};
return (
<div>
{dogList.map((dog, i) => {
return <p key={i}>{dog.name}{dog.age}</p>;
})}
<div onClick={sortByAge}>sort by age</div>
</div>
);
}
const rootElement = document.getElementById("root");
ReactDOM.render(<App />, rootElement);
Sources
This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.
Source: Stack Overflow
Solution | Source |
---|---|
Solution 1 | acdcjunior |
Solution 2 | |
Solution 3 |