gancio-upstream/components/Search.vue

131 lines
4 KiB
Vue
Raw Normal View History

2019-04-03 00:25:12 +02:00
<template lang="pug">
2020-07-25 21:41:22 +02:00
v-container
v-switch.mt-0(
2019-07-23 01:31:43 +02:00
v-if='recurrentFilter && settings.allow_recurrent_event'
2020-07-25 21:41:22 +02:00
inset color='primary'
:label="$t('event.show_recurrent')"
2020-01-21 15:09:23 +01:00
v-model='showRecurrent')
2020-07-25 21:41:22 +02:00
v-switch.mt-0(
v-if='pastFilter' inset color='primary'
:label="$t('event.show_past')"
2020-01-21 15:09:23 +01:00
v-model='showPast')
2019-05-30 12:04:14 +02:00
2020-07-31 01:03:19 +02:00
v-autocomplete.mt-0(
2020-10-16 14:47:32 +02:00
:label='$t("common.search")'
2020-07-31 01:03:19 +02:00
:items='keywords'
v-model='filter'
:search-input.sync='search'
item-text='label'
2020-10-10 00:40:16 +02:00
item-value='id'
2020-10-07 10:05:18 +02:00
chips rounded outlined single-line
2020-10-10 00:40:16 +02:00
multiple)
2020-07-31 01:03:19 +02:00
template(v-slot:selection="data")
v-chip(v-bind="data.attrs"
:input-value="data.selected"
close
@click="data.select"
@click:close="remove(data.item)")
v-avatar(left)
2020-10-10 00:40:16 +02:00
v-icon {{data.item.type === 'place' ? 'mdi-map-marker' : 'mdi-tag' }}
span {{ data.item.label }}
2020-07-31 01:03:19 +02:00
template(v-slot:item='{ item }')
2020-10-10 00:40:16 +02:00
v-list-item-avatar
v-icon {{item.type === 'place' ? 'mdi-map-marker' : 'mdi-tag' }}
v-list-item-content
v-list-item-title(v-text='item.label')
2019-04-03 00:25:12 +02:00
</template>
<script>
2019-09-11 19:12:24 +02:00
import { mapState, mapActions } from 'vuex'
2019-04-03 00:25:12 +02:00
export default {
2019-09-11 19:12:24 +02:00
name: 'Search',
2019-06-10 01:25:05 +02:00
props: {
2019-07-11 23:31:37 +02:00
pastFilter: Boolean,
recurrentFilter: Boolean
2019-06-10 01:25:05 +02:00
},
2019-09-11 19:12:24 +02:00
data () {
return {
2020-10-10 00:40:16 +02:00
tmpfilter: null,
2020-01-15 23:33:56 +01:00
search: ''
2019-09-11 19:12:24 +02:00
}
},
2019-04-03 00:25:12 +02:00
computed: {
2020-10-10 00:40:16 +02:00
filter: {
set (value) {
console.error('set', value)
this.tmpfilter = value
},
get () {
// console.error('dentro get')
// const tags = this.filters.tags.map(t => t.tag)// ({ type: 'tag', label: t.tag, weigth: t.weigth, id: t.tag }))
// const places = this.filters.places.map(p => p.name) //({ type: 'place', label: p.name, weigth: p.weigth, id: p.id }))
// const keywords = tags.concat(places).sort((a, b) => b.weigth - a.weigth)
// const ret = tags.concat(places)
// console.error(ret)
return this.tmpfilter
// const ret = this.filters.tags
// console.error(ret)
// return ret
// return ['ciao']
}
},
2019-07-23 01:31:43 +02:00
...mapState(['tags', 'places', 'filters', 'settings']),
2020-07-31 01:03:19 +02:00
// selectedPlaces () {
// return this.places.filter(p => this.filters.places.includes(p.id))
// },
2019-05-30 12:04:14 +02:00
keywords () {
2020-02-09 18:15:44 +01:00
const tags = this.tags.filter(t => !this.filters.tags.includes(t.tag)).map(t => ({ type: 'tag', label: t.tag, weigth: t.weigth, id: t.tag }))
2020-05-22 00:28:42 +02:00
const places = this.places.filter(p => !this.filters.places.includes(p.id))
.map(p => ({ type: 'place', label: p.name, weigth: p.weigth, id: p.id }))
2020-01-21 01:17:45 +01:00
const keywords = tags.concat(places).sort((a, b) => b.weigth - a.weigth)
return keywords
2019-05-30 12:04:14 +02:00
},
2019-07-11 23:31:37 +02:00
showPast: {
set (value) { this.showPastEvents(value) },
get () { return this.filters.show_past_events }
},
showRecurrent: {
set (value) { this.showRecurrentEvents(value) },
get () { return this.filters.show_recurrent_events }
2020-01-15 23:33:56 +01:00
}
2020-07-31 01:03:19 +02:00
// filter () {
// return this.filters.tags.concat(this.filters.places)
// }
2020-01-15 23:33:56 +01:00
},
methods: {
...mapActions(['setSearchPlaces', 'setSearchTags',
'showPastEvents', 'showRecurrentEvents', 'updateEvent']),
2020-10-16 14:47:32 +02:00
remove (item) {
console.error(item)
if (item.type === 'tag') {
this.removeTag(item.id)
} else {
this.removePlace(item.id)
}
},
2020-02-09 18:15:44 +01:00
removeTag (tag) {
this.setSearchTags(this.filters.tags.filter(t => t !== tag))
},
removePlace (place) {
this.setSearchPlaces(this.filters.places.filter(p => p !== place))
2020-01-15 23:33:56 +01:00
},
querySearch (queryString, cb) {
const ret = this.keywords
.filter(k => !this.filter.map(f => f.id).includes(k.id))
.filter(k => k.label.toLowerCase().includes(queryString))
.slice(0, 5)
cb(ret)
},
addFilter (item) {
if (item.type === 'tag') {
2020-02-09 18:15:44 +01:00
this.setSearchTags(this.filters.tags.concat(item.id))
2020-01-15 23:33:56 +01:00
} else {
2020-02-09 18:15:44 +01:00
this.setSearchPlaces(this.filters.places.concat(item.id))
2019-05-30 12:04:14 +02:00
}
2020-01-15 23:33:56 +01:00
this.search = ''
2019-09-11 19:12:24 +02:00
}
2019-04-03 00:25:12 +02:00
}
}
</script>