Redirect search to catalog offers flow instead of /request
All checks were successful
Build Docker Image / build (push) Successful in 4m2s
All checks were successful
Build Docker Image / build (push) Successful in 4m2s
- GlobalSearchBar now redirects to /catalog/offers/[productId]/[hubId] - GoodsContent redirects to offers flow - select-location pages redirect to offers flow - Added quantity tag to offers page - Added KYC profile loading and offer detail navigation on offers page
This commit is contained in:
@@ -46,16 +46,16 @@ const selectProduct = (product: any) => {
|
||||
searchStore.setProduct(product.name)
|
||||
searchStore.setProductUuid(product.uuid)
|
||||
const locationUuid = searchStore.searchForm.locationUuid
|
||||
const quantity = searchStore.searchForm.quantity
|
||||
|
||||
const query: Record<string, string> = {}
|
||||
if (quantity) query.quantity = String(quantity)
|
||||
|
||||
if (locationUuid) {
|
||||
// Both product and hub selected -> show offers
|
||||
navigateTo({
|
||||
path: '/request',
|
||||
query: {
|
||||
productUuid: product.uuid,
|
||||
product: product.name,
|
||||
locationUuid,
|
||||
location: searchStore.searchForm.location,
|
||||
quantity: searchStore.searchForm.quantity || undefined
|
||||
}
|
||||
path: `/catalog/offers/${product.uuid}/${locationUuid}`,
|
||||
query
|
||||
})
|
||||
return
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user