From 60eaf0715b34624f65e5294f51b54f4b1144af55 Mon Sep 17 00:00:00 2001 From: Alan Mantoux Date: Mon, 4 Dec 2023 11:02:45 +0100 Subject: [PATCH] Fix RTL detection & add tests --- .../fleather/lib/src/widgets/autoformats.dart | 16 ++++++++-------- .../fleather/test/widgets/autoformats_test.dart | 15 +++++++++++++++ 2 files changed, 23 insertions(+), 8 deletions(-) diff --git a/packages/fleather/lib/src/widgets/autoformats.dart b/packages/fleather/lib/src/widgets/autoformats.dart index 8d82f759..b9272c30 100644 --- a/packages/fleather/lib/src/widgets/autoformats.dart +++ b/packages/fleather/lib/src/widgets/autoformats.dart @@ -353,13 +353,13 @@ class _AutoTextDirection extends AutoFormat { return data == null || (data is String ? data.endsWith('\n') : false); } - bool _isBeforeEmptyLine(Operation next) { - final data = next.data; - return data is String ? data.startsWith('\n') : false; + bool _isBeforeEmptyLine(Operation next, String data) { + final nextData = next.data; + return nextData is String ? nextData.startsWith('$data\n') : false; } - bool _isInEmptyLine(Operation? previous, Operation next) => - _isAfterEmptyLine(previous) && _isBeforeEmptyLine(next); + bool _isInEmptyLine(Operation? previous, Operation next, String data) => + _isAfterEmptyLine(previous) && _isBeforeEmptyLine(next, data); @override AutoFormatResult? apply( @@ -370,7 +370,7 @@ class _AutoTextDirection extends AutoFormat { final previous = iter.skip(position); final next = iter.next(); - if (!_isInEmptyLine(previous, next)) return null; + if (!_isInEmptyLine(previous, next, data)) return null; final Map attributes; if (_isRTL(data)) { @@ -386,10 +386,10 @@ class _AutoTextDirection extends AutoFormat { } final change = Delta() - ..retain(position) - ..insert(data) + ..retain(position + data.length) // ..retain(1, attributes); final undo = change.invert(documentDelta); + document.compose(change, ChangeSource.local); return AutoFormatResult( selection: TextSelection.collapsed(offset: position + data.length), change: change, diff --git a/packages/fleather/test/widgets/autoformats_test.dart b/packages/fleather/test/widgets/autoformats_test.dart index fa7033f1..d06413ec 100644 --- a/packages/fleather/test/widgets/autoformats_test.dart +++ b/packages/fleather/test/widgets/autoformats_test.dart @@ -140,4 +140,19 @@ void main() { expect(autoformats.hasActiveSuggestion, isFalse); }); }); + + group('RTL detection', () { + test('Detection of RTL', () { + final document = ParchmentDocument.fromJson([ + {'insert': 'some ltr text\nש\n'} + ]); + final selection = autoformats.run(document, 14, 'ש'); + expect(selection, const TextSelection.collapsed(offset: 15)); + final attributes = document.toDelta().toList()[1].attributes; + expect(attributes, isNotNull); + expect(attributes!.containsKey(ParchmentAttribute.direction.key), isTrue); + expect(attributes[ParchmentAttribute.direction.key], + ParchmentAttribute.direction.rtl.value); + }); + }); }