Fixed an unreliable caching backend check
This commit is contained in:
@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "@ztimson/utils",
|
"name": "@ztimson/utils",
|
||||||
"version": "0.25.26",
|
"version": "0.25.27",
|
||||||
"description": "Utility library",
|
"description": "Utility library",
|
||||||
"author": "Zak Timson",
|
"author": "Zak Timson",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
|
@ -39,7 +39,7 @@ export class Cache<K extends string | number | symbol, T> {
|
|||||||
if(typeof this.options.persistentStorage == 'string')
|
if(typeof this.options.persistentStorage == 'string')
|
||||||
this.options.persistentStorage = {storage: localStorage, key: this.options.persistentStorage};
|
this.options.persistentStorage = {storage: localStorage, key: this.options.persistentStorage};
|
||||||
|
|
||||||
if(this.options.persistentStorage?.storage instanceof Database) {
|
if(this.options.persistentStorage?.storage?.constructor.name == 'Database') {
|
||||||
(async () => {
|
(async () => {
|
||||||
const persists: any = this.options.persistentStorage;
|
const persists: any = this.options.persistentStorage;
|
||||||
const table: Table<any, any> = await persists.storage.createTable({name: persists.key, key: this.key});
|
const table: Table<any, any> = await persists.storage.createTable({name: persists.key, key: this.key});
|
||||||
@ -47,8 +47,8 @@ export class Cache<K extends string | number | symbol, T> {
|
|||||||
Object.assign(this.store, rows.reduce((acc, row) => ({...acc, [this.getKey(row)]: row}), {}));
|
Object.assign(this.store, rows.reduce((acc, row) => ({...acc, [this.getKey(row)]: row}), {}));
|
||||||
done();
|
done();
|
||||||
})();
|
})();
|
||||||
} else {
|
} else if(this.options.persistentStorage?.storage?.constructor.name == 'Storage') {
|
||||||
const stored = this.options.persistentStorage.storage.getItem(this.options.persistentStorage.key);
|
const stored = (<Storage>this.options.persistentStorage.storage).getItem(this.options.persistentStorage.key);
|
||||||
if(stored != null) try { Object.assign(this.store, JSON.parse(stored)); } catch { }
|
if(stored != null) try { Object.assign(this.store, JSON.parse(stored)); } catch { }
|
||||||
done();
|
done();
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user