Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

adding debounce timer on StreamSubscription creates wrong Delta's #2498

Open
1 task done
eelco2k opened this issue Mar 3, 2025 · 1 comment
Open
1 task done

adding debounce timer on StreamSubscription creates wrong Delta's #2498

eelco2k opened this issue Mar 3, 2025 · 1 comment
Labels
bug Something isn't working

Comments

@eelco2k
Copy link

eelco2k commented Mar 3, 2025

Have you checked for an existing issue?

Flutter Quill Version

11.0

Steps to Reproduce

  Timer? _debounceTimer;

StreamSubscription editorStreamSubscription = textEditorController.changes.listen((DocChange event) {
   // Prevent re-sending remote changes
   if (event.source == ChangeSource.remote) {
      talker.warning("Skipping remote change to prevent infinite loop.");
      return;
   }

   todo.description = jsonEncode({
      'before': event.before.toJson(), // Convert `before` Delta to JSON
      'change': event.change.toJson(), // Convert `change` Delta to JSON
   });

   talker.warning("editor changes: ${todo.description}");

   _debounceTimer?.cancel();
   _debounceTimer = Timer(Duration(milliseconds: 1000), () async {
       await crdt.saveModel(todo);
      });
});

typing in the editor results in a wrong Delta from the third row. as it missed to make a Delta to insert: "for some reaso"

{"before":[{"insert":"this is a test if everything work\n"}],"change":[{"retain":33},{"insert":"s"}]},

{"before":[{"insert":"this is a test if everything works\n"}],"change":[{"retain":34},{"insert":"."}]},

{"before":[{"insert":"this is a test if everything works. for some reaso\n"}],"change":[{"retain":50},{"insert":"n"}]},

{"before":[{"insert":"this is a test if everything works. for some reason\n"}],"change":[{"retain":51},{"insert":"."}]}

i will try with a buffer but then all changes will be recorded again. i really want a diff (Delta) after a person stops typing after 1000 ms.

Expected results

correct delta's even when debounce...

Actual results

see above...

Additional Context

Screenshots / Video demonstration

[Attach media here]

Logs
[Paste logs here]
@eelco2k eelco2k added the bug Something isn't working label Mar 3, 2025
@eelco2k
Copy link
Author

eelco2k commented Mar 3, 2025

when i use rxdart with bufferTime and recompose all changes during the buffer it does work. but debouncing just won't work.

StreamSubscription editorStreamSubscription = textEditorController.changes
   .bufferTime(Duration(milliseconds: 1000))
   .listen((List<DocChange> events) async {});

perhaps this is a shortcoming of the package at this moment, as i would think in the compiled quill there should be something like a buffer or debounce method inside of it..?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug Something isn't working
Projects
None yet
Development

No branches or pull requests

1 participant