Add i18n support and cart total to Shopify integration
Implement multilingual support for shop interface and add total calculation to cart drawer: - Add FR/EN translations for all shop-related texts (cart, checkout, stock status) - Update templates and JavaScript to use translation system - Add cart total calculation with formatted currency display - Refactor cart drawer styles to SASS with improved button styling (black borders on +/-) - Fix English product content (replace JSON with proper HTML) - Extract cart drawer to separate snippet for better organization Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
This commit is contained in:
parent
28501fec7c
commit
b3940bba08
12 changed files with 586 additions and 451 deletions
|
|
@ -0,0 +1,68 @@
|
||||||
|
.product-purchase {
|
||||||
|
margin-top: 2rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
.product-stock-info {
|
||||||
|
margin-bottom: 1rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
.stock-status {
|
||||||
|
font-size: 0.9rem;
|
||||||
|
font-weight: 600;
|
||||||
|
margin: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
.stock-status.in-stock {
|
||||||
|
color: #00cc00;
|
||||||
|
}
|
||||||
|
|
||||||
|
.stock-status.low-stock {
|
||||||
|
color: #ff9900;
|
||||||
|
}
|
||||||
|
|
||||||
|
.stock-status.out-of-stock {
|
||||||
|
color: #ff3333;
|
||||||
|
}
|
||||||
|
|
||||||
|
.btn-add-to-cart {
|
||||||
|
font-family: "Open Sans", sans-serif;
|
||||||
|
font-weight: bold;
|
||||||
|
font-size: 1rem;
|
||||||
|
color: #000000;
|
||||||
|
background-color: #00ff00;
|
||||||
|
border: none;
|
||||||
|
border-radius: 40px;
|
||||||
|
padding: 12px 34px;
|
||||||
|
cursor: pointer;
|
||||||
|
transition: background-color 0.3s ease;
|
||||||
|
width: 100%;
|
||||||
|
max-width: 300px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.btn-add-to-cart:hover:not(:disabled) {
|
||||||
|
background-color: #00e600;
|
||||||
|
}
|
||||||
|
|
||||||
|
.btn-add-to-cart:focus {
|
||||||
|
outline: 2px solid #00e600;
|
||||||
|
outline-offset: 2px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.btn-add-to-cart:disabled {
|
||||||
|
opacity: 0.6;
|
||||||
|
cursor: not-allowed;
|
||||||
|
}
|
||||||
|
|
||||||
|
.btn-add-to-cart.success {
|
||||||
|
background-color: #00cc00;
|
||||||
|
}
|
||||||
|
|
||||||
|
.btn-add-to-cart.error {
|
||||||
|
background-color: #ff3333;
|
||||||
|
color: #ffffff;
|
||||||
|
}
|
||||||
|
|
||||||
|
.btn-add-to-cart.out-of-stock {
|
||||||
|
background-color: #cccccc;
|
||||||
|
color: #666666;
|
||||||
|
}
|
||||||
|
|
@ -9,225 +9,246 @@
|
||||||
pointer-events: none;
|
pointer-events: none;
|
||||||
opacity: 0;
|
opacity: 0;
|
||||||
transition: opacity 0.3s ease;
|
transition: opacity 0.3s ease;
|
||||||
|
color: #000;
|
||||||
|
|
||||||
|
&.is-open {
|
||||||
|
pointer-events: auto;
|
||||||
|
opacity: 1;
|
||||||
|
|
||||||
|
.cart-drawer__panel {
|
||||||
|
transform: translateX(0);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
&__overlay {
|
||||||
|
position: absolute;
|
||||||
|
top: 0;
|
||||||
|
left: 0;
|
||||||
|
right: 0;
|
||||||
|
bottom: 0;
|
||||||
|
background-color: rgba(0, 0, 0, 0.5);
|
||||||
|
cursor: pointer;
|
||||||
|
}
|
||||||
|
|
||||||
|
&__panel {
|
||||||
|
position: absolute;
|
||||||
|
top: 0;
|
||||||
|
right: 0;
|
||||||
|
bottom: 0;
|
||||||
|
width: 100%;
|
||||||
|
max-width: 420px;
|
||||||
|
background-color: #ffffff;
|
||||||
|
box-shadow: -2px 0 8px rgba(0, 0, 0, 0.15);
|
||||||
|
display: flex;
|
||||||
|
flex-direction: column;
|
||||||
|
transform: translateX(100%);
|
||||||
|
transition: transform 0.3s ease;
|
||||||
|
|
||||||
|
@media (max-width: 768px) {
|
||||||
|
max-width: 100%;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
&__header {
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
justify-content: space-between;
|
||||||
|
padding: 1.5rem;
|
||||||
|
border-bottom: 1px solid #e0e0e0;
|
||||||
|
|
||||||
|
h3 {
|
||||||
|
margin: 0;
|
||||||
|
font-size: 1.5rem;
|
||||||
|
font-weight: bold;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
&__close {
|
||||||
|
background: none;
|
||||||
|
border: none;
|
||||||
|
cursor: pointer;
|
||||||
|
padding: 0.5rem;
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
justify-content: center;
|
||||||
|
transition: opacity 0.2s;
|
||||||
|
|
||||||
|
&:hover {
|
||||||
|
opacity: 0.7;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
&__content {
|
||||||
|
flex: 1;
|
||||||
|
overflow-y: auto;
|
||||||
|
padding: 1.5rem;
|
||||||
|
|
||||||
|
&.is-loading {
|
||||||
|
opacity: 0.5;
|
||||||
|
pointer-events: none;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
&__empty {
|
||||||
|
text-align: center;
|
||||||
|
padding: 3rem 1rem;
|
||||||
|
color: #666;
|
||||||
|
|
||||||
|
&.hidden {
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
&__items {
|
||||||
|
display: flex;
|
||||||
|
flex-direction: column;
|
||||||
|
gap: 1rem;
|
||||||
|
|
||||||
|
&.hidden {
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
&__footer {
|
||||||
|
border-top: 1px solid #e0e0e0;
|
||||||
|
padding: 1.5rem;
|
||||||
|
display: flex;
|
||||||
|
flex-direction: column;
|
||||||
|
gap: 1rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
&__total {
|
||||||
|
display: flex;
|
||||||
|
justify-content: space-between;
|
||||||
|
align-items: center;
|
||||||
|
font-size: 1.125rem;
|
||||||
|
font-weight: bold;
|
||||||
|
|
||||||
|
&-label {
|
||||||
|
color: #000;
|
||||||
|
}
|
||||||
|
|
||||||
|
&-amount {
|
||||||
|
color: #000;
|
||||||
|
font-size: 1.25rem;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
&__checkout-btn {
|
||||||
|
width: 100%;
|
||||||
|
font-family: "Open Sans", sans-serif;
|
||||||
|
font-weight: bold;
|
||||||
|
font-size: 1rem;
|
||||||
|
color: #000000;
|
||||||
|
background-color: #00ff00;
|
||||||
|
border: none;
|
||||||
|
border-radius: 40px;
|
||||||
|
padding: 14px 34px;
|
||||||
|
cursor: pointer;
|
||||||
|
transition: background-color 0.3s ease;
|
||||||
|
|
||||||
|
&:hover:not(:disabled) {
|
||||||
|
background-color: #00e600;
|
||||||
|
}
|
||||||
|
|
||||||
|
&:disabled {
|
||||||
|
opacity: 0.6;
|
||||||
|
cursor: not-allowed;
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
.cart-drawer.is-open {
|
// Cart Item
|
||||||
pointer-events: auto;
|
|
||||||
opacity: 1;
|
|
||||||
}
|
|
||||||
|
|
||||||
.cart-drawer__overlay {
|
|
||||||
position: absolute;
|
|
||||||
top: 0;
|
|
||||||
left: 0;
|
|
||||||
right: 0;
|
|
||||||
bottom: 0;
|
|
||||||
background-color: rgba(0, 0, 0, 0.5);
|
|
||||||
cursor: pointer;
|
|
||||||
}
|
|
||||||
|
|
||||||
.cart-drawer__panel {
|
|
||||||
position: absolute;
|
|
||||||
top: 0;
|
|
||||||
right: 0;
|
|
||||||
bottom: 0;
|
|
||||||
width: 100%;
|
|
||||||
max-width: 420px;
|
|
||||||
background-color: #ffffff;
|
|
||||||
box-shadow: -2px 0 8px rgba(0, 0, 0, 0.15);
|
|
||||||
display: flex;
|
|
||||||
flex-direction: column;
|
|
||||||
transform: translateX(100%);
|
|
||||||
transition: transform 0.3s ease;
|
|
||||||
}
|
|
||||||
|
|
||||||
.cart-drawer.is-open .cart-drawer__panel {
|
|
||||||
transform: translateX(0);
|
|
||||||
}
|
|
||||||
|
|
||||||
.cart-drawer__header {
|
|
||||||
display: flex;
|
|
||||||
align-items: center;
|
|
||||||
justify-content: space-between;
|
|
||||||
padding: 1.5rem;
|
|
||||||
border-bottom: 1px solid #e0e0e0;
|
|
||||||
}
|
|
||||||
|
|
||||||
.cart-drawer__header h3 {
|
|
||||||
margin: 0;
|
|
||||||
font-size: 1.5rem;
|
|
||||||
font-weight: bold;
|
|
||||||
}
|
|
||||||
|
|
||||||
.cart-drawer__close {
|
|
||||||
background: none;
|
|
||||||
border: none;
|
|
||||||
cursor: pointer;
|
|
||||||
padding: 0.5rem;
|
|
||||||
display: flex;
|
|
||||||
align-items: center;
|
|
||||||
justify-content: center;
|
|
||||||
transition: opacity 0.2s;
|
|
||||||
}
|
|
||||||
|
|
||||||
.cart-drawer__close:hover {
|
|
||||||
opacity: 0.7;
|
|
||||||
}
|
|
||||||
|
|
||||||
.cart-drawer__content {
|
|
||||||
flex: 1;
|
|
||||||
overflow-y: auto;
|
|
||||||
padding: 1.5rem;
|
|
||||||
}
|
|
||||||
|
|
||||||
.cart-drawer__empty {
|
|
||||||
text-align: center;
|
|
||||||
padding: 3rem 1rem;
|
|
||||||
color: #666;
|
|
||||||
}
|
|
||||||
|
|
||||||
.cart-drawer__empty.hidden {
|
|
||||||
display: none;
|
|
||||||
}
|
|
||||||
|
|
||||||
.cart-drawer__items {
|
|
||||||
display: flex;
|
|
||||||
flex-direction: column;
|
|
||||||
gap: 1rem;
|
|
||||||
}
|
|
||||||
|
|
||||||
.cart-drawer__items.hidden {
|
|
||||||
display: none;
|
|
||||||
}
|
|
||||||
|
|
||||||
.cart-item {
|
.cart-item {
|
||||||
display: flex;
|
display: flex;
|
||||||
gap: 1rem;
|
gap: 1rem;
|
||||||
padding: 1rem;
|
padding: 1rem;
|
||||||
border: 1px solid #e0e0e0;
|
border: 1px solid #e0e0e0;
|
||||||
border-radius: 8px;
|
border-radius: 8px;
|
||||||
}
|
|
||||||
|
|
||||||
.cart-item__image {
|
&__image {
|
||||||
width: 80px;
|
width: 80px;
|
||||||
height: 80px;
|
height: 80px;
|
||||||
object-fit: cover;
|
object-fit: cover;
|
||||||
border-radius: 4px;
|
border-radius: 4px;
|
||||||
flex-shrink: 0;
|
flex-shrink: 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
.cart-item__details {
|
&__details {
|
||||||
flex: 1;
|
flex: 1;
|
||||||
display: flex;
|
display: flex;
|
||||||
flex-direction: column;
|
flex-direction: column;
|
||||||
gap: 0.5rem;
|
gap: 0.5rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
.cart-item__title {
|
&__title {
|
||||||
font-weight: 600;
|
font-weight: 600;
|
||||||
margin: 0;
|
margin: 0;
|
||||||
font-size: 1rem;
|
font-size: 1rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
.cart-item__variant {
|
&__variant {
|
||||||
font-size: 0.875rem;
|
font-size: 0.875rem;
|
||||||
color: #666;
|
color: #666;
|
||||||
margin: 0;
|
margin: 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
.cart-item__price {
|
&__price {
|
||||||
font-weight: bold;
|
font-weight: bold;
|
||||||
color: #000;
|
color: #000;
|
||||||
}
|
}
|
||||||
|
|
||||||
.cart-item__quantity {
|
&__quantity {
|
||||||
display: flex;
|
display: flex;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
gap: 0.5rem;
|
gap: 0.5rem;
|
||||||
margin-top: auto;
|
margin-top: auto;
|
||||||
}
|
}
|
||||||
|
|
||||||
.cart-item__qty-btn {
|
&__qty-btn {
|
||||||
width: 28px;
|
width: 28px;
|
||||||
height: 28px;
|
height: 28px;
|
||||||
border: 1px solid #ddd;
|
border: 1px solid #000;
|
||||||
background: #fff;
|
background: #fff;
|
||||||
border-radius: 4px;
|
color: #000;
|
||||||
cursor: pointer;
|
border-radius: 4px;
|
||||||
display: flex;
|
cursor: pointer;
|
||||||
align-items: center;
|
display: flex;
|
||||||
justify-content: center;
|
align-items: center;
|
||||||
font-size: 1rem;
|
justify-content: center;
|
||||||
transition: background-color 0.2s;
|
font-size: 1rem;
|
||||||
}
|
font-weight: bold;
|
||||||
|
transition: all 0.2s;
|
||||||
|
|
||||||
.cart-item__qty-btn:hover:not(:disabled) {
|
&:hover:not(:disabled) {
|
||||||
background-color: #f5f5f5;
|
background-color: #000;
|
||||||
}
|
color: #fff;
|
||||||
|
}
|
||||||
|
|
||||||
.cart-item__qty-btn:disabled {
|
&:disabled {
|
||||||
opacity: 0.4;
|
opacity: 0.4;
|
||||||
cursor: not-allowed;
|
cursor: not-allowed;
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
.cart-item__qty-value {
|
&__qty-value {
|
||||||
min-width: 30px;
|
min-width: 30px;
|
||||||
text-align: center;
|
text-align: center;
|
||||||
font-weight: 600;
|
font-weight: 600;
|
||||||
}
|
}
|
||||||
|
|
||||||
.cart-item__remove {
|
&__remove {
|
||||||
background: none;
|
background: none;
|
||||||
border: none;
|
border: none;
|
||||||
color: #ff3333;
|
color: #ff3333;
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
padding: 0.25rem 0.5rem;
|
padding: 0.25rem 0.5rem;
|
||||||
font-size: 0.875rem;
|
font-size: 0.875rem;
|
||||||
text-decoration: underline;
|
text-decoration: underline;
|
||||||
align-self: flex-start;
|
align-self: flex-start;
|
||||||
}
|
|
||||||
|
|
||||||
.cart-item__remove:hover {
|
&:hover {
|
||||||
color: #cc0000;
|
color: #cc0000;
|
||||||
}
|
}
|
||||||
|
|
||||||
.cart-drawer__footer {
|
|
||||||
border-top: 1px solid #e0e0e0;
|
|
||||||
padding: 1.5rem;
|
|
||||||
}
|
|
||||||
|
|
||||||
.cart-drawer__checkout-btn {
|
|
||||||
width: 100%;
|
|
||||||
font-family: "Open Sans", sans-serif;
|
|
||||||
font-weight: bold;
|
|
||||||
font-size: 1rem;
|
|
||||||
color: #000000;
|
|
||||||
background-color: #00ff00;
|
|
||||||
border: none;
|
|
||||||
border-radius: 40px;
|
|
||||||
padding: 14px 34px;
|
|
||||||
cursor: pointer;
|
|
||||||
transition: background-color 0.3s ease;
|
|
||||||
}
|
|
||||||
|
|
||||||
.cart-drawer__checkout-btn:hover:not(:disabled) {
|
|
||||||
background-color: #00e600;
|
|
||||||
}
|
|
||||||
|
|
||||||
.cart-drawer__checkout-btn:disabled {
|
|
||||||
opacity: 0.6;
|
|
||||||
cursor: not-allowed;
|
|
||||||
}
|
|
||||||
|
|
||||||
/* Mobile responsiveness */
|
|
||||||
@media (max-width: 768px) {
|
|
||||||
.cart-drawer__panel {
|
|
||||||
max-width: 100%;
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Loading state */
|
|
||||||
.cart-drawer__content.is-loading {
|
|
||||||
opacity: 0.5;
|
|
||||||
pointer-events: none;
|
|
||||||
}
|
|
||||||
|
|
|
||||||
|
|
@ -1258,6 +1258,75 @@ body.is-fullscreen {
|
||||||
margin-top: calc(var(--spacing) * 4);
|
margin-top: calc(var(--spacing) * 4);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.product-purchase {
|
||||||
|
margin-top: 2rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
.product-stock-info {
|
||||||
|
margin-bottom: 1rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
.stock-status {
|
||||||
|
font-size: 0.9rem;
|
||||||
|
font-weight: 600;
|
||||||
|
margin: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
.stock-status.in-stock {
|
||||||
|
color: #00cc00;
|
||||||
|
}
|
||||||
|
|
||||||
|
.stock-status.low-stock {
|
||||||
|
color: #ff9900;
|
||||||
|
}
|
||||||
|
|
||||||
|
.stock-status.out-of-stock {
|
||||||
|
color: #ff3333;
|
||||||
|
}
|
||||||
|
|
||||||
|
.btn-add-to-cart {
|
||||||
|
font-family: "Open Sans", sans-serif;
|
||||||
|
font-weight: bold;
|
||||||
|
font-size: 1rem;
|
||||||
|
color: #000000;
|
||||||
|
background-color: #00ff00;
|
||||||
|
border: none;
|
||||||
|
border-radius: 40px;
|
||||||
|
padding: 12px 34px;
|
||||||
|
cursor: pointer;
|
||||||
|
transition: background-color 0.3s ease;
|
||||||
|
width: 100%;
|
||||||
|
max-width: 300px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.btn-add-to-cart:hover:not(:disabled) {
|
||||||
|
background-color: #00e600;
|
||||||
|
}
|
||||||
|
|
||||||
|
.btn-add-to-cart:focus {
|
||||||
|
outline: 2px solid #00e600;
|
||||||
|
outline-offset: 2px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.btn-add-to-cart:disabled {
|
||||||
|
opacity: 0.6;
|
||||||
|
cursor: not-allowed;
|
||||||
|
}
|
||||||
|
|
||||||
|
.btn-add-to-cart.success {
|
||||||
|
background-color: #00cc00;
|
||||||
|
}
|
||||||
|
|
||||||
|
.btn-add-to-cart.error {
|
||||||
|
background-color: #ff3333;
|
||||||
|
color: #ffffff;
|
||||||
|
}
|
||||||
|
|
||||||
|
.btn-add-to-cart.out-of-stock {
|
||||||
|
background-color: #cccccc;
|
||||||
|
color: #666666;
|
||||||
|
}
|
||||||
|
|
||||||
/* Cart Drawer Styles */
|
/* Cart Drawer Styles */
|
||||||
.cart-drawer {
|
.cart-drawer {
|
||||||
position: fixed;
|
position: fixed;
|
||||||
|
|
@ -1269,13 +1338,15 @@ body.is-fullscreen {
|
||||||
pointer-events: none;
|
pointer-events: none;
|
||||||
opacity: 0;
|
opacity: 0;
|
||||||
transition: opacity 0.3s ease;
|
transition: opacity 0.3s ease;
|
||||||
|
color: #000;
|
||||||
}
|
}
|
||||||
|
|
||||||
.cart-drawer.is-open {
|
.cart-drawer.is-open {
|
||||||
pointer-events: auto;
|
pointer-events: auto;
|
||||||
opacity: 1;
|
opacity: 1;
|
||||||
}
|
}
|
||||||
|
.cart-drawer.is-open .cart-drawer__panel {
|
||||||
|
transform: translateX(0);
|
||||||
|
}
|
||||||
.cart-drawer__overlay {
|
.cart-drawer__overlay {
|
||||||
position: absolute;
|
position: absolute;
|
||||||
top: 0;
|
top: 0;
|
||||||
|
|
@ -1285,7 +1356,6 @@ body.is-fullscreen {
|
||||||
background-color: rgba(0, 0, 0, 0.5);
|
background-color: rgba(0, 0, 0, 0.5);
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
}
|
}
|
||||||
|
|
||||||
.cart-drawer__panel {
|
.cart-drawer__panel {
|
||||||
position: absolute;
|
position: absolute;
|
||||||
top: 0;
|
top: 0;
|
||||||
|
|
@ -1300,11 +1370,11 @@ body.is-fullscreen {
|
||||||
transform: translateX(100%);
|
transform: translateX(100%);
|
||||||
transition: transform 0.3s ease;
|
transition: transform 0.3s ease;
|
||||||
}
|
}
|
||||||
|
@media (max-width: 768px) {
|
||||||
.cart-drawer.is-open .cart-drawer__panel {
|
.cart-drawer__panel {
|
||||||
transform: translateX(0);
|
max-width: 100%;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
.cart-drawer__header {
|
.cart-drawer__header {
|
||||||
display: flex;
|
display: flex;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
|
|
@ -1312,13 +1382,11 @@ body.is-fullscreen {
|
||||||
padding: 1.5rem;
|
padding: 1.5rem;
|
||||||
border-bottom: 1px solid #e0e0e0;
|
border-bottom: 1px solid #e0e0e0;
|
||||||
}
|
}
|
||||||
|
|
||||||
.cart-drawer__header h3 {
|
.cart-drawer__header h3 {
|
||||||
margin: 0;
|
margin: 0;
|
||||||
font-size: 1.5rem;
|
font-size: 1.5rem;
|
||||||
font-weight: bold;
|
font-weight: bold;
|
||||||
}
|
}
|
||||||
|
|
||||||
.cart-drawer__close {
|
.cart-drawer__close {
|
||||||
background: none;
|
background: none;
|
||||||
border: none;
|
border: none;
|
||||||
|
|
@ -1329,134 +1397,55 @@ body.is-fullscreen {
|
||||||
justify-content: center;
|
justify-content: center;
|
||||||
transition: opacity 0.2s;
|
transition: opacity 0.2s;
|
||||||
}
|
}
|
||||||
|
|
||||||
.cart-drawer__close:hover {
|
.cart-drawer__close:hover {
|
||||||
opacity: 0.7;
|
opacity: 0.7;
|
||||||
}
|
}
|
||||||
|
|
||||||
.cart-drawer__content {
|
.cart-drawer__content {
|
||||||
flex: 1;
|
flex: 1;
|
||||||
overflow-y: auto;
|
overflow-y: auto;
|
||||||
padding: 1.5rem;
|
padding: 1.5rem;
|
||||||
}
|
}
|
||||||
|
.cart-drawer__content.is-loading {
|
||||||
|
opacity: 0.5;
|
||||||
|
pointer-events: none;
|
||||||
|
}
|
||||||
.cart-drawer__empty {
|
.cart-drawer__empty {
|
||||||
text-align: center;
|
text-align: center;
|
||||||
padding: 3rem 1rem;
|
padding: 3rem 1rem;
|
||||||
color: #666;
|
color: #666;
|
||||||
}
|
}
|
||||||
|
|
||||||
.cart-drawer__empty.hidden {
|
.cart-drawer__empty.hidden {
|
||||||
display: none;
|
display: none;
|
||||||
}
|
}
|
||||||
|
|
||||||
.cart-drawer__items {
|
.cart-drawer__items {
|
||||||
display: flex;
|
display: flex;
|
||||||
flex-direction: column;
|
flex-direction: column;
|
||||||
gap: 1rem;
|
gap: 1rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
.cart-drawer__items.hidden {
|
.cart-drawer__items.hidden {
|
||||||
display: none;
|
display: none;
|
||||||
}
|
}
|
||||||
|
|
||||||
.cart-item {
|
|
||||||
display: flex;
|
|
||||||
gap: 1rem;
|
|
||||||
padding: 1rem;
|
|
||||||
border: 1px solid #e0e0e0;
|
|
||||||
border-radius: 8px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.cart-item__image {
|
|
||||||
width: 80px;
|
|
||||||
height: 80px;
|
|
||||||
-o-object-fit: cover;
|
|
||||||
object-fit: cover;
|
|
||||||
border-radius: 4px;
|
|
||||||
flex-shrink: 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
.cart-item__details {
|
|
||||||
flex: 1;
|
|
||||||
display: flex;
|
|
||||||
flex-direction: column;
|
|
||||||
gap: 0.5rem;
|
|
||||||
}
|
|
||||||
|
|
||||||
.cart-item__title {
|
|
||||||
font-weight: 600;
|
|
||||||
margin: 0;
|
|
||||||
font-size: 1rem;
|
|
||||||
}
|
|
||||||
|
|
||||||
.cart-item__variant {
|
|
||||||
font-size: 0.875rem;
|
|
||||||
color: #666;
|
|
||||||
margin: 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
.cart-item__price {
|
|
||||||
font-weight: bold;
|
|
||||||
color: #000;
|
|
||||||
}
|
|
||||||
|
|
||||||
.cart-item__quantity {
|
|
||||||
display: flex;
|
|
||||||
align-items: center;
|
|
||||||
gap: 0.5rem;
|
|
||||||
margin-top: auto;
|
|
||||||
}
|
|
||||||
|
|
||||||
.cart-item__qty-btn {
|
|
||||||
width: 28px;
|
|
||||||
height: 28px;
|
|
||||||
border: 1px solid #ddd;
|
|
||||||
background: #fff;
|
|
||||||
border-radius: 4px;
|
|
||||||
cursor: pointer;
|
|
||||||
display: flex;
|
|
||||||
align-items: center;
|
|
||||||
justify-content: center;
|
|
||||||
font-size: 1rem;
|
|
||||||
transition: background-color 0.2s;
|
|
||||||
}
|
|
||||||
|
|
||||||
.cart-item__qty-btn:hover:not(:disabled) {
|
|
||||||
background-color: #f5f5f5;
|
|
||||||
}
|
|
||||||
|
|
||||||
.cart-item__qty-btn:disabled {
|
|
||||||
opacity: 0.4;
|
|
||||||
cursor: not-allowed;
|
|
||||||
}
|
|
||||||
|
|
||||||
.cart-item__qty-value {
|
|
||||||
min-width: 30px;
|
|
||||||
text-align: center;
|
|
||||||
font-weight: 600;
|
|
||||||
}
|
|
||||||
|
|
||||||
.cart-item__remove {
|
|
||||||
background: none;
|
|
||||||
border: none;
|
|
||||||
color: #ff3333;
|
|
||||||
cursor: pointer;
|
|
||||||
padding: 0.25rem 0.5rem;
|
|
||||||
font-size: 0.875rem;
|
|
||||||
text-decoration: underline;
|
|
||||||
align-self: flex-start;
|
|
||||||
}
|
|
||||||
|
|
||||||
.cart-item__remove:hover {
|
|
||||||
color: #cc0000;
|
|
||||||
}
|
|
||||||
|
|
||||||
.cart-drawer__footer {
|
.cart-drawer__footer {
|
||||||
border-top: 1px solid #e0e0e0;
|
border-top: 1px solid #e0e0e0;
|
||||||
padding: 1.5rem;
|
padding: 1.5rem;
|
||||||
|
display: flex;
|
||||||
|
flex-direction: column;
|
||||||
|
gap: 1rem;
|
||||||
|
}
|
||||||
|
.cart-drawer__total {
|
||||||
|
display: flex;
|
||||||
|
justify-content: space-between;
|
||||||
|
align-items: center;
|
||||||
|
font-size: 1.125rem;
|
||||||
|
font-weight: bold;
|
||||||
|
}
|
||||||
|
.cart-drawer__total-label {
|
||||||
|
color: #000;
|
||||||
|
}
|
||||||
|
.cart-drawer__total-amount {
|
||||||
|
color: #000;
|
||||||
|
font-size: 1.25rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
.cart-drawer__checkout-btn {
|
.cart-drawer__checkout-btn {
|
||||||
width: 100%;
|
width: 100%;
|
||||||
font-family: "Open Sans", sans-serif;
|
font-family: "Open Sans", sans-serif;
|
||||||
|
|
@ -1470,26 +1459,95 @@ body.is-fullscreen {
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
transition: background-color 0.3s ease;
|
transition: background-color 0.3s ease;
|
||||||
}
|
}
|
||||||
|
|
||||||
.cart-drawer__checkout-btn:hover:not(:disabled) {
|
.cart-drawer__checkout-btn:hover:not(:disabled) {
|
||||||
background-color: #00e600;
|
background-color: #00e600;
|
||||||
}
|
}
|
||||||
|
|
||||||
.cart-drawer__checkout-btn:disabled {
|
.cart-drawer__checkout-btn:disabled {
|
||||||
opacity: 0.6;
|
opacity: 0.6;
|
||||||
cursor: not-allowed;
|
cursor: not-allowed;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Mobile responsiveness */
|
.cart-item {
|
||||||
@media (max-width: 768px) {
|
display: flex;
|
||||||
.cart-drawer__panel {
|
gap: 1rem;
|
||||||
max-width: 100%;
|
padding: 1rem;
|
||||||
}
|
border: 1px solid #e0e0e0;
|
||||||
|
border-radius: 8px;
|
||||||
}
|
}
|
||||||
/* Loading state */
|
.cart-item__image {
|
||||||
.cart-drawer__content.is-loading {
|
width: 80px;
|
||||||
opacity: 0.5;
|
height: 80px;
|
||||||
pointer-events: none;
|
-o-object-fit: cover;
|
||||||
|
object-fit: cover;
|
||||||
|
border-radius: 4px;
|
||||||
|
flex-shrink: 0;
|
||||||
|
}
|
||||||
|
.cart-item__details {
|
||||||
|
flex: 1;
|
||||||
|
display: flex;
|
||||||
|
flex-direction: column;
|
||||||
|
gap: 0.5rem;
|
||||||
|
}
|
||||||
|
.cart-item__title {
|
||||||
|
font-weight: 600;
|
||||||
|
margin: 0;
|
||||||
|
font-size: 1rem;
|
||||||
|
}
|
||||||
|
.cart-item__variant {
|
||||||
|
font-size: 0.875rem;
|
||||||
|
color: #666;
|
||||||
|
margin: 0;
|
||||||
|
}
|
||||||
|
.cart-item__price {
|
||||||
|
font-weight: bold;
|
||||||
|
color: #000;
|
||||||
|
}
|
||||||
|
.cart-item__quantity {
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
gap: 0.5rem;
|
||||||
|
margin-top: auto;
|
||||||
|
}
|
||||||
|
.cart-item__qty-btn {
|
||||||
|
width: 28px;
|
||||||
|
height: 28px;
|
||||||
|
border: 1px solid #000;
|
||||||
|
background: #fff;
|
||||||
|
color: #000;
|
||||||
|
border-radius: 4px;
|
||||||
|
cursor: pointer;
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
justify-content: center;
|
||||||
|
font-size: 1rem;
|
||||||
|
font-weight: bold;
|
||||||
|
transition: all 0.2s;
|
||||||
|
}
|
||||||
|
.cart-item__qty-btn:hover:not(:disabled) {
|
||||||
|
background-color: #000;
|
||||||
|
color: #fff;
|
||||||
|
}
|
||||||
|
.cart-item__qty-btn:disabled {
|
||||||
|
opacity: 0.4;
|
||||||
|
cursor: not-allowed;
|
||||||
|
}
|
||||||
|
.cart-item__qty-value {
|
||||||
|
min-width: 30px;
|
||||||
|
text-align: center;
|
||||||
|
font-weight: 600;
|
||||||
|
}
|
||||||
|
.cart-item__remove {
|
||||||
|
background: none;
|
||||||
|
border: none;
|
||||||
|
color: #ff3333;
|
||||||
|
cursor: pointer;
|
||||||
|
padding: 0.25rem 0.5rem;
|
||||||
|
font-size: 0.875rem;
|
||||||
|
text-decoration: underline;
|
||||||
|
align-self: flex-start;
|
||||||
|
}
|
||||||
|
.cart-item__remove:hover {
|
||||||
|
color: #cc0000;
|
||||||
}
|
}
|
||||||
|
|
||||||
[data-template=subscription-newsletter] main {
|
[data-template=subscription-newsletter] main {
|
||||||
|
|
|
||||||
File diff suppressed because one or more lines are too long
|
|
@ -8,6 +8,10 @@
|
||||||
const itemsContainer = document.querySelector('[data-cart-items]');
|
const itemsContainer = document.querySelector('[data-cart-items]');
|
||||||
const checkoutBtn = document.querySelector('[data-cart-checkout]');
|
const checkoutBtn = document.querySelector('[data-cart-checkout]');
|
||||||
const closeButtons = document.querySelectorAll('[data-cart-close]');
|
const closeButtons = document.querySelectorAll('[data-cart-close]');
|
||||||
|
const totalDisplay = document.querySelector('[data-cart-total]');
|
||||||
|
|
||||||
|
// Get translated text
|
||||||
|
const removeText = drawer.dataset.textRemove || 'Remove';
|
||||||
|
|
||||||
let currentCart = null;
|
let currentCart = null;
|
||||||
let cartInstance = null;
|
let cartInstance = null;
|
||||||
|
|
@ -59,11 +63,32 @@
|
||||||
document.body.style.overflow = '';
|
document.body.style.overflow = '';
|
||||||
}
|
}
|
||||||
|
|
||||||
|
function calculateTotal() {
|
||||||
|
if (!currentCart || !currentCart.lines) return 0;
|
||||||
|
|
||||||
|
return currentCart.lines.edges.reduce((total, edge) => {
|
||||||
|
const item = edge.node;
|
||||||
|
const price = parseFloat(item.merchandise.price.amount);
|
||||||
|
const quantity = item.quantity;
|
||||||
|
return total + (price * quantity);
|
||||||
|
}, 0);
|
||||||
|
}
|
||||||
|
|
||||||
|
function formatPrice(amount, currency = 'EUR') {
|
||||||
|
return new Intl.NumberFormat('fr-FR', {
|
||||||
|
style: 'currency',
|
||||||
|
currency: currency
|
||||||
|
}).format(amount);
|
||||||
|
}
|
||||||
|
|
||||||
function renderCart() {
|
function renderCart() {
|
||||||
if (!currentCart || !currentCart.lines || currentCart.lines.edges.length === 0) {
|
if (!currentCart || !currentCart.lines || currentCart.lines.edges.length === 0) {
|
||||||
emptyState.classList.remove('hidden');
|
emptyState.classList.remove('hidden');
|
||||||
itemsContainer.classList.add('hidden');
|
itemsContainer.classList.add('hidden');
|
||||||
checkoutBtn.disabled = true;
|
checkoutBtn.disabled = true;
|
||||||
|
if (totalDisplay) {
|
||||||
|
totalDisplay.textContent = '0,00 €';
|
||||||
|
}
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
@ -71,6 +96,13 @@
|
||||||
itemsContainer.classList.remove('hidden');
|
itemsContainer.classList.remove('hidden');
|
||||||
checkoutBtn.disabled = false;
|
checkoutBtn.disabled = false;
|
||||||
|
|
||||||
|
// Calculate and display total
|
||||||
|
const total = calculateTotal();
|
||||||
|
const currency = currentCart.lines.edges[0]?.node.merchandise.price.currencyCode || 'EUR';
|
||||||
|
if (totalDisplay) {
|
||||||
|
totalDisplay.textContent = formatPrice(total, currency);
|
||||||
|
}
|
||||||
|
|
||||||
// Render cart items
|
// Render cart items
|
||||||
itemsContainer.innerHTML = currentCart.lines.edges.map(edge => {
|
itemsContainer.innerHTML = currentCart.lines.edges.map(edge => {
|
||||||
const item = edge.node;
|
const item = edge.node;
|
||||||
|
|
@ -81,7 +113,7 @@
|
||||||
<div class="cart-item__details">
|
<div class="cart-item__details">
|
||||||
<h4 class="cart-item__title">${merchandise.product.title}</h4>
|
<h4 class="cart-item__title">${merchandise.product.title}</h4>
|
||||||
${merchandise.title !== 'Default Title' ? `<p class="cart-item__variant">${merchandise.title}</p>` : ''}
|
${merchandise.title !== 'Default Title' ? `<p class="cart-item__variant">${merchandise.title}</p>` : ''}
|
||||||
<p class="cart-item__price">${merchandise.price.amount} ${merchandise.price.currencyCode}</p>
|
<p class="cart-item__price">${formatPrice(parseFloat(merchandise.price.amount), merchandise.price.currencyCode)}</p>
|
||||||
|
|
||||||
<div class="cart-item__quantity">
|
<div class="cart-item__quantity">
|
||||||
<button class="cart-item__qty-btn" data-action="decrease" data-line-id="${item.id}">−</button>
|
<button class="cart-item__qty-btn" data-action="decrease" data-line-id="${item.id}">−</button>
|
||||||
|
|
@ -90,7 +122,7 @@
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<button class="cart-item__remove" data-action="remove" data-line-id="${item.id}">
|
<button class="cart-item__remove" data-action="remove" data-line-id="${item.id}">
|
||||||
Retirer
|
${removeText}
|
||||||
</button>
|
</button>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
|
||||||
|
|
@ -21,6 +21,16 @@
|
||||||
const variantId = addToCartBtn.dataset.variantId;
|
const variantId = addToCartBtn.dataset.variantId;
|
||||||
const stockDisplay = document.querySelector('[data-product-stock]');
|
const stockDisplay = document.querySelector('[data-product-stock]');
|
||||||
|
|
||||||
|
// Get translated texts
|
||||||
|
const texts = {
|
||||||
|
add: addToCartBtn.dataset.textAdd || 'Add to cart',
|
||||||
|
adding: addToCartBtn.dataset.textAdding || 'Adding...',
|
||||||
|
added: addToCartBtn.dataset.textAdded || 'Added! ✓',
|
||||||
|
error: addToCartBtn.dataset.textError || 'Error - Try again',
|
||||||
|
outOfStock: addToCartBtn.dataset.textOutOfStock || 'Out of stock',
|
||||||
|
inStock: addToCartBtn.dataset.textInStock || 'In stock'
|
||||||
|
};
|
||||||
|
|
||||||
// Load product data to check availability
|
// Load product data to check availability
|
||||||
async function loadProductData() {
|
async function loadProductData() {
|
||||||
try {
|
try {
|
||||||
|
|
@ -49,16 +59,16 @@
|
||||||
// Update button based on availability
|
// Update button based on availability
|
||||||
if (!variant.availableForSale) {
|
if (!variant.availableForSale) {
|
||||||
addToCartBtn.disabled = true;
|
addToCartBtn.disabled = true;
|
||||||
addToCartBtn.textContent = 'Rupture de stock';
|
addToCartBtn.textContent = texts.outOfStock;
|
||||||
addToCartBtn.classList.add('out-of-stock');
|
addToCartBtn.classList.add('out-of-stock');
|
||||||
if (stockDisplay) {
|
if (stockDisplay) {
|
||||||
stockDisplay.textContent = 'Rupture de stock';
|
stockDisplay.textContent = texts.outOfStock;
|
||||||
stockDisplay.classList.add('out-of-stock');
|
stockDisplay.classList.add('out-of-stock');
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
// Show in stock
|
// Show in stock
|
||||||
if (stockDisplay) {
|
if (stockDisplay) {
|
||||||
stockDisplay.textContent = 'En stock';
|
stockDisplay.textContent = texts.inStock;
|
||||||
stockDisplay.classList.add('in-stock');
|
stockDisplay.classList.add('in-stock');
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
@ -78,14 +88,14 @@
|
||||||
// Disable button during request
|
// Disable button during request
|
||||||
addToCartBtn.disabled = true;
|
addToCartBtn.disabled = true;
|
||||||
const originalText = addToCartBtn.textContent;
|
const originalText = addToCartBtn.textContent;
|
||||||
addToCartBtn.textContent = 'Ajout en cours...';
|
addToCartBtn.textContent = texts.adding;
|
||||||
|
|
||||||
try {
|
try {
|
||||||
const variantId = this.dataset.variantId;
|
const variantId = this.dataset.variantId;
|
||||||
const cartResult = await cart.addToCart(variantId, 1);
|
const cartResult = await cart.addToCart(variantId, 1);
|
||||||
|
|
||||||
// Show success feedback
|
// Show success feedback
|
||||||
addToCartBtn.textContent = 'Ajouté ! ✓';
|
addToCartBtn.textContent = texts.added;
|
||||||
addToCartBtn.classList.add('success');
|
addToCartBtn.classList.add('success');
|
||||||
|
|
||||||
// Dispatch event to open cart drawer
|
// Dispatch event to open cart drawer
|
||||||
|
|
@ -104,7 +114,7 @@
|
||||||
console.error('Error adding to cart:', error);
|
console.error('Error adding to cart:', error);
|
||||||
|
|
||||||
// Show error feedback
|
// Show error feedback
|
||||||
addToCartBtn.textContent = 'Erreur - Réessayer';
|
addToCartBtn.textContent = texts.error;
|
||||||
addToCartBtn.classList.add('error');
|
addToCartBtn.classList.add('error');
|
||||||
|
|
||||||
// Re-enable button after delay
|
// Re-enable button after delay
|
||||||
|
|
|
||||||
|
|
@ -10,26 +10,7 @@ Description: <p>T-shirt de soutien à Index, 100% coton</p>
|
||||||
|
|
||||||
----
|
----
|
||||||
|
|
||||||
Details:
|
Details: <p>Organic cotton t-shirt with screen printing.<br>Print on the front: "INDEX" logo, 10 cm wide.</p><ul><li><p>100% organic cotton</p></li><li><p>Weight: 180 g/m²</p></li><li><p>Single jersey with very soft feel</p></li><li><p>Excellent durability over time</p></li><li><p>Internal neckband</p></li><li><p>Double stitching on sleeves and bottom hem</p></li></ul><p>Shipping only via Mondial Relay to France, Belgium and Switzerland.</p>
|
||||||
|
|
||||||
[
|
|
||||||
{
|
|
||||||
"content": {
|
|
||||||
"text": "<p>100% cotton</p>"
|
|
||||||
},
|
|
||||||
"id": "detail1",
|
|
||||||
"isHidden": false,
|
|
||||||
"type": "text"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"content": {
|
|
||||||
"text": "<p>Lorem ipsum dolor sit amet</p>"
|
|
||||||
},
|
|
||||||
"id": "detail2",
|
|
||||||
"isHidden": false,
|
|
||||||
"type": "text"
|
|
||||||
}
|
|
||||||
]
|
|
||||||
|
|
||||||
----
|
----
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -13,7 +13,20 @@ return [
|
||||||
'backToShop' => 'Back to shop',
|
'backToShop' => 'Back to shop',
|
||||||
'supportText' => 'To support us, you can also',
|
'supportText' => 'To support us, you can also',
|
||||||
'makeDonation' => 'make a donation',
|
'makeDonation' => 'make a donation',
|
||||||
|
|
||||||
|
// Shop / Cart
|
||||||
'addToCart' => 'Add to cart',
|
'addToCart' => 'Add to cart',
|
||||||
|
'cart' => 'Cart',
|
||||||
|
'cartEmpty' => 'Your cart is empty',
|
||||||
|
'total' => 'Total',
|
||||||
|
'checkout' => 'Checkout',
|
||||||
|
'remove' => 'Remove',
|
||||||
|
'inStock' => 'In stock',
|
||||||
|
'outOfStock' => 'Out of stock',
|
||||||
|
'addingToCart' => 'Adding...',
|
||||||
|
'addedToCart' => 'Added! ✓',
|
||||||
|
'errorAddToCart' => 'Error - Try again',
|
||||||
|
'closeCart' => 'Close cart',
|
||||||
|
|
||||||
// Blueprints - Home
|
// Blueprints - Home
|
||||||
'home.title' => 'Home',
|
'home.title' => 'Home',
|
||||||
|
|
|
||||||
|
|
@ -13,7 +13,20 @@ return [
|
||||||
'backToShop' => 'Retour à la boutique',
|
'backToShop' => 'Retour à la boutique',
|
||||||
'supportText' => 'Pour nous soutenir, vous pouvez aussi',
|
'supportText' => 'Pour nous soutenir, vous pouvez aussi',
|
||||||
'makeDonation' => 'faire un don',
|
'makeDonation' => 'faire un don',
|
||||||
|
|
||||||
|
// Shop / Cart
|
||||||
'addToCart' => 'Ajouter au panier',
|
'addToCart' => 'Ajouter au panier',
|
||||||
|
'cart' => 'Panier',
|
||||||
|
'cartEmpty' => 'Votre panier est vide',
|
||||||
|
'total' => 'Total',
|
||||||
|
'checkout' => 'Passer commande',
|
||||||
|
'remove' => 'Retirer',
|
||||||
|
'inStock' => 'En stock',
|
||||||
|
'outOfStock' => 'Rupture de stock',
|
||||||
|
'addingToCart' => 'Ajout en cours...',
|
||||||
|
'addedToCart' => 'Ajouté ! ✓',
|
||||||
|
'errorAddToCart' => 'Erreur - Réessayer',
|
||||||
|
'closeCart' => 'Fermer le panier',
|
||||||
|
|
||||||
// Blueprints - Home
|
// Blueprints - Home
|
||||||
'home.title' => 'Accueil',
|
'home.title' => 'Accueil',
|
||||||
|
|
|
||||||
|
|
@ -8,78 +8,13 @@
|
||||||
data-shopify-add-to-cart
|
data-shopify-add-to-cart
|
||||||
data-product-id="15689076179317"
|
data-product-id="15689076179317"
|
||||||
data-variant-id=""
|
data-variant-id=""
|
||||||
|
data-text-add="<?= t('addToCart') ?>"
|
||||||
|
data-text-adding="<?= t('addingToCart') ?>"
|
||||||
|
data-text-added="<?= t('addedToCart') ?>"
|
||||||
|
data-text-error="<?= t('errorAddToCart') ?>"
|
||||||
|
data-text-out-of-stock="<?= t('outOfStock') ?>"
|
||||||
|
data-text-in-stock="<?= t('inStock') ?>"
|
||||||
>
|
>
|
||||||
Ajouter au panier
|
<?= t('addToCart') ?>
|
||||||
</button>
|
</button>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<style>
|
|
||||||
.product-purchase {
|
|
||||||
margin-top: 2rem;
|
|
||||||
}
|
|
||||||
|
|
||||||
.product-stock-info {
|
|
||||||
margin-bottom: 1rem;
|
|
||||||
}
|
|
||||||
|
|
||||||
.stock-status {
|
|
||||||
font-size: 0.9rem;
|
|
||||||
font-weight: 600;
|
|
||||||
margin: 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
.stock-status.in-stock {
|
|
||||||
color: #00cc00;
|
|
||||||
}
|
|
||||||
|
|
||||||
.stock-status.low-stock {
|
|
||||||
color: #ff9900;
|
|
||||||
}
|
|
||||||
|
|
||||||
.stock-status.out-of-stock {
|
|
||||||
color: #ff3333;
|
|
||||||
}
|
|
||||||
|
|
||||||
.btn-add-to-cart {
|
|
||||||
font-family: "Open Sans", sans-serif;
|
|
||||||
font-weight: bold;
|
|
||||||
font-size: 1rem;
|
|
||||||
color: #000000;
|
|
||||||
background-color: #00ff00;
|
|
||||||
border: none;
|
|
||||||
border-radius: 40px;
|
|
||||||
padding: 12px 34px;
|
|
||||||
cursor: pointer;
|
|
||||||
transition: background-color 0.3s ease;
|
|
||||||
width: 100%;
|
|
||||||
max-width: 300px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.btn-add-to-cart:hover:not(:disabled) {
|
|
||||||
background-color: #00e600;
|
|
||||||
}
|
|
||||||
|
|
||||||
.btn-add-to-cart:focus {
|
|
||||||
outline: 2px solid #00e600;
|
|
||||||
outline-offset: 2px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.btn-add-to-cart:disabled {
|
|
||||||
opacity: 0.6;
|
|
||||||
cursor: not-allowed;
|
|
||||||
}
|
|
||||||
|
|
||||||
.btn-add-to-cart.success {
|
|
||||||
background-color: #00cc00;
|
|
||||||
}
|
|
||||||
|
|
||||||
.btn-add-to-cart.error {
|
|
||||||
background-color: #ff3333;
|
|
||||||
color: #ffffff;
|
|
||||||
}
|
|
||||||
|
|
||||||
.btn-add-to-cart.out-of-stock {
|
|
||||||
background-color: #cccccc;
|
|
||||||
color: #666666;
|
|
||||||
}
|
|
||||||
</style>
|
|
||||||
32
site/snippets/cart-drawer.php
Normal file
32
site/snippets/cart-drawer.php
Normal file
|
|
@ -0,0 +1,32 @@
|
||||||
|
<div id="cart-drawer" class="cart-drawer" data-text-remove="<?= t('remove') ?>">
|
||||||
|
<div class="cart-drawer__overlay" data-cart-close></div>
|
||||||
|
<div class="cart-drawer__panel">
|
||||||
|
<div class="cart-drawer__header">
|
||||||
|
<h3><?= t('cart') ?></h3>
|
||||||
|
<button class="cart-drawer__close" data-cart-close aria-label="<?= t('closeCart') ?>">
|
||||||
|
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2">
|
||||||
|
<line x1="18" y1="6" x2="6" y2="18"></line>
|
||||||
|
<line x1="6" y1="6" x2="18" y2="18"></line>
|
||||||
|
</svg>
|
||||||
|
</button>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="cart-drawer__content">
|
||||||
|
<div class="cart-drawer__empty" data-cart-empty>
|
||||||
|
<p><?= t('cartEmpty') ?></p>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="cart-drawer__items" data-cart-items></div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="cart-drawer__footer">
|
||||||
|
<div class="cart-drawer__total">
|
||||||
|
<span class="cart-drawer__total-label"><?= t('total') ?></span>
|
||||||
|
<span class="cart-drawer__total-amount" data-cart-total>0,00 €</span>
|
||||||
|
</div>
|
||||||
|
<button class="cart-drawer__checkout-btn" data-cart-checkout>
|
||||||
|
<?= t('checkout') ?>
|
||||||
|
</button>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
@ -1,32 +1,4 @@
|
||||||
<!-- Cart Drawer -->
|
<?php snippet('cart-drawer') ?>
|
||||||
<div id="cart-drawer" class="cart-drawer">
|
|
||||||
<div class="cart-drawer__overlay" data-cart-close></div>
|
|
||||||
<div class="cart-drawer__panel">
|
|
||||||
<div class="cart-drawer__header">
|
|
||||||
<h3>Panier</h3>
|
|
||||||
<button class="cart-drawer__close" data-cart-close aria-label="Fermer le panier">
|
|
||||||
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2">
|
|
||||||
<line x1="18" y1="6" x2="6" y2="18"></line>
|
|
||||||
<line x1="6" y1="6" x2="18" y2="18"></line>
|
|
||||||
</svg>
|
|
||||||
</button>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div class="cart-drawer__content">
|
|
||||||
<div class="cart-drawer__empty" data-cart-empty>
|
|
||||||
<p>Votre panier est vide</p>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div class="cart-drawer__items" data-cart-items></div>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div class="cart-drawer__footer">
|
|
||||||
<button class="cart-drawer__checkout-btn" data-cart-checkout>
|
|
||||||
Passer commande
|
|
||||||
</button>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<footer id="site-footer">
|
<footer id="site-footer">
|
||||||
<div class="site-footer__container">
|
<div class="site-footer__container">
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue