Add Document.fromJson(List data)

pull/13/head
singerdmx 4 years ago
parent 607e5ded44
commit e9f669da7e
  1. 34
      lib/models/documents/document.dart
  2. 4
      lib/models/rules/insert.dart

@ -30,6 +30,16 @@ class Document {
final StreamController<Tuple3<Delta, Delta, ChangeSource>> _observer = final StreamController<Tuple3<Delta, Delta, ChangeSource>> _observer =
StreamController.broadcast(); StreamController.broadcast();
Stream<Tuple3> 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) { Delta insert(int index, Object data) {
assert(index >= 0); assert(index >= 0);
assert(data is String || data is Embeddable); assert(data is String || data is Embeddable);
@ -157,6 +167,30 @@ class Document {
} }
String toPlainText() => _root.children.map((e) => e.toPlainText()).join(''); 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 { enum ChangeSource {

@ -155,8 +155,8 @@ class AutoExitBlockRule extends InsertRule {
return null; return null;
} }
// retain(1) should be '\n', set it with no attribute (default to null) // retain(1) should be '\n', set it with no attribute
return Delta()..retain(index)..retain(1); return Delta()..retain(index)..retain(1, {});
} }
} }

Loading…
Cancel
Save