keeweb/app/scripts/storage/impl/storage-cache.js

33 lines
674 B
JavaScript

import { IoBrowserCache } from 'storage/io-browser-cache';
import { StorageBase } from 'storage/storage-base';
class StorageCache extends StorageBase {
name = 'cache';
enabled = IoBrowserCache.enabled;
system = true;
io = null;
init() {
super.init();
this.io = new IoBrowserCache({
cacheName: 'FilesCache',
logger: this.logger
});
}
save(id, opts, data, callback) {
this.io.save(id, data, callback);
}
load(id, opts, callback) {
this.io.load(id, callback);
}
remove(id, opts, callback) {
this.io.remove(id, callback);
}
}
export { StorageCache };