Advertisement
Guest User

Untitled

a guest
Oct 22nd, 2018
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.42 KB | None | 0 0
  1. componentWillReceiveProps(nextProps) {
  2. if (this.state.id !== nextProps.match.params.id && nextProps.homepage.categories !== null) {
  3. this.setState(
  4. {
  5. category: nextProps.homepage.categories.find(
  6. cat => cat.id == nextProps.match.params.id
  7. ),
  8. courses: [],
  9. count: 0
  10. },
  11. this.search(0, nextProps.match.params.id)
  12. );
  13. }
  14. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement