|
|
|
@ -4,6 +4,7 @@ import 'package:flutter/rendering.dart'; |
|
|
|
|
import 'package:flutter/widgets.dart'; |
|
|
|
|
|
|
|
|
|
import '../../models/documents/document.dart'; |
|
|
|
|
import '../../models/documents/nodes/embeddable.dart'; |
|
|
|
|
import '../../models/documents/nodes/leaf.dart'; |
|
|
|
|
import '../../utils/delta.dart'; |
|
|
|
|
import '../editor.dart'; |
|
|
|
@ -26,38 +27,42 @@ mixin RawEditorStateSelectionDelegateMixin on EditorState |
|
|
|
|
return; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
final insertedText = _adjustInsertedText(diff.inserted); |
|
|
|
|
var insertedText = diff.inserted; |
|
|
|
|
final containsEmbed = |
|
|
|
|
insertedText.codeUnits.contains(Embed.kObjectReplacementInt); |
|
|
|
|
insertedText = |
|
|
|
|
containsEmbed ? _adjustInsertedText(diff.inserted) : diff.inserted; |
|
|
|
|
|
|
|
|
|
widget.controller.replaceText( |
|
|
|
|
diff.start, diff.deleted.length, insertedText, value.selection); |
|
|
|
|
|
|
|
|
|
_applyPasteStyle(insertedText, diff.start); |
|
|
|
|
_applyPasteStyleAndEmbed(insertedText, diff.start, containsEmbed); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
void _applyPasteStyle(String insertedText, int start) { |
|
|
|
|
if (insertedText == pastePlainText && pastePlainText != '') { |
|
|
|
|
void _applyPasteStyleAndEmbed( |
|
|
|
|
String insertedText, int start, bool containsEmbed) { |
|
|
|
|
if (insertedText == pastePlainText && pastePlainText != '' || |
|
|
|
|
containsEmbed) { |
|
|
|
|
final pos = start; |
|
|
|
|
for (var i = 0; i < pasteStyle.length; i++) { |
|
|
|
|
final offset = pasteStyle[i].offset; |
|
|
|
|
final style = pasteStyle[i].value; |
|
|
|
|
widget.controller.formatTextStyle( |
|
|
|
|
pos + offset, |
|
|
|
|
i == pasteStyle.length - 1 |
|
|
|
|
? pastePlainText.length - offset |
|
|
|
|
: pasteStyle[i + 1].offset, |
|
|
|
|
style); |
|
|
|
|
for (var i = 0; i < pasteStyleAndEmbed.length; i++) { |
|
|
|
|
final offset = pasteStyleAndEmbed[i].offset; |
|
|
|
|
final styleAndEmbed = pasteStyleAndEmbed[i].value; |
|
|
|
|
|
|
|
|
|
if (styleAndEmbed is Embeddable) { |
|
|
|
|
widget.controller.replaceText(pos + offset, 0, styleAndEmbed, null); |
|
|
|
|
} else { |
|
|
|
|
widget.controller.formatTextStyle( |
|
|
|
|
pos + offset, |
|
|
|
|
i == pasteStyleAndEmbed.length - 1 |
|
|
|
|
? pastePlainText.length - offset |
|
|
|
|
: pasteStyleAndEmbed[i + 1].offset, |
|
|
|
|
styleAndEmbed); |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
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) { |
|
|
|
|