From e9f669da7edfa3ab47d56e002e33618104c2a61d Mon Sep 17 00:00:00 2001 From: singerdmx Date: Sat, 19 Dec 2020 19:44:45 -0800 Subject: [PATCH] Add Document.fromJson(List data) --- lib/models/documents/document.dart | 34 ++++++++++++++++++++++++++++++ lib/models/rules/insert.dart | 4 ++-- 2 files changed, 36 insertions(+), 2 deletions(-) diff --git a/lib/models/documents/document.dart b/lib/models/documents/document.dart index 75af0be4..1d7da881 100644 --- a/lib/models/documents/document.dart +++ b/lib/models/documents/document.dart @@ -30,6 +30,16 @@ class Document { final StreamController> _observer = StreamController.broadcast(); + Stream get changes => _observer.stream; + + Document() : _delta = Delta()..insert('\n') { + _loadDocument(_delta); + } + + Document.fromJson(List data) : _delta = _transform(Delta.fromJson(data)) { + _loadDocument(_delta); + } + Delta insert(int index, Object data) { assert(index >= 0); assert(data is String || data is Embeddable); @@ -157,6 +167,30 @@ class Document { } String toPlainText() => _root.children.map((e) => e.toPlainText()).join(''); + + _loadDocument(Delta doc) { + assert((doc.last.data as String).endsWith('\n')); + int offset = 0; + for (final op in doc.toList()) { + final style = + op.attributes != null ? Style.fromJson(op.attributes) : null; + if (op.isInsert) { + final data = _normalize(op.data); + _root.insert(offset, data, style); + } else { + throw ArgumentError.value(doc, + 'Document Delta can only contain insert operations but ${op.key} found.'); + } + offset += op.length; + } + final node = _root.last; + if (node is Line && + node.parent is! Block && + node.style.isEmpty && + _root.childCount > 1) { + _root.remove(node); + } + } } enum ChangeSource { diff --git a/lib/models/rules/insert.dart b/lib/models/rules/insert.dart index 557277db..cab7bcca 100644 --- a/lib/models/rules/insert.dart +++ b/lib/models/rules/insert.dart @@ -155,8 +155,8 @@ class AutoExitBlockRule extends InsertRule { return null; } - // retain(1) should be '\n', set it with no attribute (default to null) - return Delta()..retain(index)..retain(1); + // retain(1) should be '\n', set it with no attribute + return Delta()..retain(index)..retain(1, {}); } }