|
@@ -16,7 +16,7 @@
|
|
type="select"
|
|
type="select"
|
|
placeholder="dans ..."
|
|
placeholder="dans ..."
|
|
append-to-body
|
|
append-to-body
|
|
- :calculate-position="withPopper"
|
|
|
|
|
|
+ :calculate-position="dropDownMenuPos"
|
|
:options="searchTypeOptions"
|
|
:options="searchTypeOptions"
|
|
:clearable="false"
|
|
:clearable="false"
|
|
:value="searchTypeValue"
|
|
:value="searchTypeValue"
|
|
@@ -68,13 +68,6 @@ import { mapActions, mapState } from 'vuex'
|
|
export default {
|
|
export default {
|
|
name: 'Search',
|
|
name: 'Search',
|
|
data: () => ({
|
|
data: () => ({
|
|
- searchTypeOptions: [
|
|
|
|
- { 'code': 'text', 'label': 'Dans les textes' },
|
|
|
|
- { 'code': 'nominum', 'label': 'Dans les personnes' },
|
|
|
|
- { 'code': 'locorum', 'label': 'Dans les lieux' },
|
|
|
|
- { 'code': 'operum', 'label': 'Dans les objets' }
|
|
|
|
- ],
|
|
|
|
- searchTypeValue: { 'code': 'text', 'label': 'Dans les textes' }
|
|
|
|
}),
|
|
}),
|
|
computed: {
|
|
computed: {
|
|
keys: {
|
|
keys: {
|
|
@@ -82,18 +75,21 @@ export default {
|
|
set (value) { this.$store.commit('Search/setKeys', value) }
|
|
set (value) { this.$store.commit('Search/setKeys', value) }
|
|
},
|
|
},
|
|
...mapState({
|
|
...mapState({
|
|
- isloading: state => state.Search.isloading
|
|
|
|
|
|
+ isloading: state => state.Search.isloading,
|
|
|
|
+ searchTypeOptions: state => state.Search.searchTypeOptions,
|
|
|
|
+ searchTypeValue: state => state.Search.searchTypeValue
|
|
})
|
|
})
|
|
},
|
|
},
|
|
methods: {
|
|
methods: {
|
|
...mapActions({
|
|
...mapActions({
|
|
- getResults: 'Search/getResults'
|
|
|
|
|
|
+ getResults: 'Search/getResults',
|
|
|
|
+ setSearchTypeValue: 'Search/setSearchTypeValue'
|
|
}),
|
|
}),
|
|
submit () {
|
|
submit () {
|
|
console.log('submited', this.keys)
|
|
console.log('submited', this.keys)
|
|
this.getResults()
|
|
this.getResults()
|
|
},
|
|
},
|
|
- withPopper (dropdownList, component, { width }) {
|
|
|
|
|
|
+ dropDownMenuPos (dropdownList, component, { width }) {
|
|
/**
|
|
/**
|
|
* We need to explicitly define the dropdown width since
|
|
* We need to explicitly define the dropdown width since
|
|
* it is usually inherited from the parent with CSS.
|
|
* it is usually inherited from the parent with CSS.
|
|
@@ -137,7 +133,7 @@ export default {
|
|
},
|
|
},
|
|
onSearchTypeSelected (e) {
|
|
onSearchTypeSelected (e) {
|
|
console.log('onSearchTypeSelected', e)
|
|
console.log('onSearchTypeSelected', e)
|
|
- this.searchTypeValue = e
|
|
|
|
|
|
+ this.setSearchTypeValue(e)
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|