formatting clean up

pull/1719/head
Mike Allen 1 year ago committed by X Code
parent 103157a74d
commit 1899295fd3
  1. 10
      lib/src/models/documents/document.dart
  2. 3
      lib/src/widgets/raw_editor/raw_editor_state.dart

@ -60,7 +60,7 @@ class Document {
} }
final StreamController<DocChange> documentChangeObserver = final StreamController<DocChange> documentChangeObserver =
StreamController.broadcast(); StreamController.broadcast();
final History history = History(); final History history = History();
@ -320,7 +320,7 @@ class Document {
final originalDelta = toDelta(); final originalDelta = toDelta();
for (final op in delta.toList()) { for (final op in delta.toList()) {
final style = final style =
op.attributes != null ? Style.fromJson(op.attributes) : null; op.attributes != null ? Style.fromJson(op.attributes) : null;
if (op.isInsert) { if (op.isInsert) {
// Must normalize data before inserting into the document, makes sure // Must normalize data before inserting into the document, makes sure
@ -439,7 +439,7 @@ class Document {
'Document can only contain insert operations but ${op.key} found.'); 'Document can only contain insert operations but ${op.key} found.');
} }
final style = final style =
op.attributes != null ? Style.fromJson(op.attributes) : null; op.attributes != null ? Style.fromJson(op.attributes) : null;
final data = _normalize(op.data); final data = _normalize(op.data);
_root.insert(offset, data, style); _root.insert(offset, data, style);
offset += op.length!; offset += op.length!;
@ -486,8 +486,8 @@ class Document {
static Delta fromHtml(String html) { static Delta fromHtml(String html) {
final markdown = html2md final markdown = html2md
.convert( .convert(
html, html,
) )
.replaceAll('unsafe:', ''); .replaceAll('unsafe:', '');
final mdDocument = md.Document(encodeHtml: false); final mdDocument = md.Document(encodeHtml: false);

@ -224,8 +224,7 @@ class QuillRawEditorState extends EditorState
textEditingValue.selection.start, textEditingValue.selection.start,
textEditingValue.selection.end - textEditingValue.selection.start, textEditingValue.selection.end - textEditingValue.selection.start,
deltaFromClipboard, deltaFromClipboard,
TextSelection.collapsed( TextSelection.collapsed(offset: textEditingValue.selection.end));
offset: textEditingValue.selection.end));
bringIntoView(textEditingValue.selection.extent); bringIntoView(textEditingValue.selection.extent);

Loading…
Cancel
Save