-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'develop' of github.com:atlp-rwanda/e-commerce-ninjas-fe…
… into ft-user-signup-187584865
- Loading branch information
Showing
38 changed files
with
4,747 additions
and
3,296 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
File renamed without changes
File renamed without changes
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
File renamed without changes
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -180,4 +180,4 @@ function Footer() { | |
</footer> | ||
); | ||
} | ||
export default Footer; | ||
export default Footer; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,140 @@ | ||
/* eslint-disable */ | ||
import React, { useState, useEffect, useRef } from 'react'; | ||
import { TfiHeadphoneAlt } from "react-icons/tfi"; | ||
import { VscWorkspaceTrusted } from "react-icons/vsc"; | ||
import { LiaShippingFastSolid } from "react-icons/lia"; | ||
import { FaHandHoldingUsd } from "react-icons/fa"; | ||
import { GoDotFill } from "react-icons/go"; | ||
import { FaChevronCircleLeft, FaChevronCircleRight } from "react-icons/fa"; | ||
import leftTop from "../../../public/assets/images/left-top.png"; | ||
import rightTop from "../../../public/assets/images/right-top.png"; | ||
import leftBottom from "../../../public/assets/images/left-bottom.png"; | ||
import rightBottom from "../../../public/assets/images/right-bottom.png"; | ||
const images = [ | ||
'/assets/middle.png', | ||
'/assets/shoe2.jpeg', | ||
'/assets/shoe3.jpeg' | ||
]; | ||
|
||
const Sample: React.FC = () => { | ||
const [currentIndex, setCurrentIndex] = useState(0); | ||
const intervalRef = useRef<NodeJS.Timeout | null>(null); | ||
|
||
const handleLeftClick = () => { | ||
setCurrentIndex((prevIndex) => (prevIndex === 0 ? images.length - 1 : prevIndex - 1)); | ||
}; | ||
|
||
const handleRightClick = () => { | ||
setCurrentIndex((prevIndex) => (prevIndex === images.length - 1 ? 0 : prevIndex + 1)); | ||
}; | ||
|
||
const startImageChangeInterval = () => { | ||
intervalRef.current = setInterval(() => { | ||
setCurrentIndex((prevIndex) => (prevIndex + 1) % images.length); | ||
}, 5000); | ||
}; | ||
|
||
useEffect(() => { | ||
startImageChangeInterval(); | ||
return () => { | ||
if (intervalRef.current) { | ||
clearInterval(intervalRef.current); | ||
} | ||
}; | ||
}, []); | ||
|
||
useEffect(() => { | ||
if (intervalRef.current) { | ||
clearInterval(intervalRef.current); | ||
startImageChangeInterval(); | ||
} | ||
}, [currentIndex]); | ||
|
||
return ( | ||
<div> | ||
<div className="sampleImages1"> | ||
<div className="sample1"> | ||
<div className="menShoe"> | ||
<img src={leftTop} alt="" /> | ||
<div className="text-container"> | ||
<p>Men's Shoes</p> | ||
<button>View ></button> | ||
</div> | ||
</div> | ||
<div className="phones"> | ||
<img src={leftBottom} alt="" /> | ||
<div className="text-container"> | ||
<p>Phones</p> | ||
<button>View ></button> | ||
</div> | ||
</div> | ||
</div> | ||
<div className="sample2" style={{ backgroundImage: `url(${images[currentIndex]})` }}> | ||
<div className="arrow left" onClick={handleLeftClick}> | ||
<FaChevronCircleLeft className="icon-arrow" /> | ||
</div> | ||
<div className="arrow right" onClick={handleRightClick}> | ||
<FaChevronCircleRight className="icon-arrow" /> | ||
</div> | ||
<div className="dots"> | ||
{images.map((_, index) => ( | ||
<GoDotFill | ||
key={index} | ||
className="icon-dots" | ||
style={{ color: currentIndex === index ? '#ff6d18' : '#fff' }} | ||
/> | ||
))} | ||
</div> | ||
</div> | ||
<div className="sample3"> | ||
<div className="womenShoe"> | ||
<img src={rightTop} alt="" /> | ||
<div className="text-container"> | ||
<p>Women's Shoes</p> | ||
<button>View ></button> | ||
</div> | ||
</div> | ||
<div className="accessories"> | ||
<img src={rightBottom} alt="" /> | ||
<div className="text-container"> | ||
<p>Accessories</p> | ||
<button>View ></button> | ||
</div> | ||
</div> | ||
</div> | ||
</div> | ||
<div className="trust-container"> | ||
<div className="trust"> | ||
<TfiHeadphoneAlt className="icon" /> | ||
<div className="name"> | ||
<h2>Responsive</h2> | ||
<p>Customer service available 24/7</p> | ||
</div> | ||
</div> | ||
<div className="trust"> | ||
<VscWorkspaceTrusted className="icon" /> | ||
<div className="name"> | ||
<h2>Secure</h2> | ||
<p>Certified marketplace since 2024</p> | ||
</div> | ||
</div> | ||
<div className="trust"> | ||
<LiaShippingFastSolid className="icon" /> | ||
<div className="name"> | ||
<h2>Shipping</h2> | ||
<p>Free, fast, and reliable worldwide</p> | ||
</div> | ||
</div> | ||
<div className="trust"> | ||
<FaHandHoldingUsd className="icon" /> | ||
<div className="name"> | ||
<h2>Transparent</h2> | ||
<p>Free return policy</p> | ||
</div> | ||
</div> | ||
</div> | ||
</div> | ||
); | ||
}; | ||
|
||
export default Sample; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,61 @@ | ||
/* eslint-disable */ | ||
import React, { useState, useRef } from 'react'; | ||
import { CiHeart } from "react-icons/ci"; | ||
import { PiShoppingCartThin } from "react-icons/pi"; | ||
interface ProductProps { | ||
images: string[]; | ||
name: string; | ||
price: string; | ||
stock: number; | ||
description: string; | ||
discount: number; | ||
} | ||
|
||
const Product: React.FC<ProductProps> = ({ images, name, price, stock, description, discount }) => { | ||
const [currentImageIndex, setCurrentImageIndex] = useState(0); | ||
const intervalRef = useRef<NodeJS.Timeout | null>(null); | ||
|
||
const handleMouseEnter = () => { | ||
intervalRef.current = setInterval(() => { | ||
setCurrentImageIndex((prevIndex) => (prevIndex + 1) % images.length); | ||
}, 2000); | ||
}; | ||
|
||
const handleMouseLeave = () => { | ||
if (intervalRef.current) { | ||
clearInterval(intervalRef.current); | ||
} | ||
setCurrentImageIndex(0); | ||
}; | ||
|
||
const truncateDescription = (desc: string, length: number) => { | ||
return desc.length > length ? `${desc.substring(0, length)}...` : desc; | ||
}; | ||
|
||
return ( | ||
<div className="product"> | ||
<div | ||
className="product-image-container" | ||
onMouseEnter={handleMouseEnter} | ||
onMouseLeave={handleMouseLeave} | ||
> | ||
<span className="discount-badge">{discount}%</span> | ||
<img src={images[currentImageIndex]} alt="Product" className="product-image" /> | ||
</div> | ||
<div className="product-info"> | ||
<div className="product-add"> | ||
<div className="icon-container"><PiShoppingCartThin className="icon" /></div> | ||
<div className="icon-container"><CiHeart className="icon" /></div> | ||
</div> | ||
<div className="product-name">{name}</div> | ||
<div className="product-details"> | ||
<p className="product-price">{price}</p> | ||
<p className="product-stock"><span className="stock">Stock:</span>{stock}</p> | ||
</div> | ||
<p className="product-description">{truncateDescription(description, 20)}</p> | ||
</div> | ||
</div> | ||
); | ||
}; | ||
|
||
export default Product; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.