10
0
mirror of https://github.com/LCPQ/QUESTDB_website.git synced 2024-08-25 13:41:50 +02:00
QUESTDB_website/js/indexDB.js
2020-12-07 10:12:16 +00:00

18 lines
694 B
JavaScript

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