mirror of
https://github.com/LCPQ/QUESTDB_website.git
synced 2024-11-03 20:53:59 +01:00
15 lines
526 B
JavaScript
15 lines
526 B
JavaScript
class indexDB {
|
|
static async loadAsync() {
|
|
if (window.indexDB) {
|
|
return window.indexDB
|
|
}
|
|
var db = new indexDB
|
|
const maxAge= (DebugMode.Enabled,0,600)
|
|
const text = await getTextFromFileUrlAsync("/data/index.yaml",{"Cache-Control":`max-age=${maxAge}`})
|
|
const myYaml = jsyaml.load(text);
|
|
db.sets = ((myYaml.sets === null) ? new Map() : new Map(Object.entries(myYaml.sets)));
|
|
db.others = ((myYaml.others === null) ? [] : Array.from(myYaml.others));
|
|
window.indexDB=db
|
|
return db
|
|
}
|
|
} |