-
-
{item.quantity}
-
+
-
-
-
-
-
+
+
Total Cart Amount: ${calculateTotalAmount()}
+
+ {cart.map(item => (
+
+
+
+
{item.name}
+
{item.cost}
+
+
+ {item.quantity}
+
+
+
Total: ${calculateTotalCost(item)}
+
+
+
+ ))}
+
+
+
+
+
+
+
);
};
-export default CartItem;
-
-
+export default Cart;
\ No newline at end of file
diff --git a/src/CartSlice.jsx b/src/CartSlice.jsx
index 32b8761ed..c8810f150 100644
--- a/src/CartSlice.jsx
+++ b/src/CartSlice.jsx
@@ -3,21 +3,29 @@ import { createSlice } from '@reduxjs/toolkit';
export const CartSlice = createSlice({
name: 'cart',
initialState: {
- items: [], // Initialize items as an empty array
+ items: [],
},
reducers: {
addItem: (state, action) => {
-
+ const existingItem = state.items.find(item => item.name === action.payload.name);
+ if (existingItem) {
+ existingItem.quantity += 1;
+ } else {
+ state.items.push({ ...action.payload, quantity: 1 });
+ }
},
removeItem: (state, action) => {
+ state.items = state.items.filter(item => item.name !== action.payload.name);
},
updateQuantity: (state, action) => {
-
-
+ const item = state.items.find(item => item.name === action.payload.name);
+ if (item) {
+ item.quantity = action.payload.quantity;
+ }
},
},
});
export const { addItem, removeItem, updateQuantity } = CartSlice.actions;
-export default CartSlice.reducer;
+export default CartSlice.reducer;
\ No newline at end of file
diff --git a/src/ProductList.jsx b/src/ProductList.jsx
index 964b15d49..fcbf9a092 100644
--- a/src/ProductList.jsx
+++ b/src/ProductList.jsx
@@ -1,281 +1,102 @@
-import React, { useState,useEffect } from 'react';
-import './ProductList.css'
-import CartItem from './CartItem';
-function ProductList() {
- const [showCart, setShowCart] = useState(false);
- const [showPlants, setShowPlants] = useState(false); // State to control the visibility of the About Us page
+import React, { useState } from 'react';
+import { useSelector, useDispatch } from 'react-redux';
+import { addItem } from './CartSlice';
+import './ProductList.css';
+import { plantsArray } from './data';
- const plantsArray = [
- {
- category: "Air Purifying Plants",
- plants: [
- {
- name: "Snake Plant",
- image: "https://cdn.pixabay.com/photo/2021/01/22/06/04/snake-plant-5939187_1280.jpg",
- description: "Produces oxygen at night, improving air quality.",
- cost: "$15"
- },
- {
- name: "Spider Plant",
- image: "https://cdn.pixabay.com/photo/2018/07/11/06/47/chlorophytum-3530413_1280.jpg",
- description: "Filters formaldehyde and xylene from the air.",
- cost: "$12"
- },
- {
- name: "Peace Lily",
- image: "https://cdn.pixabay.com/photo/2019/06/12/14/14/peace-lilies-4269365_1280.jpg",
- description: "Removes mold spores and purifies the air.",
- cost: "$18"
- },
- {
- name: "Boston Fern",
- image: "https://cdn.pixabay.com/photo/2020/04/30/19/52/boston-fern-5114414_1280.jpg",
- description: "Adds humidity to the air and removes toxins.",
- cost: "$20"
- },
- {
- name: "Rubber Plant",
- image: "https://cdn.pixabay.com/photo/2020/02/15/11/49/flower-4850729_1280.jpg",
- description: "Easy to care for and effective at removing toxins.",
- cost: "$17"
- },
- {
- name: "Aloe Vera",
- image: "https://cdn.pixabay.com/photo/2018/04/02/07/42/leaf-3283175_1280.jpg",
- description: "Purifies the air and has healing properties for skin.",
- cost: "$14"
- }
- ]
- },
- {
- category: "Aromatic Fragrant Plants",
- plants: [
- {
- name: "Lavender",
- image: "https://images.unsplash.com/photo-1611909023032-2d6b3134ecba?q=80&w=1074&auto=format&fit=crop&ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D",
- description: "Calming scent, used in aromatherapy.",
- cost: "$20"
- },
- {
- name: "Jasmine",
- image: "https://images.unsplash.com/photo-1592729645009-b96d1e63d14b?q=80&w=1170&auto=format&fit=crop&ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D",
- description: "Sweet fragrance, promotes relaxation.",
- cost: "$18"
- },
- {
- name: "Rosemary",
- image: "https://cdn.pixabay.com/photo/2019/10/11/07/12/rosemary-4541241_1280.jpg",
- description: "Invigorating scent, often used in cooking.",
- cost: "$15"
- },
- {
- name: "Mint",
- image: "https://cdn.pixabay.com/photo/2016/01/07/18/16/mint-1126282_1280.jpg",
- description: "Refreshing aroma, used in teas and cooking.",
- cost: "$12"
- },
- {
- name: "Lemon Balm",
- image: "https://cdn.pixabay.com/photo/2019/09/16/07/41/balm-4480134_1280.jpg",
- description: "Citrusy scent, relieves stress and promotes sleep.",
- cost: "$14"
- },
- {
- name: "Hyacinth",
- image: "https://cdn.pixabay.com/photo/2019/04/07/20/20/hyacinth-4110726_1280.jpg",
- description: "Hyacinth is a beautiful flowering plant known for its fragrant.",
- cost: "$22"
- }
- ]
- },
- {
- category: "Insect Repellent Plants",
- plants: [
- {
- name: "oregano",
- image: "https://cdn.pixabay.com/photo/2015/05/30/21/20/oregano-790702_1280.jpg",
- description: "The oregano plants contains compounds that can deter certain insects.",
- cost: "$10"
- },
- {
- name: "Marigold",
- image:"https://cdn.pixabay.com/photo/2022/02/22/05/45/marigold-7028063_1280.jpg",
- description: "Natural insect repellent, also adds color to the garden.",
- cost: "$8"
- },
- {
- name: "Geraniums",
- image: "https://cdn.pixabay.com/photo/2012/04/26/21/51/flowerpot-43270_1280.jpg",
- description: "Known for their insect-repelling properties while adding a pleasant scent.",
- cost: "$20"
- },
- {
- name: "Basil",
- image: "https://cdn.pixabay.com/photo/2016/07/24/20/48/tulsi-1539181_1280.jpg",
- description: "Repels flies and mosquitoes, also used in cooking.",
- cost: "$9"
- },
- {
- name: "Lavender",
- image: "https://images.unsplash.com/photo-1611909023032-2d6b3134ecba?q=80&w=1074&auto=format&fit=crop&ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D",
- description: "Calming scent, used in aromatherapy.",
- cost: "$20"
- },
- {
- name: "Catnip",
- image: "https://cdn.pixabay.com/photo/2015/07/02/21/55/cat-829681_1280.jpg",
- description: "Repels mosquitoes and attracts cats.",
- cost: "$13"
- }
- ]
- },
- {
- category: "Medicinal Plants",
- plants: [
- {
- name: "Aloe Vera",
- image: "https://cdn.pixabay.com/photo/2018/04/02/07/42/leaf-3283175_1280.jpg",
- description: "Soothing gel used for skin ailments.",
- cost: "$14"
- },
- {
- name: "Echinacea",
- image: "https://cdn.pixabay.com/photo/2014/12/05/03/53/echinacea-557477_1280.jpg",
- description: "Boosts immune system, helps fight colds.",
- cost: "$16"
- },
- {
- name: "Peppermint",
- image: "https://cdn.pixabay.com/photo/2017/07/12/12/23/peppermint-2496773_1280.jpg",
- description: "Relieves digestive issues and headaches.",
- cost: "$13"
- },
- {
- name: "Lemon Balm",
- image: "https://cdn.pixabay.com/photo/2019/09/16/07/41/balm-4480134_1280.jpg",
- description: "Calms nerves and promotes relaxation.",
- cost: "$14"
- },
- {
- name: "Chamomile",
- image: "https://cdn.pixabay.com/photo/2016/08/19/19/48/flowers-1606041_1280.jpg",
- description: "Soothes anxiety and promotes sleep.",
- cost: "$15"
- },
- {
- name: "Calendula",
- image: "https://cdn.pixabay.com/photo/2019/07/15/18/28/flowers-4340127_1280.jpg",
- description: "Heals wounds and soothes skin irritations.",
- cost: "$12"
- }
- ]
- },
- {
- category: "Low Maintenance Plants",
- plants: [
- {
- name: "ZZ Plant",
- image: "https://images.unsplash.com/photo-1632207691143-643e2a9a9361?q=80&w=464&auto=format&fit=crop&ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D",
- description: "Thrives in low light and requires minimal watering.",
- cost: "$25"
- },
- {
- name: "Pothos",
- image: "https://cdn.pixabay.com/photo/2018/11/15/10/32/plants-3816945_1280.jpg",
- description: "Tolerates neglect and can grow in various conditions.",
- cost: "$10"
- },
- {
- name: "Snake Plant",
- image: "https://cdn.pixabay.com/photo/2021/01/22/06/04/snake-plant-5939187_1280.jpg",
- description: "Needs infrequent watering and is resilient to most pests.",
- cost: "$15"
- },
- {
- name: "Cast Iron Plant",
- image: "https://cdn.pixabay.com/photo/2017/02/16/18/04/cast-iron-plant-2072008_1280.jpg",
- description: "Hardy plant that tolerates low light and neglect.",
- cost: "$20"
- },
- {
- name: "Succulents",
- image: "https://cdn.pixabay.com/photo/2016/11/21/16/05/cacti-1846147_1280.jpg",
- description: "Drought-tolerant plants with unique shapes and colors.",
- cost: "$18"
- },
- {
- name: "Aglaonema",
- image: "https://cdn.pixabay.com/photo/2014/10/10/04/27/aglaonema-482915_1280.jpg",
- description: "Requires minimal care and adds color to indoor spaces.",
- cost: "$22"
- }
- ]
- }
- ];
- const styleObj={
- backgroundColor: '#4CAF50',
- color: '#fff!important',
- padding: '15px',
- display: 'flex',
- justifyContent: 'space-between',
- alignIems: 'center',
- fontSize: '20px',
- }
- const styleObjUl={
- display: 'flex',
- justifyContent: 'space-between',
- alignItems: 'center',
- width: '1100px',
- }
- const styleA={
- color: 'white',
- fontSize: '30px',
- textDecoration: 'none',
- }
- const handleCartClick = (e) => {
- e.preventDefault();
- setShowCart(true); // Set showCart to true when cart icon is clicked
-};
-const handlePlantsClick = (e) => {
- e.preventDefault();
- setShowPlants(true); // Set showAboutUs to true when "About Us" link is clicked
- setShowCart(false); // Hide the cart when navigating to About Us
-};
+function ProductList({ onViewCartClick }) {
+ const dispatch = useDispatch();
+ const cartItemsCount = useSelector(state => state.cart.items.reduce((total, item) => total + item.quantity, 0));
+ const [addedToCart, setAddedToCart] = useState({});
+
+ const handleAddToCart = (plant) => {
+ dispatch(addItem(plant));
+ setAddedToCart((prevState) => ({
+ ...prevState,
+ [plant.name]: true
+ }));
+ };
+
+
+ const styleObj = {
+ backgroundColor: '#4CAF50',
+ color: '#fff!important',
+ padding: '15px',
+ display: 'flex',
+ justifyContent: 'space-between',
+ alignItems: 'center',
+ fontSize: '20px',
+ };
+
+ const styleObjUl = {
+ display: 'flex',
+ justifyContent: 'space-between',
+ alignItems: 'center',
+ width: '1100px',
+ };
+
+ const styleA = {
+ color: 'white',
+ fontSize: '30px',
+ textDecoration: 'none',
+ };
- const handleContinueShopping = (e) => {
- e.preventDefault();
- setShowCart(false);
- };
return (
-
-
-
-
-
-
-
Paradise Nursery
-
Where Green Meets Serenity
+
-
-
-
+
+
+ {plantsArray.map((category, index) => (
+
+
{category.category}
+
+ {category.plants.map((plant, plantIndex) => (
+
+
+
{plant.name}
+
{plant.description}
+
{plant.cost}
+
+
+ ))}
+
+
+ ))}
- {!showCart? (
-
-
-
-
- ) : (
-
-)}
-
);
}
-export default ProductList;
+export default ProductList;
\ No newline at end of file
diff --git a/src/data.js b/src/data.js
new file mode 100644
index 000000000..e50ebf565
--- /dev/null
+++ b/src/data.js
@@ -0,0 +1,207 @@
+export const plantsArray = [
+ {
+ category: "Air Purifying Plants",
+ plants: [
+ {
+ name: "Snake Plant",
+ image: "https://cdn.pixabay.com/photo/2021/01/22/06/04/snake-plant-5939187_1280.jpg",
+ description: "Produces oxygen at night, improving air quality.",
+ cost: "$15"
+ },
+ {
+ name: "Spider Plant",
+ image: "https://cdn.pixabay.com/photo/2018/07/11/06/47/chlorophytum-3530413_1280.jpg",
+ description: "Filters formaldehyde and xylene from the air.",
+ cost: "$12"
+ },
+ {
+ name: "Peace Lily",
+ image: "https://cdn.pixabay.com/photo/2019/06/12/14/14/peace-lilies-4269365_1280.jpg",
+ description: "Removes mold spores and purifies the air.",
+ cost: "$18"
+ },
+ {
+ name: "Boston Fern",
+ image: "https://cdn.pixabay.com/photo/2020/04/30/19/52/boston-fern-5114414_1280.jpg",
+ description: "Adds humidity to the air and removes toxins.",
+ cost: "$20"
+ },
+ {
+ name: "Rubber Plant",
+ image: "https://cdn.pixabay.com/photo/2020/02/15/11/49/flower-4850729_1280.jpg",
+ description: "Easy to care for and effective at removing toxins.",
+ cost: "$17"
+ },
+ {
+ name: "Aloe Vera",
+ image: "https://cdn.pixabay.com/photo/2018/04/02/07/42/leaf-3283175_1280.jpg",
+ description: "Purifies the air and has healing properties for skin.",
+ cost: "$14"
+ }
+ ]
+ },
+ {
+ category: "Aromatic Fragrant Plants",
+ plants: [
+ {
+ name: "Lavender",
+ image: "https://images.unsplash.com/photo-1611909023032-2d6b3134ecba?q=80&w=1074&auto=format&fit=crop&ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D",
+ description: "Calming scent, used in aromatherapy.",
+ cost: "$20"
+ },
+ {
+ name: "Jasmine",
+ image: "https://images.unsplash.com/photo-1592729645009-b96d1e63d14b?q=80&w=1170&auto=format&fit=crop&ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D",
+ description: "Sweet fragrance, promotes relaxation.",
+ cost: "$18"
+ },
+ {
+ name: "Rosemary",
+ image: "https://cdn.pixabay.com/photo/2019/10/11/07/12/rosemary-4541241_1280.jpg",
+ description: "Invigorating scent, often used in cooking.",
+ cost: "$15"
+ },
+ {
+ name: "Mint",
+ image: "https://cdn.pixabay.com/photo/2016/01/07/18/16/mint-1126282_1280.jpg",
+ description: "Refreshing aroma, used in teas and cooking.",
+ cost: "$12"
+ },
+ {
+ name: "Lemon Balm",
+ image: "https://cdn.pixabay.com/photo/2019/09/16/07/41/balm-4480134_1280.jpg",
+ description: "Citrusy scent, relieves stress and promotes sleep.",
+ cost: "$14"
+ },
+ {
+ name: "Hyacinth",
+ image: "https://cdn.pixabay.com/photo/2019/04/07/20/20/hyacinth-4110726_1280.jpg",
+ description: "Hyacinth is a beautiful flowering plant known for its fragrant.",
+ cost: "$22"
+ }
+ ]
+ },
+ {
+ category: "Insect Repellent Plants",
+ plants: [
+ {
+ name: "oregano",
+ image: "https://cdn.pixabay.com/photo/2015/05/30/21/20/oregano-790702_1280.jpg",
+ description: "The oregano plants contains compounds that can deter certain insects.",
+ cost: "$10"
+ },
+ {
+ name: "Marigold",
+ image:"https://cdn.pixabay.com/photo/2022/02/22/05/45/marigold-7028063_1280.jpg",
+ description: "Natural insect repellent, also adds color to the garden.",
+ cost: "$8"
+ },
+ {
+ name: "Geraniums",
+ image: "https://cdn.pixabay.com/photo/2012/04/26/21/51/flowerpot-43270_1280.jpg",
+ description: "Known for their insect-repelling properties while adding a pleasant scent.",
+ cost: "$20"
+ },
+ {
+ name: "Basil",
+ image: "https://cdn.pixabay.com/photo/2016/07/24/20/48/tulsi-1539181_1280.jpg",
+ description: "Repels flies and mosquitoes, also used in cooking.",
+ cost: "$9"
+ },
+ {
+ name: "Lavender",
+ image: "https://images.unsplash.com/photo-1611909023032-2d6b3134ecba?q=80&w=1074&auto=format&fit=crop&ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D",
+ description: "Calming scent, used in aromatherapy.",
+ cost: "$20"
+ },
+ {
+ name: "Catnip",
+ image: "https://cdn.pixabay.com/photo/2015/07/02/21/55/cat-829681_1280.jpg",
+ description: "Repels mosquitoes and attracts cats.",
+ cost: "$13"
+ }
+ ]
+ },
+ {
+ category: "Medicinal Plants",
+ plants: [
+ {
+ name: "Aloe Vera",
+ image: "https://cdn.pixabay.com/photo/2018/04/02/07/42/leaf-3283175_1280.jpg",
+ description: "Soothing gel used for skin ailments.",
+ cost: "$14"
+ },
+ {
+ name: "Echinacea",
+ image: "https://cdn.pixabay.com/photo/2014/12/05/03/53/echinacea-557477_1280.jpg",
+ description: "Boosts immune system, helps fight colds.",
+ cost: "$16"
+ },
+ {
+ name: "Peppermint",
+ image: "https://cdn.pixabay.com/photo/2017/07/12/12/23/peppermint-2496773_1280.jpg",
+ description: "Relieves digestive issues and headaches.",
+ cost: "$13"
+ },
+ {
+ name: "Lemon Balm",
+ image: "https://cdn.pixabay.com/photo/2019/09/16/07/41/balm-4480134_1280.jpg",
+ description: "Calms nerves and promotes relaxation.",
+ cost: "$14"
+ },
+ {
+ name: "Chamomile",
+ image: "https://cdn.pixabay.com/photo/2016/08/19/19/48/flowers-1606041_1280.jpg",
+ description: "Soothes anxiety and promotes sleep.",
+ cost: "$15"
+ },
+ {
+ name: "Calendula",
+ image: "https://cdn.pixabay.com/photo/2019/07/15/18/28/flowers-4340127_1280.jpg",
+ description: "Heals wounds and soothes skin irritations.",
+ cost: "$12"
+ }
+ ]
+ },
+ {
+ category: "Low Maintenance Plants",
+ plants: [
+ {
+ name: "ZZ Plant",
+ image: "https://images.unsplash.com/photo-1632207691143-643e2a9a9361?q=80&w=464&auto=format&fit=crop&ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D",
+ description: "Thrives in low light and requires minimal watering.",
+ cost: "$25"
+ },
+ {
+ name: "Pothos",
+ image: "https://cdn.pixabay.com/photo/2018/11/15/10/32/plants-3816945_1280.jpg",
+ description: "Tolerates neglect and can grow in various conditions.",
+ cost: "$10"
+ },
+ {
+ name: "Snake Plant",
+ image: "https://cdn.pixabay.com/photo/2021/01/22/06/04/snake-plant-5939187_1280.jpg",
+ description: "Needs infrequent watering and is resilient to most pests.",
+ cost: "$15"
+ },
+ {
+ name: "Cast Iron Plant",
+ image: "https://cdn.pixabay.com/photo/2017/02/16/18/04/cast-iron-plant-2072008_1280.jpg",
+ description: "Hardy plant that tolerates low light and neglect.",
+ cost: "$20"
+ },
+ {
+ name: "Succulents",
+ image: "https://cdn.pixabay.com/photo/2016/11/21/16/05/cacti-1846147_1280.jpg",
+ description: "Drought-tolerant plants with unique shapes and colors.",
+ cost: "$18"
+ },
+ {
+ name: "Aglaonema",
+ image: "https://cdn.pixabay.com/photo/2014/10/10/04/27/aglaonema-482915_1280.jpg",
+ description: "Requires minimal care and adds color to indoor spaces.",
+ cost: "$22"
+ }
+ ]
+ }
+];
\ No newline at end of file
diff --git a/src/store.js b/src/store.js
index 57a00db8c..71ef3f3c0 100644
--- a/src/store.js
+++ b/src/store.js
@@ -1,9 +1,9 @@
import { configureStore } from '@reduxjs/toolkit';
import cartReducer from './CartSlice';
- const store = configureStore({
- reducer: {
- cart: cartReducer,
- },
+const store = configureStore({
+ reducer: {
+ cart: cartReducer,
+ },
});
export default store
\ No newline at end of file