automatically append '\n' for image

pull/13/head
singerdmx 4 years ago
parent 6fa586ab57
commit bb6fd50f36
  1. 13
      lib/models/documents/document.dart

@ -169,10 +169,17 @@ class Document {
static Delta _transform(Delta delta) { static Delta _transform(Delta delta) {
Delta res = Delta(); Delta res = Delta();
for (Operation op in delta.toList()) { List<Operation> ops = delta.toList();
for (int i = 0; i < ops.length; i++) {
Operation op = ops[i];
res.push(op); res.push(op);
if (op.isInsert && op.data is! String) { // Currently embed is equivalent to image and hence `is! String`
// This case is 'insert embed' bool opInsertImage = op.isInsert && op.data is! String;
bool nextOpIsLineBreak = i + 1 < ops.length &&
ops[i + 1].isInsert &&
ops[i + 1].data is String &&
(ops[i + 1].data as String) == '\n';
if (opInsertImage && (i + 1 == ops.length - 1 || !nextOpIsLineBreak)) {
// automatically append '\n' for image // automatically append '\n' for image
res.push(Operation.insert('\n', null)); res.push(Operation.insert('\n', null));
} }

Loading…
Cancel
Save