-
Notifications
You must be signed in to change notification settings - Fork 0
/
App.js
99 lines (91 loc) · 3.16 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
import { useEffect } from "react";
import { useDispatch } from "react-redux";
import { 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 { cartActions } from "./store/cart-slice";
import { uiActions } from "./store/ui-slice";
let isInitial = true;
function App() {
const isCartVisible = useSelector((state) => state.ui.cartIsVisible);
const dispatch = useDispatch();
const cart = useSelector((state) => state.cart);
const notification = useSelector((state) => state.ui.notification);
// fetch data from server
useEffect(() => {
fetch("https://test-e9746-default-rtdb.firebaseio.com/cart.json")
.then((res) => {
if (!res.ok) throw new Error("Fetching cart data failed.");
return res.json();
})
.then((data) => {
dispatch(cartActions.replaceCart(data));
})
.catch((err) =>
dispatch(
uiActions.showNotification({
status: "error",
title: "Error!",
message: err.message,
})
)
);
}, [dispatch]);
// update data to server
useEffect(() => {
if (!isInitial) {
dispatch(
uiActions.showNotification({
status: "pending",
title: "Sending...",
message: "Sending Cart Data...",
})
);
fetch("https://test-e9746-default-rtdb.firebaseio.com/cart.json", {
method: "PUT",
body: JSON.stringify(cart),
})
.then((res) => {
if (!res.ok) throw new Error("Sending cart data failed.");
return res.json();
})
.then((data) =>
dispatch(
uiActions.showNotification({
status: "success",
title: "Success!",
message: "Sent cart data Successfully!",
})
)
)
.catch((err) =>
dispatch(
uiActions.showNotification({
status: "error",
title: "Error!",
message: err.message,
})
)
);
}
if (!(cart.items.length === 0 && isInitial)) isInitial = false;
}, [cart, dispatch]);
return (
<>
{notification && (
<Notification
status={notification.status}
title={notification.title}
message={notification.message}
/>
)}
<Layout>
{isCartVisible && <Cart />}
<Products />
</Layout>
</>
);
}
export default App;