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

Merge branch 'replace-api' into dev

parents ae66f23d 739c4580
No related branches found
No related tags found
No related merge requests found
......@@ -83,14 +83,15 @@
if (/_|\*|\|/.test(q)) {
search = 2
}
this.items.splice(0,1, {q: q, match: q, label: q+" ", time: time, search: search})
this.items.splice(0,1, {q: q, match: q, label: q, time: time, search: search})
}
}
else {
// Whitespace necessary in case option already exists in dropdown
this.items.push({q: q, match: q, label: q+" ", time: time, search: search})
}
let self = this
self.api.get('suggest?', {params: {q: q, dict: self.$parent.lang, n: 80, scope: 'w'}})
self.api.get('suggest?', {params: {q: q, dict: self.$parent.lang, n: 80, scope: 'w', stage: self.$parent.stage}})
.then(async (response) => {
if (self.$refs.autocomplete.searchInput == q & self.suggesting) {
......
......@@ -85,7 +85,6 @@ const dicts = {'nob': 'Nynorskorboka',
const api = setup({
baseURL: SEARCH_ENDPOINT,
params: {stage: API_STAGE},
cache: {
maxAge: 15 * 60 * 1000,
exclude: {
......@@ -158,7 +157,7 @@ function navigate_to_query(self, word) {
let query = self.event ? self.event : {q: word}
// Get article IDs
api.get('articles?', {params: {w: query.match || query.q, dict: self.lang, scope: "w"}}).then((response) => {
api.get('articles?', {params: {w: query.match || query.q, dict: self.lang, scope: "w", stage: self.stage}}).then((response) => {
let article_ids = response.data
let unwrapped = []
for (const d in article_ids) {
......@@ -225,7 +224,8 @@ export default {
error: null,
monthly_bm: null,
monthly_nn: null,
event: null
event: null,
stage: API_STAGE
}
},
computed: {
......
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