-
Notifications
You must be signed in to change notification settings - Fork 0
/
App.js
124 lines (112 loc) · 3.6 KB
/
App.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
import {Component} from 'react'
import {BrowserRouter, Route, Switch, Redirect} from 'react-router-dom'
import Login from './components/Login'
import Home from './components/Home'
import Cart from './components/Cart'
import CartItem from './components/CartItem'
import Payment from './components/Payment'
import NotFound from './components/NotFound'
import RestaurantDetails from './components/RestaurantDetails'
import ProtectedRoute from './components/ProtectedRoute'
import CartContext from './context/CartContext'
import './App.css'
const getCartListFromLocalStorage = () => {
const stringifiedCartList = localStorage.getItem('cartData')
const parsedCartList = JSON.parse(stringifiedCartList)
if (parsedCartList === null) {
return []
}
return parsedCartList
}
class App extends Component {
state = {
cartList: getCartListFromLocalStorage(),
}
addCartItem = foodItem => {
const {cartList} = this.state
const foodObject = cartList.find(
eachCartItem => eachCartItem.id === foodItem.id,
)
if (foodObject) {
this.setState(prevState => ({
cartList: prevState.cartList.map(eachCartItem => {
if (foodObject.id === eachCartItem.id) {
const updatedQuantity = foodItem.quantity
return {...eachCartItem, quantity: updatedQuantity}
}
return eachCartItem
}),
}))
} else {
const updatedCartList = [...cartList, foodItem]
this.setState({cartList: updatedCartList})
}
}
deleteCartItem = id => {
const {cartList} = this.state
const updatedCartList = cartList.filter(
eachCartItem => eachCartItem.id !== id,
)
this.setState({cartList: updatedCartList})
}
addQuantity = id => {
this.setState(prevState => ({
cartList: prevState.cartList.map(eachCartItem => {
if (id === eachCartItem.id) {
const updatedQuantity = eachCartItem.quantity + 1
return {...eachCartItem, quantity: updatedQuantity}
}
return eachCartItem
}),
}))
}
decreaseQuantity = id => {
const {cartList} = this.state
const productObject = cartList.find(eachCartItem => eachCartItem.id === id)
if (productObject.quantity > 1) {
this.setState(prevState => ({
cartList: prevState.cartList.map(eachCartItem => {
if (id === eachCartItem.id) {
const updatedQuantity = eachCartItem.quantity - 1
return {...eachCartItem, quantity: updatedQuantity}
}
return eachCartItem
}),
}))
} else {
this.deleteCartItem(id)
}
}
render() {
const {cartList} = this.state
localStorage.setItem('cartData', JSON.stringify(cartList))
return (
<BrowserRouter>
<CartContext.Provider
value={{
cartList,
addCartItem: this.addCartItem,
deleteCartItem: this.deleteCartItem,
addQuantity: this.addQuantity,
decreaseQuantity: this.decreaseQuantity,
}}
>
<Switch>
<Route exact path="/login" component={Login} />
<ProtectedRoute exact path="/" component={Home} />
<ProtectedRoute
exact
path="/restaurant/:id"
component={RestaurantDetails}
/>
<ProtectedRoute exact path="/cart" component={Cart} />
<ProtectedRoute exact path="/payment" component={Payment} />
<Route path="/not-found" component={NotFound} />
<Redirect to="not-found" />
</Switch>
</CartContext.Provider>
</BrowserRouter>
)
}
}
export default App