Skip to content
Snippets Groups Projects
Commit 88b3cc0a authored by Henrik Askjer's avatar Henrik Askjer
Browse files

New solution to autocorrect issue

parent dc5ea279
No related branches found
No related tags found
No related merge requests found
......@@ -54,22 +54,23 @@
n: 9}} )
.then(
function(response) {
if (self.suggesting) {
let hits = []
response.data.forEach((item, i) => {
let hit = {q: q, label: item[0]}
hit.lang = item[1][1] ? "bm, nn" : {"bob": "bm", "nob": "nn"}[item[1][0]]
hits.push(hit)
let currentSearch = self.$refs.autocomplete.searchInput
if (currentSearch == q) {
});
let hits = []
response.data.forEach((item, i) => {
let hit = {q: q, label: item[0]}
hit.lang = item[1][1] ? "bm, nn" : {"bob": "bm", "nob": "nn"}[item[1][0]]
hits.push(hit)
self.items = hits
});
hits.push({q: currentSearch, label: currentSearch})
self.items = hits
}
// Fritekstsøk
let currentSearch = self.$refs.autocomplete.searchInput
self.items.push({q: currentSearch, label: currentSearch + ' '})
}
self.loading = false
})
}, 100)
......@@ -84,23 +85,25 @@
}
},
select(item) {
this.items = []
if (item) {
if (item.q === this.$refs.autocomplete.searchInput) {
this.items = []
this.suggesting = false
if (typeof item === 'string') { // if blurred without selecting an option
// TODO: sett timeout for å vente på siste forslag?
item = {q: item}
}
if (item.q == this.$refs.autocomplete.searchInput) {
this.$emit('submit', item)
let self = this
setTimeout(() => self.$refs.autocomplete.$refs.input.select(), 1)
}
// TODO: else: sett timeout for å vente på siste forslag
}
}
},
methods: {
run_query(q) {
this.suggesting = true
this.items = []
this.debounced(q, this)
}
},
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment