|
|
@ -177,21 +177,22 @@ class QuillRawEditorState extends EditorState |
|
|
|
return; |
|
|
|
return; |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
if (controller.copiedImageUrl != null) { |
|
|
|
// When image copied internally in the editor |
|
|
|
|
|
|
|
final copiedImageUrl = controller.copiedImageUrl; |
|
|
|
|
|
|
|
if (copiedImageUrl != null) { |
|
|
|
final index = textEditingValue.selection.baseOffset; |
|
|
|
final index = textEditingValue.selection.baseOffset; |
|
|
|
final length = textEditingValue.selection.extentOffset - index; |
|
|
|
final length = textEditingValue.selection.extentOffset - index; |
|
|
|
final copied = controller.copiedImageUrl!; |
|
|
|
|
|
|
|
controller.replaceText( |
|
|
|
controller.replaceText( |
|
|
|
index, |
|
|
|
index, |
|
|
|
length, |
|
|
|
length, |
|
|
|
BlockEmbed.image(copied.url), |
|
|
|
BlockEmbed.image(copiedImageUrl.url), |
|
|
|
null, |
|
|
|
null, |
|
|
|
); |
|
|
|
); |
|
|
|
if (copied.styleString.isNotEmpty) { |
|
|
|
if (copiedImageUrl.styleString.isNotEmpty) { |
|
|
|
controller.formatText( |
|
|
|
controller.formatText( |
|
|
|
getEmbedNode(controller, index + 1).offset, |
|
|
|
getEmbedNode(controller, index + 1).offset, |
|
|
|
1, |
|
|
|
1, |
|
|
|
StyleAttribute(copied.styleString), |
|
|
|
StyleAttribute(copiedImageUrl.styleString), |
|
|
|
); |
|
|
|
); |
|
|
|
} |
|
|
|
} |
|
|
|
controller.copiedImageUrl = null; |
|
|
|
controller.copiedImageUrl = null; |
|
|
@ -206,46 +207,49 @@ class QuillRawEditorState extends EditorState |
|
|
|
return; |
|
|
|
return; |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
// TODO: Bug, Doesn't replace the selected text, it just add a new one |
|
|
|
final clipboard = SystemClipboard.instance; |
|
|
|
|
|
|
|
|
|
|
|
final reader = await ClipboardReader.readClipboard(); |
|
|
|
if (clipboard != null) { |
|
|
|
if (reader.canProvide(Formats.htmlText)) { |
|
|
|
// TODO: Bug, Doesn't replace the selected text, it just add a new one |
|
|
|
final html = await reader.readValue(Formats.htmlText); |
|
|
|
final reader = await clipboard.read(); |
|
|
|
if (html == null) { |
|
|
|
if (reader.canProvide(Formats.htmlText)) { |
|
|
|
return; |
|
|
|
final html = await reader.readValue(Formats.htmlText); |
|
|
|
} |
|
|
|
if (html == null) { |
|
|
|
final deltaFromCliboard = Document.fromHtml(html); |
|
|
|
return; |
|
|
|
var newDelta = Delta(); |
|
|
|
} |
|
|
|
newDelta = newDelta.compose(deltaFromCliboard); |
|
|
|
final deltaFromClipboard = Document.fromHtml(html); |
|
|
|
if (!controller.document.isEmpty()) { |
|
|
|
var newDelta = Delta(); |
|
|
|
newDelta = newDelta.compose(controller.document.toDelta()); |
|
|
|
newDelta = newDelta.compose(deltaFromClipboard); |
|
|
|
} |
|
|
|
if (!controller.document.isEmpty()) { |
|
|
|
|
|
|
|
newDelta = newDelta.compose(controller.document.toDelta()); |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
controller |
|
|
|
controller |
|
|
|
..setContents( |
|
|
|
..setContents( |
|
|
|
newDelta, |
|
|
|
newDelta, |
|
|
|
) |
|
|
|
) |
|
|
|
..updateSelection( |
|
|
|
..updateSelection( |
|
|
|
TextSelection.collapsed( |
|
|
|
TextSelection.collapsed( |
|
|
|
offset: controller.document.length, |
|
|
|
offset: controller.document.length, |
|
|
|
), |
|
|
|
), |
|
|
|
ChangeSource.local, |
|
|
|
ChangeSource.local, |
|
|
|
); |
|
|
|
); |
|
|
|
|
|
|
|
|
|
|
|
bringIntoView(textEditingValue.selection.extent); |
|
|
|
bringIntoView(textEditingValue.selection.extent); |
|
|
|
|
|
|
|
|
|
|
|
// Collapse the selection and hide the toolbar and handles. |
|
|
|
// Collapse the selection and hide the toolbar and handles. |
|
|
|
userUpdateTextEditingValue( |
|
|
|
userUpdateTextEditingValue( |
|
|
|
TextEditingValue( |
|
|
|
TextEditingValue( |
|
|
|
text: textEditingValue.text, |
|
|
|
text: textEditingValue.text, |
|
|
|
selection: TextSelection.collapsed( |
|
|
|
selection: TextSelection.collapsed( |
|
|
|
offset: textEditingValue.selection.end, |
|
|
|
offset: textEditingValue.selection.end, |
|
|
|
|
|
|
|
), |
|
|
|
), |
|
|
|
), |
|
|
|
), |
|
|
|
cause, |
|
|
|
cause, |
|
|
|
); |
|
|
|
); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
return; |
|
|
|
return; |
|
|
|
|
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
// Snapshot the input before using `await`. |
|
|
|
// Snapshot the input before using `await`. |
|
|
@ -279,25 +283,27 @@ class QuillRawEditorState extends EditorState |
|
|
|
|
|
|
|
|
|
|
|
final onImagePaste = widget.configurations.onImagePaste; |
|
|
|
final onImagePaste = widget.configurations.onImagePaste; |
|
|
|
if (onImagePaste != null) { |
|
|
|
if (onImagePaste != null) { |
|
|
|
final reader = await ClipboardReader.readClipboard(); |
|
|
|
if (clipboard != null) { |
|
|
|
if (!reader.canProvide(Formats.png)) { |
|
|
|
final reader = await clipboard.read(); |
|
|
|
return; |
|
|
|
if (!reader.canProvide(Formats.png)) { |
|
|
|
} |
|
|
|
|
|
|
|
reader.getFile(Formats.png, (value) async { |
|
|
|
|
|
|
|
final image = value; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
final imageUrl = await onImagePaste(await image.readAll()); |
|
|
|
|
|
|
|
if (imageUrl == null) { |
|
|
|
|
|
|
|
return; |
|
|
|
return; |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
reader.getFile(Formats.png, (value) async { |
|
|
|
|
|
|
|
final image = value; |
|
|
|
|
|
|
|
|
|
|
|
controller.replaceText( |
|
|
|
final imageUrl = await onImagePaste(await image.readAll()); |
|
|
|
textEditingValue.selection.end, |
|
|
|
if (imageUrl == null) { |
|
|
|
0, |
|
|
|
return; |
|
|
|
BlockEmbed.image(imageUrl), |
|
|
|
} |
|
|
|
null, |
|
|
|
|
|
|
|
); |
|
|
|
controller.replaceText( |
|
|
|
}); |
|
|
|
textEditingValue.selection.end, |
|
|
|
|
|
|
|
0, |
|
|
|
|
|
|
|
BlockEmbed.image(imageUrl), |
|
|
|
|
|
|
|
null, |
|
|
|
|
|
|
|
); |
|
|
|
|
|
|
|
}); |
|
|
|
|
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|