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.
39 lines
1.2 KiB
39 lines
1.2 KiB
import 'package:flutter/foundation.dart' show immutable; |
|
|
|
enum SearchEmbedMode { |
|
/// No search within Embed nodes. |
|
none, |
|
// Searches within Embed nodes using the nodes raw data [Embeddable.data.toString()] |
|
rawData, |
|
|
|
/// Searches within Embed nodes using override to [EmbedBuilder.toPlainText] |
|
plainText, |
|
} |
|
|
|
/// The configurations for the quill editor widget of flutter quill |
|
@immutable |
|
class QuillSearchConfigurations { |
|
const QuillSearchConfigurations({ |
|
this.searchEmbedMode = SearchEmbedMode.none, |
|
}); |
|
|
|
/// Search options for embed objects |
|
/// |
|
/// [SearchEmbedMode.none] disables searching within embed objects. |
|
/// [SearchEmbedMode.rawData] searches the Embed node using the raw data. |
|
/// [SearchEmbedMode.plainText] searches the Embed node using the [EmbedBuilder.toPlainText] override. |
|
final SearchEmbedMode searchEmbedMode; |
|
|
|
/// Future search options |
|
/// |
|
/// [rememberLastSearch] - would recall the last search text used. |
|
/// [enableSearchHistory] - would allow selection of previous searches. |
|
|
|
QuillSearchConfigurations copyWith({ |
|
SearchEmbedMode? searchEmbedMode, |
|
}) { |
|
return QuillSearchConfigurations( |
|
searchEmbedMode: searchEmbedMode ?? this.searchEmbedMode, |
|
); |
|
} |
|
}
|
|
|