From 1f333f4d96e7dd7b5684491e5e9931841952be02 Mon Sep 17 00:00:00 2001 From: singerdmx Date: Tue, 29 Dec 2020 14:30:06 -0800 Subject: [PATCH] Refactor out _handleImageInsert method --- lib/models/documents/document.dart | 36 +++++++++++++++++------------- 1 file changed, 20 insertions(+), 16 deletions(-) diff --git a/lib/models/documents/document.dart b/lib/models/documents/document.dart index b67e20d1..21bc269a 100644 --- a/lib/models/documents/document.dart +++ b/lib/models/documents/document.dart @@ -173,26 +173,30 @@ class Document { for (int i = 0; i < ops.length; i++) { Operation op = ops[i]; res.push(op); - 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)); - } + _handleImageInsert(i, ops, op, res); } return res; } + static void _handleImageInsert( + int i, List 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) { if (data is String) { return data;