mock events saved to db
This commit is contained in:
@@ -0,0 +1,136 @@
|
||||
{{/* [ .Shops, .SelectedPlatform, .SelectedShopID, .Listings ] */}}
|
||||
|
||||
{{- $acctID := .Identity.Account.AccountID -}}
|
||||
{{- $shops := .Shops }}
|
||||
{{- if not $shops }}
|
||||
{{- $shops = .Accounts.GetMockShops $acctID -}}
|
||||
{{- end }}
|
||||
{{- $selectedPlatform := .SelectedPlatform }}
|
||||
{{- $selectedShopID := .SelectedShopID }}
|
||||
{{- if not $selectedPlatform | or (not $selectedShopID) }}
|
||||
{{- $formSelections := .Accounts.GetMockEventFormValues $acctID }}
|
||||
{{- $selectedPlatform = $formSelections.RefundPlatform }}
|
||||
{{- $selectedShopID = $formSelections.RefundShopID }}
|
||||
{{- end }}
|
||||
{{- $listings := .Listings }}
|
||||
{{- if $selectedShopID }}
|
||||
{{ $listings = .Accounts.GetMockListingsForShop $acctID $selectedPlatform $selectedShopID }}
|
||||
{{- end }}
|
||||
|
||||
|
||||
|
||||
{{/* REFUNDS */}}
|
||||
{{- define "refund-accordion-header" }}
|
||||
<h2 class="inline-block">
|
||||
Refund
|
||||
</h2>
|
||||
{{ end }}
|
||||
|
||||
{{- define "refund-accordion-body" }}
|
||||
{{ $acctID := .Identity.Account.AccountID }}
|
||||
{{ $selectedPlatform := .SelectedPlatform }}
|
||||
{{ $selectedShopID := .SelectedShopID }}
|
||||
{{ $listings := .Listings }}
|
||||
|
||||
{{/* form updater*/}}
|
||||
<div
|
||||
hidden
|
||||
hx-trigger="sse:accounts_{{$acctID}}_simulations_refund"
|
||||
hx-get="/ui/accounts/{{$acctID}}/simulations/refund-form"
|
||||
hx-select="#refund-form"
|
||||
hx-target="#refund-form"
|
||||
>
|
||||
</div>
|
||||
|
||||
<form
|
||||
id="refund-form"
|
||||
class="flex flex-col items-center gap-[0.75em]"
|
||||
hx-post="/api/accounts/{{$acctID}}/simulations/refund"
|
||||
hx-swap="none"
|
||||
hx-vals='js:{
|
||||
"platform": {{printf "%q" $selectedPlatform}},
|
||||
"shop-id": {{printf "%q" $selectedShopID}},
|
||||
}'
|
||||
>
|
||||
<select
|
||||
name="shop-id"
|
||||
class="bg-background"
|
||||
required
|
||||
hx-put="/api/accounts/{{$acctID}}/simulations/refund/form/shop"
|
||||
hx-vals='js:{
|
||||
platform: event.target.value.replace(/-[^ ]*/, ""),
|
||||
"shop-id": event.target.value.replace(/[^ -]*-/, "")
|
||||
}'
|
||||
>
|
||||
<option disabled selected>
|
||||
- Select A Shop -
|
||||
</option>
|
||||
{{- range $shop := .Shops }}
|
||||
<option
|
||||
value="{{$shop.Platform}}-{{$shop.ShopID}}"
|
||||
{{- if and
|
||||
(eq $shop.Platform $selectedPlatform)
|
||||
(eq $shop.ShopID $selectedShopID)
|
||||
}}
|
||||
selected
|
||||
{{- end }}
|
||||
>
|
||||
{{ $shop.Name }}
|
||||
</option>
|
||||
{{- end }}
|
||||
</select>
|
||||
|
||||
<select
|
||||
name="listing-id"
|
||||
class="bg-background"
|
||||
required
|
||||
>
|
||||
{{- if $listings }}
|
||||
<option disabled selected>
|
||||
- Select A Listing -
|
||||
</option>
|
||||
{{- range $listing := $listings }}
|
||||
<option value="{{$listing.ListingID}}">
|
||||
{{ $listing.Name }} - {{ $listing.SKU }}
|
||||
</option>
|
||||
{{- end }}
|
||||
{{- else }}
|
||||
<option disabled selected>
|
||||
- No Listings Found -
|
||||
</option>
|
||||
{{- end }}
|
||||
</select>
|
||||
|
||||
<input
|
||||
class="p-[0.5em] border-medium border-border rounded-lg bg-background"
|
||||
type="number"
|
||||
min="1"
|
||||
max="1000000000"
|
||||
name="count"
|
||||
value="0"
|
||||
required
|
||||
/>
|
||||
|
||||
<div>
|
||||
{{ component "button"
|
||||
"Text" "Submit"
|
||||
"Background" true
|
||||
"Class" "m-0"
|
||||
}}
|
||||
</div>
|
||||
</form>
|
||||
{{ end }}
|
||||
|
||||
{{ component "accordion"
|
||||
"Name" "simulate"
|
||||
"Shops" $shops
|
||||
"SelectedPlatform" $selectedPlatform
|
||||
"SelectedShopID" $selectedShopID
|
||||
"Listings" $listings
|
||||
"Class" `
|
||||
mx-[1em]
|
||||
mb-[1em]
|
||||
`
|
||||
"#accordion-header" "refund-accordion-header"
|
||||
"#accordion-body" "refund-accordion-body"
|
||||
}}
|
||||
@@ -0,0 +1,136 @@
|
||||
{{/* [ .Shops, .SelectedPlatform, .SelectedShopID, .Listings ] */}}
|
||||
|
||||
{{- $acctID := .Identity.Account.AccountID -}}
|
||||
{{- $shops := .Shops }}
|
||||
{{- if not $shops }}
|
||||
{{- $shops = .Accounts.GetMockShops $acctID -}}
|
||||
{{- end }}
|
||||
{{- $selectedPlatform := .SelectedPlatform }}
|
||||
{{- $selectedShopID := .SelectedShopID }}
|
||||
{{- if not $selectedPlatform | or (not $selectedShopID) }}
|
||||
{{- $formSelections := .Accounts.GetMockEventFormValues $acctID }}
|
||||
{{- $selectedPlatform = $formSelections.SalePlatform }}
|
||||
{{- $selectedShopID = $formSelections.SaleShopID }}
|
||||
{{- end }}
|
||||
{{- $listings := .Listings }}
|
||||
{{- if $selectedShopID }}
|
||||
{{ $listings = .Accounts.GetMockListingsForShop $acctID $selectedPlatform $selectedShopID }}
|
||||
{{- end }}
|
||||
|
||||
|
||||
|
||||
{{/* SALES */}}
|
||||
{{- define "sale-accordion-header" }}
|
||||
<h2 class="inline-block">
|
||||
Sale
|
||||
</h2>
|
||||
{{ end }}
|
||||
|
||||
{{- define "sale-accordion-body" }}
|
||||
{{ $acctID := .Identity.Account.AccountID }}
|
||||
{{ $selectedPlatform := .SelectedPlatform }}
|
||||
{{ $selectedShopID := .SelectedShopID }}
|
||||
{{ $listings := .Listings }}
|
||||
|
||||
{{/* form updater*/}}
|
||||
<div
|
||||
hidden
|
||||
hx-trigger="sse:accounts_{{$acctID}}_simulations_sale"
|
||||
hx-get="/ui/accounts/{{$acctID}}/simulations/sales-form"
|
||||
hx-select="#sales-form"
|
||||
hx-target="#sales-form"
|
||||
>
|
||||
</div>
|
||||
|
||||
<form
|
||||
id="sales-form"
|
||||
class="flex flex-col items-center gap-[0.75em]"
|
||||
hx-post="/api/accounts/{{$acctID}}/simulations/sale"
|
||||
hx-swap="none"
|
||||
hx-vals='js:{
|
||||
"platform": {{printf "%q" $selectedPlatform}},
|
||||
"shop-id": {{printf "%q" $selectedShopID}},
|
||||
}'
|
||||
>
|
||||
<select
|
||||
name="shop-id"
|
||||
class="bg-background"
|
||||
required
|
||||
hx-put="/api/accounts/{{$acctID}}/simulations/sale/form/shop"
|
||||
hx-vals='js:{
|
||||
platform: event.target.value.replace(/-[^ ]*/, ""),
|
||||
"shop-id": event.target.value.replace(/[^ -]*-/, "")
|
||||
}'
|
||||
>
|
||||
<option disabled selected>
|
||||
- Select A Shop -
|
||||
</option>
|
||||
{{- range $shop := .Shops }}
|
||||
<option
|
||||
value="{{$shop.Platform}}-{{$shop.ShopID}}"
|
||||
{{- if and
|
||||
(eq $shop.Platform $selectedPlatform)
|
||||
(eq $shop.ShopID $selectedShopID)
|
||||
}}
|
||||
selected
|
||||
{{- end }}
|
||||
>
|
||||
{{ $shop.Name }}
|
||||
</option>
|
||||
{{- end }}
|
||||
</select>
|
||||
|
||||
<select
|
||||
name="listing-id"
|
||||
class="bg-background"
|
||||
required
|
||||
>
|
||||
{{- if $listings }}
|
||||
<option disabled selected>
|
||||
- Select A Listing -
|
||||
</option>
|
||||
{{- range $listing := $listings }}
|
||||
<option value="{{$listing.ListingID}}">
|
||||
{{ $listing.Name }} - {{ $listing.SKU }}
|
||||
</option>
|
||||
{{- end }}
|
||||
{{- else }}
|
||||
<option disabled selected>
|
||||
- No Listings Found -
|
||||
</option>
|
||||
{{- end }}
|
||||
</select>
|
||||
|
||||
<input
|
||||
class="p-[0.5em] border-medium border-border rounded-lg bg-background"
|
||||
type="number"
|
||||
min="1"
|
||||
max="1000000000"
|
||||
name="count"
|
||||
value="0"
|
||||
required
|
||||
/>
|
||||
|
||||
<div>
|
||||
{{ component "button"
|
||||
"Text" "Submit"
|
||||
"Background" true
|
||||
"Class" "m-0"
|
||||
}}
|
||||
</div>
|
||||
</form>
|
||||
{{ end }}
|
||||
|
||||
{{ component "accordion"
|
||||
"Name" "simulate"
|
||||
"Shops" $shops
|
||||
"SelectedPlatform" $selectedPlatform
|
||||
"SelectedShopID" $selectedShopID
|
||||
"Listings" $listings
|
||||
"Class" `
|
||||
mx-[1em]
|
||||
mb-[1em]
|
||||
`
|
||||
"#accordion-header" "sale-accordion-header"
|
||||
"#accordion-body" "sale-accordion-body"
|
||||
}}
|
||||
+136
@@ -0,0 +1,136 @@
|
||||
{{/* [ .Shops, .SelectedPlatform, .SelectedShopID, .Listings ] */}}
|
||||
|
||||
{{- $acctID := .Identity.Account.AccountID -}}
|
||||
{{- $shops := .Shops }}
|
||||
{{- if not $shops }}
|
||||
{{- $shops = .Accounts.GetMockShops $acctID -}}
|
||||
{{- end }}
|
||||
{{- $selectedPlatform := .SelectedPlatform }}
|
||||
{{- $selectedShopID := .SelectedShopID }}
|
||||
{{- if not $selectedPlatform | or (not $selectedShopID) }}
|
||||
{{- $formSelections := .Accounts.GetMockEventFormValues $acctID }}
|
||||
{{- $selectedPlatform = $formSelections.CountPlatform }}
|
||||
{{- $selectedShopID = $formSelections.CountShopID }}
|
||||
{{- end }}
|
||||
{{- $listings := .Listings }}
|
||||
{{- if $selectedShopID }}
|
||||
{{ $listings = .Accounts.GetMockListingsForShop $acctID $selectedPlatform $selectedShopID }}
|
||||
{{- end }}
|
||||
|
||||
|
||||
|
||||
{{/* SET INVENTORY */}}
|
||||
{{- define "set-inventory-accordion-header" }}
|
||||
<h2 class="inline-block">
|
||||
Set Inventory
|
||||
</h2>
|
||||
{{ end }}
|
||||
|
||||
{{- define "set-inventory-accordion-body" }}
|
||||
{{ $acctID := .Identity.Account.AccountID }}
|
||||
{{ $selectedPlatform := .SelectedPlatform }}
|
||||
{{ $selectedShopID := .SelectedShopID }}
|
||||
{{ $listings := .Listings }}
|
||||
|
||||
{{/* form updater*/}}
|
||||
<div
|
||||
hidden
|
||||
hx-trigger="sse:accounts_{{$acctID}}_simulations_shops"
|
||||
hx-get="/ui/accounts/{{$acctID}}/simulations/set-inventory-form"
|
||||
hx-select="#set-inventory-form"
|
||||
hx-target="#set-inventory-form"
|
||||
>
|
||||
</div>
|
||||
|
||||
<form
|
||||
id="set-inventory-form"
|
||||
class="flex flex-col items-center gap-[0.75em]"
|
||||
hx-put="/api/accounts/{{$acctID}}/simulations/shops/{shop-id}/listings/{listing-id}/count"
|
||||
hx-swap="none"
|
||||
hx-vals='js:{
|
||||
"platform": {{printf "%q" $selectedPlatform}},
|
||||
"shop-id": {{printf "%q" $selectedShopID}},
|
||||
}'
|
||||
>
|
||||
<select
|
||||
name="shop-id"
|
||||
class="bg-background"
|
||||
required
|
||||
hx-put="/api/accounts/{{$acctID}}/simulations/count/form/shop"
|
||||
hx-vals='js:{
|
||||
platform: event.target.value.replace(/-[^ ]*/, ""),
|
||||
"shop-id": event.target.value.replace(/[^ -]*-/, "")
|
||||
}'
|
||||
>
|
||||
<option disabled selected>
|
||||
- Select A Shop -
|
||||
</option>
|
||||
{{- range $shop := .Shops }}
|
||||
<option
|
||||
value="{{$shop.Platform}}-{{$shop.ShopID}}"
|
||||
{{- if and
|
||||
(eq $shop.Platform $selectedPlatform)
|
||||
(eq $shop.ShopID $selectedShopID)
|
||||
}}
|
||||
selected
|
||||
{{- end }}
|
||||
>
|
||||
{{ $shop.Name }}
|
||||
</option>
|
||||
{{- end }}
|
||||
</select>
|
||||
|
||||
<select
|
||||
name="listing-id"
|
||||
class="bg-background"
|
||||
required
|
||||
>
|
||||
{{- if $listings }}
|
||||
<option disabled selected>
|
||||
- Select A Listing -
|
||||
</option>
|
||||
{{- range $listing := $listings }}
|
||||
<option value="{{$listing.ListingID}}">
|
||||
{{ $listing.Name }} - {{ $listing.SKU }}
|
||||
</option>
|
||||
{{- end }}
|
||||
{{- else }}
|
||||
<option disabled selected>
|
||||
- No Listings Found -
|
||||
</option>
|
||||
{{- end }}
|
||||
</select>
|
||||
|
||||
<input
|
||||
class="p-[0.5em] border-medium border-border rounded-lg bg-background"
|
||||
type="number"
|
||||
min="1"
|
||||
max="1000000000"
|
||||
name="count"
|
||||
value="0"
|
||||
required
|
||||
/>
|
||||
|
||||
<div>
|
||||
{{ component "button"
|
||||
"Text" "Submit"
|
||||
"Background" true
|
||||
"Class" "m-0"
|
||||
}}
|
||||
</div>
|
||||
</form>
|
||||
{{ end }}
|
||||
|
||||
{{ component "accordion"
|
||||
"Name" "simulate"
|
||||
"Shops" $shops
|
||||
"SelectedPlatform" $selectedPlatform
|
||||
"SelectedShopID" $selectedShopID
|
||||
"Listings" $listings
|
||||
"Class" `
|
||||
mx-[1em]
|
||||
mb-[1em]
|
||||
`
|
||||
"#accordion-header" "set-inventory-accordion-header"
|
||||
"#accordion-body" "set-inventory-accordion-body"
|
||||
}}
|
||||
Reference in New Issue
Block a user