|
|
|
@ -33,7 +33,7 @@ class PreserveLineStyleOnSplitRule extends InsertRule { |
|
|
|
|
|
|
|
|
|
@override |
|
|
|
|
Delta? applyRule( |
|
|
|
|
Delta document, |
|
|
|
|
Document document, |
|
|
|
|
int index, { |
|
|
|
|
int? len, |
|
|
|
|
Object? data, |
|
|
|
@ -42,8 +42,7 @@ class PreserveLineStyleOnSplitRule extends InsertRule { |
|
|
|
|
if (data is! String || data != '\n') { |
|
|
|
|
return null; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
final itr = DeltaIterator(document); |
|
|
|
|
final itr = DeltaIterator(document.toDelta()); |
|
|
|
|
final before = itr.skip(index); |
|
|
|
|
if (before == null) { |
|
|
|
|
return null; |
|
|
|
@ -84,7 +83,7 @@ class PreserveBlockStyleOnInsertRule extends InsertRule { |
|
|
|
|
|
|
|
|
|
@override |
|
|
|
|
Delta? applyRule( |
|
|
|
|
Delta document, |
|
|
|
|
Document document, |
|
|
|
|
int index, { |
|
|
|
|
int? len, |
|
|
|
|
Object? data, |
|
|
|
@ -94,8 +93,7 @@ class PreserveBlockStyleOnInsertRule extends InsertRule { |
|
|
|
|
// Only interested in text containing at least one newline character. |
|
|
|
|
return null; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
final itr = DeltaIterator(document)..skip(index); |
|
|
|
|
final itr = DeltaIterator(document.toDelta())..skip(index); |
|
|
|
|
|
|
|
|
|
// Look for the next newline. |
|
|
|
|
final nextNewLine = _getNextNewLine(itr); |
|
|
|
@ -171,7 +169,7 @@ class AutoExitBlockRule extends InsertRule { |
|
|
|
|
|
|
|
|
|
@override |
|
|
|
|
Delta? applyRule( |
|
|
|
|
Delta document, |
|
|
|
|
Document document, |
|
|
|
|
int index, { |
|
|
|
|
int? len, |
|
|
|
|
Object? data, |
|
|
|
@ -181,7 +179,7 @@ class AutoExitBlockRule extends InsertRule { |
|
|
|
|
return null; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
final itr = DeltaIterator(document); |
|
|
|
|
final itr = DeltaIterator(document.toDelta()); |
|
|
|
|
final prev = itr.skip(index), cur = itr.next(); |
|
|
|
|
final blockStyle = Style.fromJson(cur.attributes).getBlockExceptHeader(); |
|
|
|
|
// We are not in a block, ignore. |
|
|
|
@ -241,7 +239,7 @@ class ResetLineFormatOnNewLineRule extends InsertRule { |
|
|
|
|
|
|
|
|
|
@override |
|
|
|
|
Delta? applyRule( |
|
|
|
|
Delta document, |
|
|
|
|
Document document, |
|
|
|
|
int index, { |
|
|
|
|
int? len, |
|
|
|
|
Object? data, |
|
|
|
@ -251,7 +249,7 @@ class ResetLineFormatOnNewLineRule extends InsertRule { |
|
|
|
|
return null; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
final itr = DeltaIterator(document)..skip(index); |
|
|
|
|
final itr = DeltaIterator(document.toDelta())..skip(index); |
|
|
|
|
final cur = itr.next(); |
|
|
|
|
if (cur.data is! String || !(cur.data as String).startsWith('\n')) { |
|
|
|
|
return null; |
|
|
|
@ -278,7 +276,7 @@ class InsertEmbedsRule extends InsertRule { |
|
|
|
|
|
|
|
|
|
@override |
|
|
|
|
Delta? applyRule( |
|
|
|
|
Delta document, |
|
|
|
|
Document document, |
|
|
|
|
int index, { |
|
|
|
|
int? len, |
|
|
|
|
Object? data, |
|
|
|
@ -295,7 +293,7 @@ class InsertEmbedsRule extends InsertRule { |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
final delta = Delta()..retain(index + (len ?? 0)); |
|
|
|
|
final itr = DeltaIterator(document); |
|
|
|
|
final itr = DeltaIterator(document.toDelta()); |
|
|
|
|
final prev = itr.skip(index), cur = itr.next(); |
|
|
|
|
|
|
|
|
|
final textBefore = prev?.data is String ? prev!.data as String? : ''; |
|
|
|
@ -386,7 +384,7 @@ class AutoFormatMultipleLinksRule extends InsertRule { |
|
|
|
|
|
|
|
|
|
@override |
|
|
|
|
Delta? applyRule( |
|
|
|
|
Delta document, |
|
|
|
|
Document document, |
|
|
|
|
int index, { |
|
|
|
|
int? len, |
|
|
|
|
Object? data, |
|
|
|
@ -397,7 +395,7 @@ class AutoFormatMultipleLinksRule extends InsertRule { |
|
|
|
|
if (data is! String) return null; |
|
|
|
|
|
|
|
|
|
// Get current text. |
|
|
|
|
final entireText = Document.fromDelta(document).toPlainText(); |
|
|
|
|
final entireText = document.toPlainText(); |
|
|
|
|
|
|
|
|
|
// Get word before insertion. |
|
|
|
|
final leftWordPart = entireText |
|
|
|
@ -502,7 +500,7 @@ class AutoFormatLinksRule extends InsertRule { |
|
|
|
|
|
|
|
|
|
@override |
|
|
|
|
Delta? applyRule( |
|
|
|
|
Delta document, |
|
|
|
|
Document document, |
|
|
|
|
int index, { |
|
|
|
|
int? len, |
|
|
|
|
Object? data, |
|
|
|
@ -512,7 +510,7 @@ class AutoFormatLinksRule extends InsertRule { |
|
|
|
|
return null; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
final itr = DeltaIterator(document); |
|
|
|
|
final itr = DeltaIterator(document.toDelta()); |
|
|
|
|
final prev = itr.skip(index); |
|
|
|
|
if (prev == null || prev.data is! String) { |
|
|
|
|
return null; |
|
|
|
@ -548,7 +546,7 @@ class PreserveInlineStylesRule extends InsertRule { |
|
|
|
|
|
|
|
|
|
@override |
|
|
|
|
Delta? applyRule( |
|
|
|
|
Delta document, |
|
|
|
|
Document document, |
|
|
|
|
int index, { |
|
|
|
|
int? len, |
|
|
|
|
Object? data, |
|
|
|
@ -558,7 +556,7 @@ class PreserveInlineStylesRule extends InsertRule { |
|
|
|
|
return null; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
final itr = DeltaIterator(document); |
|
|
|
|
final itr = DeltaIterator(document.toDelta()); |
|
|
|
|
var prev = itr.skip(len == 0 ? index : index + 1); |
|
|
|
|
|
|
|
|
|
if (prev == null || prev.data is! String) return null; |
|
|
|
@ -609,7 +607,7 @@ class CatchAllInsertRule extends InsertRule { |
|
|
|
|
|
|
|
|
|
@override |
|
|
|
|
Delta applyRule( |
|
|
|
|
Delta document, |
|
|
|
|
Document document, |
|
|
|
|
int index, { |
|
|
|
|
int? len, |
|
|
|
|
Object? data, |
|
|
|
|