mirror of
https://github.com/TriliumNext/Notes.git
synced 2025-08-18 08:13:40 +08:00
fix(canvas): significant lag when dragging (fixes #967)
This commit is contained in:
parent
7cf1fbf088
commit
2167948509
@ -43,6 +43,14 @@ export default class SpacedUpdate {
|
||||
return allSaved;
|
||||
}
|
||||
|
||||
/**
|
||||
* Normally {@link scheduleUpdate()} would actually trigger the update only once per {@link updateInterval}. If the method is called 200 times within 20s, it will execute only 20 times.
|
||||
* Sometimes, if the updates are continuous this would cause a performance impact. Resetting the time ensures that the calls to {@link triggerUpdate} have stopped before actually triggering an update.
|
||||
*/
|
||||
resetUpdateTimer() {
|
||||
this.lastUpdated = Date.now();
|
||||
}
|
||||
|
||||
triggerUpdate() {
|
||||
if (!this.changed) {
|
||||
return;
|
||||
|
@ -383,9 +383,10 @@ export default class ExcalidrawTypeWidget extends TypeWidget {
|
||||
|
||||
/**
|
||||
* save content to backend
|
||||
* spacedUpdate is kind of a debouncer.
|
||||
*/
|
||||
saveData() {
|
||||
// Since Excalidraw sends an enormous amount of events, wait for them to stop before actually saving.
|
||||
this.spacedUpdate.resetUpdateTimer();
|
||||
this.spacedUpdate.scheduleUpdate();
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user