Refactor out _handleImageInsert method

pull/13/head
singerdmx 4 years ago
parent 1486e5dcae
commit 1f333f4d96
  1. 36
      lib/models/documents/document.dart

@ -173,26 +173,30 @@ class Document {
for (int i = 0; i < ops.length; i++) { for (int i = 0; i < ops.length; i++) {
Operation op = ops[i]; Operation op = ops[i];
res.push(op); res.push(op);
bool nextOpIsImage = i + 1 < ops.length && _handleImageInsert(i, ops, op, res);
ops[i + 1].isInsert &&
ops[i + 1].data is! String;
if (nextOpIsImage && !(op.data as String).endsWith('\n')) {
res.push(Operation.insert('\n', null));
}
// Currently embed is equivalent to image and hence `is! String`
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).startsWith('\n');
if (opInsertImage && (i + 1 == ops.length - 1 || !nextOpIsLineBreak)) {
// automatically append '\n' for image
res.push(Operation.insert('\n', null));
}
} }
return res; return res;
} }
static void _handleImageInsert(
int i, List<Operation> ops, Operation op, Delta res) {
bool nextOpIsImage =
i + 1 < ops.length && ops[i + 1].isInsert && ops[i + 1].data is! String;
if (nextOpIsImage && !(op.data as String).endsWith('\n')) {
res.push(Operation.insert('\n', null));
}
// Currently embed is equivalent to image and hence `is! String`
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).startsWith('\n');
if (opInsertImage && (i + 1 == ops.length - 1 || !nextOpIsLineBreak)) {
// automatically append '\n' for image
res.push(Operation.insert('\n', null));
}
}
Object _normalize(Object data) { Object _normalize(Object data) {
if (data is String) { if (data is String) {
return data; return data;

Loading…
Cancel
Save