1.4.2 • Published 3 years ago

ecommerceduz v1.4.2

Weekly downloads
11
License
MIT
Repository
github
Last release
3 years ago

Liste des packages pour Ecommerce

Un ensemble de packages pour les sites ecommerces

Installation

npm i ecommerceduz --save

then ...

import { 
    getCart, 
    addToCart, 
    cartTotalsansTaxe,
    cartTotal, 
    shouldPayShipping, 
    formatPrice
} from '../utils/cart'

const cart = getCart()
/*a rajouter sur un bouton*/
<span onClick={() => {
        addToCart(produit, -1)
        forceUpdate()
    }}
    onKeyDown={() => {
        addToCart(produit, -1)
        forceUpdate()
    }}
>-</span>

<h3>Sous total : {formatPrice(cartTotalsansTaxe(cart))}</h3>
{shouldPayShipping(cart) && 
    <h3>Livraison: {formatPrice(SHIPPING_RATE)}</h3>
}
{!shouldPayShipping(cart) && 
    <h3>Livraison gratuite</h3>
}
<h3>Total : {formatPrice(cartTotal(cart))}</h3>
1.2.0

3 years ago

1.1.0

3 years ago

1.4.2

3 years ago

1.4.1

3 years ago

1.4.0

3 years ago

1.3.0

3 years ago

1.0.0

3 years ago