wip busqueda page

This commit is contained in:
María
2025-08-22 10:27:48 +02:00
parent 4cf42687ef
commit 500dd1efbe
6 changed files with 865 additions and 31 deletions

View File

@@ -1,18 +1,379 @@
<template>
<div>
pagina busqueda
<h1>Busqueda</h1>
<p>Esta es la página de búsqueda.</p>
<p>Utiliza el componente NavBarSearch para navegar.</p>
<div class="container mt-5">
<div class="row">
<div class="col-md-3">
<ProductFilter
:filters="filters"
:current-filters="currentFilters"
:prices="prices"
:geo="coordinates"
@apply-filters="updateData"
/>
</div>
<div class="col-md-9">
<div class="carousel">
<h2 class="title">Últimos productos</h2>
<ItemsRow class="items" :type="`product`" :items="carouselProducts" />
</div>
<div v-if="hasFilterTags" class="applied-filters">
<h2 class="title">FILTROS APLICADOS</h2>
<div class="filter-buttons">
<button
v-if="appliedFilters.hasOwnProperty('shipping_cost')"
type="button"
class="btn-tag"
@click="removeFilter('shipping_cost')"
>
<span>Sin gastos de envío</span>
<img src="@/assets/img/latienda-close.svg" alt="" />
</button>
<button
v-if="appliedFilters.hasOwnProperty('discount')"
type="button"
class="btn-tag"
@click="removeFilter('discount')"
>
<span>Descuentos</span>
<img src="@/assets/img/latienda-close.svg" alt="" />
</button>
<div v-if="appliedFilters.hasOwnProperty('category')">
<button
v-for="(cat, key) in appliedFilters.category"
:key="key"
type="button"
class="btn-delete-all"
@click="removeCategory(cat)"
>
<span>{{ cat }}</span>
<img src="@/assets/img/latienda-close.svg" alt="" />
</button>
</div>
</div>
</div>
<div class="results">
<h2 class="title"></h2>
<p class="count">Hay {{ count }} productos</p>
</div>
<div v-if="products.length !== 0">
<div v-for="product in products" :key="product.id">
<ProductCard :key="product.key" :product="product" />
</div>
<BPagination
v-model="currentPage"
class="pagination"
:total-rows="count"
:per-page="perPage"
@change="handlePageChange"
/>
</div>
<div v-else class="no-results">
<p>
No hemos encontrado resultados para su búsqueda... pero puede buscar
otro o consultar estos productos.
</p>
<div v-for="product in defaultProducts" :key="product.id">
<ProductCard :key="product.key" :product="product" />
</div>
</div>
</div>
</div>
</div>
</template>
<script>
export default {
import { useAuthStore } from '@/stores/auth'
//import { useRoute, useRouter } from 'vue-router'
import serverSearch from '~/utils/serverSearch'
import clientSearch from '~/utils/clientSearch'
export default {
setup(){
definePageMeta({
layout: 'mainbanner',
})
const auth = useAuthStore()
return { auth }
},
data() {
return {
searchText: '',
currentPage: 1,
perPage: 10,
filterTags: {
shipping_cost: undefined,
},
previousParams: null,
currentFilters: null,
mountedProducts: [],
appliedFilters: {},
filters: {},
prices: { min: null, max: null },
coordinates: null,
products: [],
defaultProducts: [],
carouselProducts: [],
count: 0,
}
},
computed: {
hasFilterTags() {
if (!this.appliedFilters) return false
return (
Object.keys(this.appliedFilters).includes('shipping_cost') ||
Object.keys(this.appliedFilters).includes('discount') ||
(Array.isArray(this.appliedFilters.category) &&
this.appliedFilters.category.length > 0)
)
},
},
watch: {
$route() {
Object.assign(this.$data, this.$options.data())
},
},
async beforeCreate() {
const config = useRuntimeConfig()
const params = import.meta.client ? clientSearch(this.$route.query) : serverSearch(this.$route.query)
console.log('Params', this.$route.query)
}
const data = await $fetch(`/search_products/?limit=10&offset=0`, {
baseURL: config.public.apiBaseUrl,
method: 'GET',
params,
headers: {
Authorization: `Bearer ${this.auth.access}`,
},
})
console.log('data', data)
const products = data.products
let defaultProducts = []
if (products.length === 0) {
const data = await $fetch(`/search_products/?q=&order=newest&limit=10&offset=0`, {
baseURL: config.public.apiBaseUrl,
method: 'GET',
headers: {
Authorization: `Bearer ${this.auth.access}`,
},
})
defaultProducts = data.products
}
const carouselProducts = await $fetch(`/products/?limit=12&offset=0`, {
baseURL: config.public.apiBaseUrl,
method: 'GET',
headers: {
Authorization: `Bearer ${this.auth.access}`,
},
})
let coordinates
if (params.latitude && params.longitude) {
coordinates = {
lat: Number(params.latitude),
lng: Number(params.longitude),
}
}
let prices
if (params.price_min || params.price_max) {
prices = { max: params.price_max, min: params.price_min }
} else if (data.prices.min || data.prices.max) {
prices = data.prices
} else {
prices = { max: null, min: null }
}
return {
appliedFilters: params,
filters: data.filters,
prices: prices,
coordinates: coordinates,
products: products,
defaultProducts: defaultProducts,
carouselProducts: carouselProducts.data.results,
count: data.count,
}
},
mounted() {
this.currentFilters = this.appliedFilters
},
methods: {
async handlePageChange(value) {
const offset = (value - 1) * this.perPage
this.products = await this.getMoreProducts(offset)
},
async getMoreProducts(offset) {
const data = await this.$api.get(`/search_products/?limit=10&offset=${offset}`, {
baseURL: config.public.apiBaseUrl,
method: 'GET',
body: { params: this.appliedFilters },
})
return data.products
},
updateData(value) {
const filters = { q: this.appliedFilters.q }
if (Object.keys(value).length === 0) { //Review this condition
return this.$router.push({
name: 'busqueda',
query: { ...filters },
})
} else {
return this.$router.push({
name: 'busqueda',
query: { ...value, ...filters },
})
}
},
removeCategory(cat) {
this.currentFilters = this.appliedFilters
const categoryArray = this.currentFilters.category
const newCats = []
categoryArray.forEach((element) => {
if (element !== cat) {
newCats.push(element)
}
})
this.currentFilters.category = newCats
const noCategory = {}
Object.entries(this.currentFilters).forEach(([key, value]) => {
if (key !== 'category') {
noCategory[key] = value
}
})
if (newCats.length === 0) {
return this.$router.push({
path: this.$route.path,
query: { ...noCategory },
})
} else {
return this.$router.push({
path: this.$route.path,
query: { category: newCats, ...noCategory },
})
}
},
removeFilter(filter) {
this.currentFilters = { ...this.appliedFilters }
this.currentFilters = Object.fromEntries(
Object.entries(this.currentFilters).filter(([key]) => key !== filter)
)
return this.$router.push({
name: 'busqueda',
query: { ...this.currentFilters },
})
},
search() {
if (this.searchText) {
return this.$router.push({
name: 'busqueda',
query: { q: this.searchText },
})
}
},
},
}
</script>
<style lang="scss" scoped>
.ad {
margin: 40px auto;
width: 100%;
height: 100px;
background-color: $color-grey-nav;
border-radius: 5px;
}
</style>
.applied-filters {
@include mobile {
display: none;
}
.title {
font-size: $xl;
color: $color-navy;
}
}
.filter-buttons {
margin-bottom: 30px;
button {
margin-right: 5px;
margin-bottom: 5px;
border: none;
border-radius: 5px;
padding: 8px 10px;
color: $color-light;
background-color: $color-dark-green;
img {
width: 18px;
margin-left: 5px;
position: relative;
bottom: 1px;
}
}
.btn-delete-all {
background-color: $color-darker-green;
}
}
.carousel {
@include mobile {
display: none;
}
.title {
font-size: $xl;
color: $color-navy;
@include tablet {
margin-top: 3rem;
}
}
.items {
margin: auto;
}
}
.results {
.title {
font-size: $xl;
color: $color-navy;
}
.count {
font-size: $xs;
color: $color-greytext;
}
}
.pagination {
margin-top: 40px;
display: flex;
flex-direction: row;
align-items: center;
justify-content: center;
}
.no-results {
p {
text-align: center;
font-size: $xl;
color: $color-navy;
margin-top: 100px;
margin-bottom: 100px;
}
}
</style>

View File

@@ -1,17 +0,0 @@
<script>
export default {
layout: 'admin',
}
// Esto debe estar fuera del export default
definePageMeta({
middleware: 'auth',
auth: {
authority: 'SITE_ADMIN',
},
})
</script>
<template>
<h1>Solo para admins</h1>
</template>