-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsection-rendering-api.liquid
53 lines (45 loc) · 1.37 KB
/
section-rendering-api.liquid
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
<div id="cart-section">
{% section 'cart-template' %}
</div>
<button id="add-to-cart" data-product-id="{{ product.id }}">
Add to Cart
</button>
<script>
document.getElementById('add-to-cart').addEventListener('click', function() {
const productId = this.getAttribute('data-product-id');
// Add the product to the cart via AJAX
fetch('/cart/add.js', {
method: 'POST',
headers: {
'Content-Type': 'application/json',
},
body: JSON.stringify({
id: productId,
quantity: 1,
}),
})
.then(response => response.json())
.then(() => {
// Fetch the updated cart section
fetch('/?sections=cart-template')
.then(response => response.json())
.then(data => {
// Update the cart section with the new HTML
document.getElementById('cart-section').innerHTML = data['cart-template'];
});
})
.catch(error => {
console.error('Error adding to cart:', error);
});
});
</script>
{% comment %} Source: https://blog.devmoek.com/what-is-section-rendering-api-in-shopify/ {% endcomment %}
{% comment %} Shopify section rendering API, parse content with Domparser {% endcomment %}
<script>
fetch('?section_id=cart-main')
.then(res => res.text())
.then(data => {
let temp = new DOMParser().parseFromString(data, 'text/html')
console.log(temp.querySelector("#shopify-section-cart-main").innerHTML)
})
</script>