10
0
mirror of https://github.com/LCPQ/QUESTDB_website.git synced 2024-08-25 13:41:50 +02:00
This commit is contained in:
scemama 2020-12-08 14:05:44 +00:00
parent d21a15300a
commit 46f610ea71

View File

@ -8,9 +8,9 @@ class indexDB {
var site_url = "/"+window.location.pathname.split('/')[1]; var site_url = "/"+window.location.pathname.split('/')[1];
const text = await getTextFromFileUrlAsync(site_url+"/data/index.yaml",{"Cache-Control":`max-age=${maxAge}`}) const text = await getTextFromFileUrlAsync(site_url+"/data/index.yaml",{"Cache-Control":`max-age=${maxAge}`})
const myYaml = jsyaml.load(text); const myYaml = jsyaml.load(text);
db.sets = ((myYaml.sets === undefined) ? new Map() : new Map(Object.entries(myYaml.sets))); db.sets = ((myYaml.sets == null) ? new Map() : new Map(Object.entries(myYaml.sets)));
db.others = ((myYaml.others === undefined) ? [] : Array.from(myYaml.others)); db.others = ((myYaml.others == null) ? [] : Array.from(myYaml.others));
db.reviews = ((myYaml.reviews === undefined) ? [] : Array.from(myYaml.reviews)); db.reviews = ((myYaml.reviews == null) ? [] : Array.from(myYaml.reviews));
window.indexDB=db window.indexDB=db
return db return db
} }