Merge branch 'react-version' of https://github.com/MarcEricMartel/420-5DW-HY-TP into react-version
This commit is contained in:
		@@ -1,8 +1,10 @@
 | 
			
		||||
import { createContext, useState } from "react";
 | 
			
		||||
import { useCookies } from "react-cookie";
 | 
			
		||||
 | 
			
		||||
export const CartContext = createContext({
 | 
			
		||||
    items: [],
 | 
			
		||||
    getProductQuantity: () => { },
 | 
			
		||||
    getProductRemaining: () => { },
 | 
			
		||||
    addOneToCart: () => { },
 | 
			
		||||
    removeOneFromCart: () => { },
 | 
			
		||||
    deleteFromCart: () => { },
 | 
			
		||||
@@ -12,11 +14,12 @@ export const CartContext = createContext({
 | 
			
		||||
 | 
			
		||||
export function CartProvider({ children }) {
 | 
			
		||||
 | 
			
		||||
    const [cookies, setCookie] = useCookies(['cart']);
 | 
			
		||||
    const [cartProducts, setCartProducts] = useState([]);
 | 
			
		||||
 | 
			
		||||
    function addToCart(product, qty) {
 | 
			
		||||
 | 
			
		||||
        setCartProducts([...cartProducts, {...product, quantity: parseFloat(qty)}]);
 | 
			
		||||
        setCartProducts([...cartProducts, { ...product, quantity: parseFloat(qty), remaining: parseFloat(product.quantity) }]);
 | 
			
		||||
    }
 | 
			
		||||
 | 
			
		||||
    function getProductQuantity(id) {
 | 
			
		||||
@@ -28,10 +31,20 @@ export function CartProvider({ children }) {
 | 
			
		||||
        return quantity;
 | 
			
		||||
    };
 | 
			
		||||
 | 
			
		||||
    function addOneToCart(id, qty) {
 | 
			
		||||
        const currentQty = getProductQuantity(id);
 | 
			
		||||
    function getProductRemaining(id) {
 | 
			
		||||
        const remaining = cartProducts.find(product => product.id === id)?.remaining;
 | 
			
		||||
        if (remaining === undefined) {
 | 
			
		||||
            return 0;
 | 
			
		||||
        }
 | 
			
		||||
 | 
			
		||||
        if (qty > currentQty) {
 | 
			
		||||
        return remaining;
 | 
			
		||||
    };
 | 
			
		||||
 | 
			
		||||
    function addOneToCart(id) {
 | 
			
		||||
        const currentQty = getProductQuantity(id);
 | 
			
		||||
        const remaining = getProductRemaining(id);
 | 
			
		||||
 | 
			
		||||
        if (remaining > currentQty) {
 | 
			
		||||
            setCartProducts(
 | 
			
		||||
                cartProducts.map(
 | 
			
		||||
                    product => product.id === id
 | 
			
		||||
@@ -46,7 +59,7 @@ export function CartProvider({ children }) {
 | 
			
		||||
        const currentQty = getProductQuantity(id);
 | 
			
		||||
 | 
			
		||||
        if (currentQty === 1)
 | 
			
		||||
            deleteFromCart();
 | 
			
		||||
            deleteFromCart(id);
 | 
			
		||||
        else
 | 
			
		||||
            setCartProducts(
 | 
			
		||||
                cartProducts.map(
 | 
			
		||||
@@ -68,7 +81,7 @@ export function CartProvider({ children }) {
 | 
			
		||||
    function getTotalCost() {
 | 
			
		||||
        let totalCost = 0;
 | 
			
		||||
        cartProducts.map((cartItem) => {
 | 
			
		||||
            totalCost += (cartItem.Price * cartItem.quantity);
 | 
			
		||||
            totalCost += (parseFloat(cartItem.price) * parseFloat(cartItem.quantity));
 | 
			
		||||
        });
 | 
			
		||||
 | 
			
		||||
        return totalCost;
 | 
			
		||||
@@ -77,6 +90,7 @@ export function CartProvider({ children }) {
 | 
			
		||||
    const contextValue = {
 | 
			
		||||
        items: cartProducts,
 | 
			
		||||
        getProductQuantity,
 | 
			
		||||
        getProductRemaining,
 | 
			
		||||
        addOneToCart,
 | 
			
		||||
        removeOneFromCart,
 | 
			
		||||
        deleteFromCart,
 | 
			
		||||
 
 | 
			
		||||
@@ -28,8 +28,11 @@ const CartButton = () => {
 | 
			
		||||
                <ModalBody>
 | 
			
		||||
                    {productsCount > 0 ?
 | 
			
		||||
                        <>
 | 
			
		||||
                            <p></p>
 | 
			
		||||
                            {cart.items.map((item) => <CartCard product={item}></CartCard>)}
 | 
			
		||||
                            <div className="payer">
 | 
			
		||||
                                <h className="total">Total: {cart.getTotalCost().toFixed(2)}$ CAD</h>
 | 
			
		||||
                                <Button className="payer">Payer</Button>
 | 
			
		||||
                            </div>
 | 
			
		||||
                        </>
 | 
			
		||||
                        :
 | 
			
		||||
                        <h1>C'est vide! Rempli le hi hi!</h1>
 | 
			
		||||
 
 | 
			
		||||
@@ -24,12 +24,12 @@ export function CartCard({ product }) {
 | 
			
		||||
                <Card.Body>
 | 
			
		||||
                    <div className={!imageSrc ? "cat-load" : "d-none cat-load"} />
 | 
			
		||||
                    <Card.Img className="item-img" variant="top" src={imageSrc} />
 | 
			
		||||
                    <Card.Title>{product.Title}</Card.Title>
 | 
			
		||||
                    <Card.Text>{product.Price}$ CA</Card.Text>
 | 
			
		||||
                    <Card.Title>{product.title}</Card.Title>
 | 
			
		||||
                    <Card.Text>{product.price}$ CA</Card.Text>
 | 
			
		||||
                    <Form as={Row}>
 | 
			
		||||
                        <Form.Label column="true" sm="6">Dans l'carosse: {productQuantity}</Form.Label>
 | 
			
		||||
                        <Col sm="6">
 | 
			
		||||
                            <Button sm="6" className='mx-2' onClick={() => cart.addOneToCart(product.id, product.quantity)}>+</Button>
 | 
			
		||||
                            <Button sm="6" className='mx-2' onClick={() => cart.addOneToCart(product.id)}>+</Button>
 | 
			
		||||
                            <Button sm="6" className='mx-2' onClick={() => cart.removeOneFromCart(product.id)}>-</Button>
 | 
			
		||||
                        </Col>
 | 
			
		||||
                    </Form>
 | 
			
		||||
 
 | 
			
		||||
@@ -149,7 +149,7 @@ const MorceauDetail = () => {
 | 
			
		||||
                            <Form as={Row}>
 | 
			
		||||
                                <Form.Label sm="6">Dans l'carosse: {inCartQuantity}</Form.Label>
 | 
			
		||||
                                <Button disabled={isNoStock()} className="add-to-cart"
 | 
			
		||||
                                    onClick={() => cart.addOneToCart(item.id, item.quantity)}
 | 
			
		||||
                                    onClick={() => cart.addOneToCart(item.id)}
 | 
			
		||||
                                    sm="6">
 | 
			
		||||
                                    +
 | 
			
		||||
                                </Button >
 | 
			
		||||
 
 | 
			
		||||
@@ -668,8 +668,22 @@ a {
 | 
			
		||||
    text-decoration: line-through;
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
.total {
 | 
			
		||||
    margin: 5%;
 | 
			
		||||
    color: green;
 | 
			
		||||
    font-weight: bold;
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
.payer {
 | 
			
		||||
    display: flex;
 | 
			
		||||
    margin: 5%;
 | 
			
		||||
    margin-left: auto;
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
.carosse {
 | 
			
		||||
    border-color: purple;
 | 
			
		||||
    border-width: 2%;
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
.btn-fermer {
 | 
			
		||||
    background-color: red !important;
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user