This commit is contained in:
giles 2024-09-22 13:33:37 +01:00
parent 54140076fb
commit afd0b33a4c
2 changed files with 31 additions and 33 deletions

View File

@ -22,39 +22,7 @@
{{/is}} {{/is}}
<h1 class="single-title">{{title}}</h1> <h1 class="single-title">{{title}}</h1>
{{> "shop-top"}}
<div id="total-rose-ash-shop-ws"></div>
<div hx-ext="ws" ws-connect="shop-ws/ws-total"></div>
<div
id="total-rose-ash-shop"
hx-gett="shop/orders/total"
hx-trigger="load delay:1ms, configured from:body, ordered from:body delay:1ms, paid from:body"
hx-swap="innerHTML"
>
</div>
<div
id="order-form-rose-ash-shop"
hx-get="order"
hx-trigger="load delay:1ms"
hx-on::config-request = "event.detail.path = !(new URLSearchParams(window.location.search).get('order')) ? 'shop/order/?embed=true' : 'shop/order/?embed=true&orderId=' + new URLSearchParams(window.location.search).get('order');"
hx-swap="outerHTML"
>
<div class="spinner-border" role="status">
<span class="sr-only">Loading...</span>
</div>
</div>
<div
id="order-detail-rose-ash-shop"
hx-get="order"
hx-trigger="load delay:1ms, paid from:body"
hx-on::config-request="event.detail.path = new URLSearchParams(window.location.search).get('order') ? 'shop/order/' + new URLSearchParams(window.location.search).get('order')+ '/?embed=true' : null; //6a919002-94eb-467d-a226-5dd05b7f44a3 '"
hx-on::confirm = " if (!new URLSearchParams(window.location.search).get('order')) { event.preventDefault(); }"
hx-swap="innerHTML"
>
</div>
{{#if custom_excerpt}} {{#if custom_excerpt}}
<div class="single-excerpt"> <div class="single-excerpt">
{{custom_excerpt}} {{custom_excerpt}}

30
partials/shop-top.hbs Normal file
View File

@ -0,0 +1,30 @@
<div id="total-rose-ash-shop-ws"></div>
<div hx-ext="ws" ws-connect="shop-ws/ws-total"></div>
<div
id="order-form-rose-ash-shop"
hx-get="order"
hx-trigger="load delay:1ms"
hx-on::config-request = "
event.detail.path = !(
new URLSearchParams(window.location.search
).get('order'))
? 'shop/order/?embed=true'
: 'shop/order/?embed=true&orderId=' + new URLSearchParams(window.location.search).get('order');
";
hx-swap="outerHTML"
>
<div class="spinner-border" role="status">
<span class="sr-only">Loading...</span>
</div>
</div>
<div
id="order-detail-rose-ash-shop"
hx-get="order"
hx-trigger="load delay:1ms"
hx-on::config-request="event.detail.path = new URLSearchParams(window.location.search).get('order') ? 'shop/order/' + new URLSearchParams(window.location.search).get('order')+ '/?embed=true' : null; //6a919002-94eb-467d-a226-5dd05b7f44a3 '"
hx-on::confirm = " if (!new URLSearchParams(window.location.search).get('order')) { event.preventDefault(); }"
hx-swap="innerHTML"
>
</div>