fix: toolbar style change will be invalid when inputting more than 2 characters at a time (#1890)

pull/1898/head v9.3.20
crasowas 11 months ago committed by GitHub
parent 61c129ce04
commit 6d99d40539
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
  1. 32
      lib/src/widgets/quill/quill_controller.dart

@ -261,9 +261,7 @@ class QuillController extends ChangeNotifier {
var shouldRetainDelta = toggledStyle.isNotEmpty &&
delta.isNotEmpty &&
delta.length <= 2 &&
delta.last.isInsert &&
// pasted text should not use toggledStyle
(data is! String || data.length < 2);
delta.last.isInsert;
if (shouldRetainDelta &&
toggledStyle.isNotEmpty &&
delta.length == 2 &&
@ -518,13 +516,27 @@ class QuillController extends ChangeNotifier {
// See https://github.com/flutter/flutter/issues/11427
final plainText = await Clipboard.getData(Clipboard.kTextPlain);
if (plainText != null) {
replaceTextWithEmbeds(
selection.start,
selection.end - selection.start,
plainText.text!,
TextSelection.collapsed(
offset: selection.start + plainText.text!.length),
);
final lines = plainText.text!.split('\n');
for (var i = 0; i < lines.length; ++i) {
final line = lines[i];
if (line.isNotEmpty) {
replaceTextWithEmbeds(
selection.start,
selection.end - selection.start,
line,
TextSelection.collapsed(offset: selection.start + line.length),
);
}
if (i != lines.length - 1) {
document.insert(selection.extentOffset, '\n');
_updateSelection(
TextSelection.collapsed(
offset: selection.extentOffset + 1,
),
insertNewline: true,
);
}
}
updateEditor?.call();
return true;
}

Loading…
Cancel
Save