trilium/src/public/javascripts/services/spaced_update.js

50 lines
1.2 KiB
JavaScript
Raw Normal View History

2020-01-20 04:40:23 +08:00
export default class SpacedUpdate {
constructor(updater, updateInterval = 1000) {
this.updater = updater;
this.lastUpdated = Date.now();
this.changed = false;
this.updateInterval = updateInterval;
}
scheduleUpdate() {
if (!this.changeForbidden) {
2020-01-25 05:30:17 +08:00
this.changed = true;
setTimeout(() => this.triggerUpdate());
}
2020-01-20 04:40:23 +08:00
}
async updateNowIfNecessary() {
if (this.changed) {
this.changed = false;
await this.updater();
}
}
triggerUpdate() {
if (!this.changed) {
return;
}
if (Date.now() - this.lastUpdated > this.updateInterval) {
this.updater();
this.lastUpdated = Date.now();
this.changed = false;
}
else {
// update not triggered but changes are still pending so we need to schedule another check
this.scheduleUpdate();
}
}
2020-01-25 05:30:17 +08:00
allowUpdateWithoutChange(callback) {
this.changeForbidden = true;
try {
callback();
}
finally {
this.changeForbidden = false;
}
}
2020-01-20 04:40:23 +08:00
}