dartlangeditorflutterflutter-appsflutter-examplesflutter-packageflutter-widgetquillquill-deltaquilljsreactquillrich-textrich-text-editorwysiwygwysiwyg-editor
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
147 lines
4.5 KiB
147 lines
4.5 KiB
8 months ago
|
import 'package:flutter/widgets.dart';
|
||
|
import 'package:flutter_quill/flutter_quill.dart';
|
||
|
import 'package:flutter_quill/quill_delta.dart';
|
||
|
import 'package:test/test.dart';
|
||
|
|
||
|
class TestTimeStampEmbed extends Embeddable {
|
||
|
const TestTimeStampEmbed(
|
||
|
String value,
|
||
|
) : super(timeStampType, value);
|
||
|
|
||
|
static const String timeStampType = 'timeStamp';
|
||
|
}
|
||
|
|
||
|
class TestTimeStampEmbedBuilderWidget extends EmbedBuilder {
|
||
|
const TestTimeStampEmbedBuilderWidget();
|
||
|
|
||
|
@override
|
||
|
String get key => 'timeStamp';
|
||
|
|
||
|
@override
|
||
|
String toPlainText(Embed node) {
|
||
|
return node.value.data.split(' ')[0]; // return date component
|
||
|
}
|
||
|
|
||
|
@override
|
||
|
Widget build(
|
||
|
BuildContext context,
|
||
|
QuillController controller,
|
||
|
Embed node,
|
||
|
bool readOnly,
|
||
|
bool inline,
|
||
|
TextStyle textStyle,
|
||
|
) {
|
||
|
return Text(node.value.data);
|
||
|
}
|
||
|
}
|
||
|
|
||
|
class TestUnknownEmbedBuilder extends EmbedBuilder {
|
||
|
const TestUnknownEmbedBuilder();
|
||
|
|
||
|
@override
|
||
|
String get key => 'unknown';
|
||
|
|
||
|
@override
|
||
|
String toPlainText(Embed node) {
|
||
|
return node.value.data.toString().substring(0, 5);
|
||
|
}
|
||
|
|
||
|
@override
|
||
|
Widget build(
|
||
|
BuildContext context,
|
||
|
QuillController controller,
|
||
|
Embed node,
|
||
|
bool readOnly,
|
||
|
bool inline,
|
||
|
TextStyle textStyle,
|
||
|
) {
|
||
|
return Text(node.value.data);
|
||
|
}
|
||
|
}
|
||
|
|
||
|
void main() {
|
||
|
group('search plain', () {
|
||
|
test('search plain', () {
|
||
|
final delta = Delta()
|
||
|
..insert('Abc de\nfGhi')
|
||
|
..insert('kl', {'bold': true})
|
||
|
..insert('demnoDe\n match whole word who\n');
|
||
|
final document = Document.fromDelta(delta);
|
||
|
|
||
|
expect(document.search('de'), [4, 13, 18]);
|
||
|
expect(document.search('lde'), [12]);
|
||
|
expect(document.search('a'), [0, 23]);
|
||
|
|
||
|
expect(document.search('de', caseSensitive: true), [4, 13]);
|
||
|
expect(document.search('De', caseSensitive: true), [18]);
|
||
|
|
||
|
expect(document.search('who'), [28, 39]);
|
||
|
expect(document.search('whole', wholeWord: true), [28]);
|
||
|
expect(document.search('who', wholeWord: true), [39]);
|
||
|
});
|
||
|
|
||
|
test('search embed', () {
|
||
|
final delta = Delta()
|
||
|
..insert('Test ')
|
||
|
..insert({
|
||
|
'image': 'https://unknown08.com/7900d52.png'
|
||
|
}, {
|
||
|
'width': '230',
|
||
|
'style': {'display': 'block', 'margin': 'auto'}
|
||
|
})
|
||
|
..insert('\n')
|
||
|
..insert({'timeStamp': '2024-08-03 18:03:37.790068'})
|
||
|
..insert('\n');
|
||
|
final document = Document.fromDelta(delta);
|
||
|
|
||
|
/// Default does not search embeds
|
||
|
expect(document.search('2024'), [], reason: 'Does not search embeds');
|
||
|
|
||
|
/// Test rawData mode
|
||
|
document.editorConfigurations = const QuillEditorConfigurations(
|
||
|
searchConfigurations: QuillSearchConfigurations(
|
||
|
searchEmbedMode: SearchEmbedMode.rawData));
|
||
|
expect(document.search('18'), [7], reason: 'raw data finds timeStamp');
|
||
|
expect(document.search('d52'), [5], reason: 'raw data finds image');
|
||
|
expect(document.search('08'), [5, 7],
|
||
|
reason: 'raw data finds both embeds');
|
||
|
//
|
||
|
document.editorConfigurations = const QuillEditorConfigurations(
|
||
|
searchConfigurations: QuillSearchConfigurations(
|
||
|
searchEmbedMode: SearchEmbedMode.plainText));
|
||
|
expect(document.search('2024'), [], reason: 'No embed builders');
|
||
|
|
||
|
/// Test plainText mode
|
||
|
document.editorConfigurations = const QuillEditorConfigurations(
|
||
|
searchConfigurations: QuillSearchConfigurations(
|
||
|
searchEmbedMode: SearchEmbedMode.plainText),
|
||
|
embedBuilders: [
|
||
|
TestTimeStampEmbedBuilderWidget(),
|
||
|
],
|
||
|
);
|
||
|
expect(document.search('2024'), [7],
|
||
|
reason: 'timeStamp embed builder overrides toPlainText');
|
||
|
expect(document.search('18'), [],
|
||
|
reason: 'timeStamp overrides toPlainText returns date not time');
|
||
|
expect(document.search('08'), [7],
|
||
|
reason: 'image does not override toPlainText');
|
||
|
|
||
|
/// Test unknownEmbedBuilder
|
||
|
document.editorConfigurations = const QuillEditorConfigurations(
|
||
|
searchConfigurations: QuillSearchConfigurations(
|
||
|
searchEmbedMode: SearchEmbedMode.plainText),
|
||
|
embedBuilders: [
|
||
|
TestTimeStampEmbedBuilderWidget(),
|
||
|
],
|
||
|
unknownEmbedBuilder: TestUnknownEmbedBuilder());
|
||
|
expect(document.search('7900'), [],
|
||
|
reason:
|
||
|
'image not found because unknown returns first 5 chars of rawData');
|
||
|
expect(document.search('https'), [5],
|
||
|
reason:
|
||
|
'image found because unknown returns first 5 chars of rawData');
|
||
|
expect(document.search('http'), [5]);
|
||
|
});
|
||
|
});
|
||
|
}
|