buscar las traducciones en window
This commit is contained in:
parent
8ee4dc7cf6
commit
d452a85d09
2 changed files with 2 additions and 25 deletions
|
@ -19,7 +19,7 @@ export default class extends Controller {
|
|||
|
||||
if (!response.ok) return
|
||||
|
||||
data.site = await this.site()
|
||||
data.site = window.site
|
||||
|
||||
const template = await response.text()
|
||||
const html = await this.engine.parseAndRender(template, data)
|
||||
|
@ -63,18 +63,4 @@ export default class extends Controller {
|
|||
|
||||
return window.liquid
|
||||
}
|
||||
|
||||
/*
|
||||
* Site config (actually just translation strings)
|
||||
*
|
||||
* @return [Object]
|
||||
*/
|
||||
async site () {
|
||||
if (!window.site) {
|
||||
const data = await fetch('assets/data/site.json')
|
||||
window.site = await data.json()
|
||||
}
|
||||
|
||||
return window.site
|
||||
}
|
||||
}
|
||||
|
|
|
@ -47,7 +47,7 @@ export default class extends Controller {
|
|||
|
||||
const main = document.querySelector('main')
|
||||
const results = window.index.search(q).map(r => window.data.find(a => a.id == r.ref))
|
||||
const site = await this.site()
|
||||
const site = window.site
|
||||
const request = await fetch('assets/templates/results.html')
|
||||
const template = await request.text()
|
||||
const html = await this.engine.parseAndRender(template, { q, site, results })
|
||||
|
@ -98,13 +98,4 @@ export default class extends Controller {
|
|||
|
||||
return window.liquid
|
||||
}
|
||||
|
||||
async site () {
|
||||
if (!window.site) {
|
||||
const data = await fetch('assets/data/site.json')
|
||||
window.site = await data.json()
|
||||
}
|
||||
|
||||
return window.site
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue