File size: 4,534 Bytes
f5071ca |
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 |
import { React, useState, useEffect } from "react";
import { AddToList, RemoveList } from "../action/List";
import { useSelector, useDispatch } from "react-redux";
import { Link } from "react-router-dom";
import Added from "../imgs/red-heart.png";
import Add from "../imgs/heart.png";
import Footer from "./Footer";
import rating from "../imgs/rating.png";
import Navbar from "./Navbar";
import empty from "../imgs/empty.png";
import { NavLink } from "react-router-dom";
import LowerNav from "./LowerNav";
import "./lists.css";
function Lists() {
const [AddedIds, setAddedIds] = useState([]);
const ListItems = useSelector((state) => state.ItemsAdded.ListItems);
const dispatch = useDispatch();
document.title = "Wishlist section"
useEffect(() => {
// Update the added ids whenever the list items change
const ids = ListItems.map((item) => item.id);
setAddedIds(ids);
}, [ListItems]);
const isAdded = (itemId) => {
// Check if the item id is in the added ids
return AddedIds.includes(itemId);
};
useEffect(() => {
window.scrollTo(0, 0);
}, []);
return (
<>
<Navbar />
<div style={{ height: "100%" }} className="content">
<div className={ListItems ? `lists animate` : `lists`}>
<p className="wishlist-head">Wishlist</p>
<div
style={
ListItems.length === 0 ? { display: "flex" } : { display: "none" }
}
className="empty-list"
>
<img src={empty} className="empty-img" />
<div className="empty-text">
<p className="empty-head">It's empty here!</p>
<p className="empty-desc">
"Don't let your wishlist collect dust. Add some items that bring
joy to your life and watch as they become a reality with just a
few clicks."
</p>
<Link to="/home">
<button className="shopping">Go Shopping</button>
</Link>
</div>
</div>
<div className="lists-items">
{ListItems &&
ListItems.length > 0 &&
ListItems.map((items) => {
return (
<div className="card" key={items.id}>
<div className="card-img-data">
<img src={items.image} className="card-img" />
<img
onClick={() => {
if (!isAdded(items.id)) {
dispatch(AddToList(items));
} else {
dispatch(RemoveList(items.id));
}
}}
src={isAdded(items.id) ? Added : Add}
className="add-list2"
/>
<NavLink to={`/product/${items.id}`} key={items.id}>
<button className="view">View product</button>
</NavLink>
</div>
<div className="card-data">
<p className="card-title">
{items.title.length >= 32
? items.title.slice(0, 32) + ".."
: items.title}
</p>
<div className="category-rating">
<p className="card-category">{items.category}</p>
<div className="rating">
<img src={rating} className="rating-img" />
<img src={rating} className="rating-img" />
<img src={rating} className="rating-img" />
<img src={rating} className="rating-img" />
<img src={rating} className="rating-img" />
<p className="rating-text">5</p>
</div>
</div>
<div className="card-price">
<p className="discount">${items.price}</p>
<p className="mrp">${Math.round(items.price * 1.66)}</p>
<p className="price-off">(60% OFF)</p>
</div>
</div>
</div>
);
})}
</div>
</div>
<div className="lowerNav">
<LowerNav />
</div>
<Footer />
</div>
</>
);
}
export default Lists;
|