Guest User

Untitled

a guest
Nov 13th, 2018
119
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.67 KB | None | 0 0
  1. // FAVORITES
  2. if (favStorage.length > 0) {
  3. this.setState({favorites: favStorage})
  4.  
  5. if (favStorage.filter(rep => rep.label === this.state.recipe.label).length > 0) {
  6. this.setState({isFavorite: true})
  7. } else {
  8. this.setState({isFavorite: false})
  9. }
  10.  
  11. } else if (favStorage.length === 0) {
  12. this.setState({isFavorite: false})
  13. }
  14.  
  15. //SHOPPING CART
  16. if (cartStorage.length > 0) {
  17. this.setState({cart: cartStorage})
  18.  
  19. if (cartStorage.filter(rep => rep.label === this.state.recipe.label).length > 0) {
  20. this.setState({isInCart: true})
  21. } else {
  22. this.setState({isInCart: false})
  23. }
  24.  
  25. } else if (cartStorage.length === 0) {
  26. this.setState({isInCart: false})
  27. }
Add Comment
Please, Sign In to add comment