|
|
|
@ -2,6 +2,7 @@ import 'package:flutter/material.dart'; |
|
|
|
|
|
|
|
|
|
import '../../../translations.dart'; |
|
|
|
|
import '../../document/attribute.dart'; |
|
|
|
|
import '../../document/style.dart'; |
|
|
|
|
import '../../toolbar/buttons/link_style2_button.dart'; |
|
|
|
|
import '../../toolbar/buttons/search/search_dialog.dart'; |
|
|
|
|
import '../editor.dart'; |
|
|
|
@ -38,6 +39,7 @@ class QuillEditorDeleteTextAction<T extends DirectionalTextEditingIntent> |
|
|
|
|
final selection = state.textEditingValue.selection; |
|
|
|
|
assert(selection.isValid); |
|
|
|
|
|
|
|
|
|
Object? execute() { |
|
|
|
|
if (!selection.isCollapsed) { |
|
|
|
|
return Actions.invoke( |
|
|
|
|
context!, |
|
|
|
@ -76,6 +78,35 @@ class QuillEditorDeleteTextAction<T extends DirectionalTextEditingIntent> |
|
|
|
|
); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
/// Backspace event needs to 'remember' the style of the deleted text. |
|
|
|
|
/// Example: enter styled text, backspace to erase and reenter - expects to use the same style and not reset to default. |
|
|
|
|
/// Also must handle situations where text is selected and deleted by backspace. |
|
|
|
|
/// Note: This implementation is the same as that used by word processors. |
|
|
|
|
/// Backspace events are handled differently from selection replacement or using the delete key. |
|
|
|
|
Style? postStyle; |
|
|
|
|
if (!intent.forward) { |
|
|
|
|
final start = selection.start + (selection.isCollapsed ? 0 : 1); |
|
|
|
|
var target = state.controller.document.collectStyle(start, 0); |
|
|
|
|
if (start > 0) { |
|
|
|
|
final style = state.controller.document.collectStyle(start - 1, 0); |
|
|
|
|
for (final key in style.attributes.keys) { |
|
|
|
|
if (Attribute.inlineKeys.contains(key)) { |
|
|
|
|
if (!target.containsKey(key)) { |
|
|
|
|
target = target.put(Attribute(key, AttributeScope.inline, null)); |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
postStyle = target; |
|
|
|
|
} |
|
|
|
|
// |
|
|
|
|
final result = execute(); |
|
|
|
|
if (postStyle != null) { |
|
|
|
|
state.controller.forceToggledStyle(postStyle); |
|
|
|
|
} |
|
|
|
|
return result; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
@override |
|
|
|
|
bool get isActionEnabled => |
|
|
|
|
!state.widget.configurations.readOnly && |
|
|
|
|