-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathApp.js
53 lines (46 loc) · 1.42 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
import { useEffect } from "react";
import { useDispatch, useSelector } from "react-redux";
import Cart from "./components/Cart/Cart";
import Layout from "./components/Layout/Layout";
import Products from "./components/Shop/Products";
import Notification from "./components/UI/Notification";
import { fetchCartData, sendCartData } from "./store/cart-actionThunks";
// TO BLOCK EXECUTION OF useEffect ON THE FIRST LOAD OF THE PAGE
let firstLoad = true;
function App() {
const showCart = useSelector((state) => state.ui.cartIsVisible);
const cart = useSelector((state) => state.cart);
const notification = useSelector((state) => state.ui.notification);
const dispatch = useDispatch();
// DISPATCHING THE ASYNCHRONOUS ACTION CREATOR THUNK fetchCartData()
useEffect(() => {
dispatch(fetchCartData());
}, [dispatch]);
// DISPATCHING THE ASYNCHRONOUS ACTION CREATOR THUNK sendCartData()
useEffect(() => {
if (firstLoad) {
firstLoad = false;
return;
}
if (cart.changed) {
dispatch(sendCartData(cart));
}
}, [cart, dispatch]);
return (
<>
{notification && (
<Notification
status={notification.status}
message={notification.message}
title={notification.title}
/>
)}
<Layout>
{/* DISPLAYING THE CART USING REDUX TOOLKIT */}
{showCart && <Cart />}
<Products />
</Layout>
</>
);
}
export default App;