|
|
|
@ -3,7 +3,6 @@ import 'dart:math' as math; |
|
|
|
|
import 'package:flutter/rendering.dart'; |
|
|
|
|
import 'package:flutter/widgets.dart'; |
|
|
|
|
|
|
|
|
|
import '../../models/documents/nodes/leaf.dart'; |
|
|
|
|
import '../../utils/delta.dart'; |
|
|
|
|
import '../editor.dart'; |
|
|
|
|
|
|
|
|
@ -20,28 +19,9 @@ mixin RawEditorStateSelectionDelegateMixin on EditorState |
|
|
|
|
final oldText = widget.controller.document.toPlainText(); |
|
|
|
|
final newText = value.text; |
|
|
|
|
final diff = getDiff(oldText, newText, cursorPosition); |
|
|
|
|
final insertedText = _adjustInsertedText(diff.inserted); |
|
|
|
|
|
|
|
|
|
widget.controller.replaceText( |
|
|
|
|
diff.start, diff.deleted.length, insertedText, value.selection); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
String _adjustInsertedText(String text) { |
|
|
|
|
// For clip from editor, it may contain image, a.k.a 65532 or '\uFFFC'. |
|
|
|
|
// For clip from browser, image is directly ignore. |
|
|
|
|
// Here we skip image when pasting. |
|
|
|
|
if (!text.codeUnits.contains(Embed.kObjectReplacementInt)) { |
|
|
|
|
return text; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
final sb = StringBuffer(); |
|
|
|
|
for (var i = 0; i < text.length; i++) { |
|
|
|
|
if (text.codeUnitAt(i) == Embed.kObjectReplacementInt) { |
|
|
|
|
continue; |
|
|
|
|
} |
|
|
|
|
sb.write(text[i]); |
|
|
|
|
} |
|
|
|
|
return sb.toString(); |
|
|
|
|
diff.start, diff.deleted.length, diff.inserted, value.selection); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
@override |
|
|
|
|