mirror of
https://github.com/flutter/samples.git
synced 2025-11-08 13:58:47 +00:00
Refactor Simplistic_Editor (#1375)
* refactor out FormattingToolbar and TextEditingDeltaHistoryView from main` * replace togglebuttonstatemanager and texteditingdeltahistorymanager with appstatemanager * fix up tests * clean up * Add ReplacementTextEditingController to AppState * formatting * `dart format` Co-authored-by: Renzo Olivares <roliv@google.com> Co-authored-by: Brett Morgan <brettmorgan@google.com>
This commit is contained in:
201
simplistic_editor/lib/app_state.dart
Normal file
201
simplistic_editor/lib/app_state.dart
Normal file
@@ -0,0 +1,201 @@
|
|||||||
|
import 'package:flutter/material.dart';
|
||||||
|
import 'package:flutter/services.dart';
|
||||||
|
|
||||||
|
import 'app_state_manager.dart';
|
||||||
|
import 'formatting_toolbar.dart' show ToggleButtonsState;
|
||||||
|
import 'replacements.dart';
|
||||||
|
|
||||||
|
class AppState {
|
||||||
|
const AppState({
|
||||||
|
required this.replacementsController,
|
||||||
|
required this.textEditingDeltaHistory,
|
||||||
|
required this.toggleButtonsState,
|
||||||
|
});
|
||||||
|
|
||||||
|
final ReplacementTextEditingController replacementsController;
|
||||||
|
final List<TextEditingDelta> textEditingDeltaHistory;
|
||||||
|
final Set<ToggleButtonsState> toggleButtonsState;
|
||||||
|
|
||||||
|
AppState copyWith({
|
||||||
|
ReplacementTextEditingController? replacementsController,
|
||||||
|
List<TextEditingDelta>? textEditingDeltaHistory,
|
||||||
|
Set<ToggleButtonsState>? toggleButtonsState,
|
||||||
|
}) {
|
||||||
|
return AppState(
|
||||||
|
replacementsController:
|
||||||
|
replacementsController ?? this.replacementsController,
|
||||||
|
textEditingDeltaHistory:
|
||||||
|
textEditingDeltaHistory ?? this.textEditingDeltaHistory,
|
||||||
|
toggleButtonsState: toggleButtonsState ?? this.toggleButtonsState,
|
||||||
|
);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
class AppStateWidget extends StatefulWidget {
|
||||||
|
const AppStateWidget({super.key, required this.child});
|
||||||
|
|
||||||
|
final Widget child;
|
||||||
|
|
||||||
|
static AppStateWidgetState of(BuildContext context) {
|
||||||
|
return context.findAncestorStateOfType<AppStateWidgetState>()!;
|
||||||
|
}
|
||||||
|
|
||||||
|
@override
|
||||||
|
State<AppStateWidget> createState() => AppStateWidgetState();
|
||||||
|
}
|
||||||
|
|
||||||
|
class AppStateWidgetState extends State<AppStateWidget> {
|
||||||
|
AppState _data = AppState(
|
||||||
|
replacementsController: ReplacementTextEditingController(
|
||||||
|
text: 'The quick brown fox jumps over the lazy dog.'),
|
||||||
|
textEditingDeltaHistory: <TextEditingDelta>[],
|
||||||
|
toggleButtonsState: <ToggleButtonsState>{},
|
||||||
|
);
|
||||||
|
|
||||||
|
void updateTextEditingDeltaHistory(List<TextEditingDelta> textEditingDeltas) {
|
||||||
|
_data = _data.copyWith(textEditingDeltaHistory: <TextEditingDelta>[
|
||||||
|
..._data.textEditingDeltaHistory,
|
||||||
|
...textEditingDeltas
|
||||||
|
]);
|
||||||
|
setState(() {});
|
||||||
|
}
|
||||||
|
|
||||||
|
void updateToggleButtonsStateOnSelectionChanged(
|
||||||
|
TextSelection selection, ReplacementTextEditingController controller) {
|
||||||
|
// When the selection changes we want to check the replacements at the new
|
||||||
|
// selection. Enable/disable toggle buttons based on the replacements found
|
||||||
|
// at the new selection.
|
||||||
|
final List<TextStyle> replacementStyles =
|
||||||
|
controller.getReplacementsAtSelection(selection);
|
||||||
|
final Set<ToggleButtonsState> hasChanged = {};
|
||||||
|
|
||||||
|
if (replacementStyles.isEmpty) {
|
||||||
|
_data = _data.copyWith(
|
||||||
|
toggleButtonsState: Set.from(_data.toggleButtonsState)
|
||||||
|
..removeAll({
|
||||||
|
ToggleButtonsState.bold,
|
||||||
|
ToggleButtonsState.italic,
|
||||||
|
ToggleButtonsState.underline,
|
||||||
|
}),
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
for (final TextStyle style in replacementStyles) {
|
||||||
|
// See [_updateToggleButtonsStateOnButtonPressed] for how
|
||||||
|
// Bold, Italic and Underline are encoded into [style]
|
||||||
|
if (style.fontWeight != null &&
|
||||||
|
!hasChanged.contains(ToggleButtonsState.bold)) {
|
||||||
|
_data = _data.copyWith(
|
||||||
|
toggleButtonsState: Set.from(_data.toggleButtonsState)
|
||||||
|
..add(ToggleButtonsState.bold),
|
||||||
|
);
|
||||||
|
hasChanged.add(ToggleButtonsState.bold);
|
||||||
|
}
|
||||||
|
|
||||||
|
if (style.fontStyle != null &&
|
||||||
|
!hasChanged.contains(ToggleButtonsState.italic)) {
|
||||||
|
_data = _data.copyWith(
|
||||||
|
toggleButtonsState: Set.from(_data.toggleButtonsState)
|
||||||
|
..add(ToggleButtonsState.italic),
|
||||||
|
);
|
||||||
|
hasChanged.add(ToggleButtonsState.italic);
|
||||||
|
}
|
||||||
|
|
||||||
|
if (style.decoration != null &&
|
||||||
|
!hasChanged.contains(ToggleButtonsState.underline)) {
|
||||||
|
_data = _data.copyWith(
|
||||||
|
toggleButtonsState: Set.from(_data.toggleButtonsState)
|
||||||
|
..add(ToggleButtonsState.underline),
|
||||||
|
);
|
||||||
|
hasChanged.add(ToggleButtonsState.underline);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
for (final TextStyle style in replacementStyles) {
|
||||||
|
if (style.fontWeight == null &&
|
||||||
|
!hasChanged.contains(ToggleButtonsState.bold)) {
|
||||||
|
_data = _data.copyWith(
|
||||||
|
toggleButtonsState: Set.from(_data.toggleButtonsState)
|
||||||
|
..remove(ToggleButtonsState.bold),
|
||||||
|
);
|
||||||
|
hasChanged.add(ToggleButtonsState.bold);
|
||||||
|
}
|
||||||
|
|
||||||
|
if (style.fontStyle == null &&
|
||||||
|
!hasChanged.contains(ToggleButtonsState.italic)) {
|
||||||
|
_data = _data.copyWith(
|
||||||
|
toggleButtonsState: Set.from(_data.toggleButtonsState)
|
||||||
|
..remove(ToggleButtonsState.italic),
|
||||||
|
);
|
||||||
|
hasChanged.add(ToggleButtonsState.italic);
|
||||||
|
}
|
||||||
|
|
||||||
|
if (style.decoration == null &&
|
||||||
|
!hasChanged.contains(ToggleButtonsState.underline)) {
|
||||||
|
_data = _data.copyWith(
|
||||||
|
toggleButtonsState: Set.from(_data.toggleButtonsState)
|
||||||
|
..remove(ToggleButtonsState.underline),
|
||||||
|
);
|
||||||
|
hasChanged.add(ToggleButtonsState.underline);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
setState(() {});
|
||||||
|
}
|
||||||
|
|
||||||
|
void updateToggleButtonsStateOnButtonPressed(int index) {
|
||||||
|
Map<int, TextStyle> attributeMap = const <int, TextStyle>{
|
||||||
|
0: TextStyle(fontWeight: FontWeight.bold),
|
||||||
|
1: TextStyle(fontStyle: FontStyle.italic),
|
||||||
|
2: TextStyle(decoration: TextDecoration.underline),
|
||||||
|
};
|
||||||
|
|
||||||
|
final ReplacementTextEditingController controller =
|
||||||
|
_data.replacementsController;
|
||||||
|
|
||||||
|
final TextRange replacementRange = TextRange(
|
||||||
|
start: controller.selection.start,
|
||||||
|
end: controller.selection.end,
|
||||||
|
);
|
||||||
|
|
||||||
|
final targetToggleButtonState = ToggleButtonsState.values[index];
|
||||||
|
|
||||||
|
if (_data.toggleButtonsState.contains(targetToggleButtonState)) {
|
||||||
|
_data = _data.copyWith(
|
||||||
|
toggleButtonsState: Set.from(_data.toggleButtonsState)
|
||||||
|
..remove(targetToggleButtonState),
|
||||||
|
);
|
||||||
|
} else {
|
||||||
|
_data = _data.copyWith(
|
||||||
|
toggleButtonsState: Set.from(_data.toggleButtonsState)
|
||||||
|
..add(targetToggleButtonState),
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
if (_data.toggleButtonsState.contains(targetToggleButtonState)) {
|
||||||
|
controller.applyReplacement(
|
||||||
|
TextEditingInlineSpanReplacement(
|
||||||
|
replacementRange,
|
||||||
|
(string, range) => TextSpan(text: string, style: attributeMap[index]),
|
||||||
|
true,
|
||||||
|
),
|
||||||
|
);
|
||||||
|
_data = _data.copyWith(replacementsController: controller);
|
||||||
|
setState(() {});
|
||||||
|
} else {
|
||||||
|
controller.disableExpand(attributeMap[index]!);
|
||||||
|
controller.removeReplacementsAtRange(
|
||||||
|
replacementRange, attributeMap[index]);
|
||||||
|
_data = _data.copyWith(replacementsController: controller);
|
||||||
|
setState(() {});
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
@override
|
||||||
|
Widget build(BuildContext context) {
|
||||||
|
return AppStateManager(
|
||||||
|
state: _data,
|
||||||
|
child: widget.child,
|
||||||
|
);
|
||||||
|
}
|
||||||
|
}
|
||||||
27
simplistic_editor/lib/app_state_manager.dart
Normal file
27
simplistic_editor/lib/app_state_manager.dart
Normal file
@@ -0,0 +1,27 @@
|
|||||||
|
import 'package:flutter/widgets.dart';
|
||||||
|
|
||||||
|
import 'app_state.dart';
|
||||||
|
|
||||||
|
class AppStateManager extends InheritedWidget {
|
||||||
|
const AppStateManager({
|
||||||
|
super.key,
|
||||||
|
required super.child,
|
||||||
|
required AppState state,
|
||||||
|
}) : _appState = state;
|
||||||
|
|
||||||
|
static AppStateManager of(BuildContext context) {
|
||||||
|
final AppStateManager? result =
|
||||||
|
context.dependOnInheritedWidgetOfExactType<AppStateManager>();
|
||||||
|
assert(result != null, 'No AppStateManager found in context');
|
||||||
|
return result!;
|
||||||
|
}
|
||||||
|
|
||||||
|
final AppState _appState;
|
||||||
|
|
||||||
|
AppState get appState => _appState;
|
||||||
|
|
||||||
|
@override
|
||||||
|
bool updateShouldNotify(AppStateManager oldWidget) {
|
||||||
|
return appState != oldWidget.appState;
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -1,13 +1,13 @@
|
|||||||
import 'dart:math' as math;
|
import 'dart:math' as math;
|
||||||
|
|
||||||
import 'package:flutter/foundation.dart';
|
import 'package:flutter/foundation.dart';
|
||||||
import 'package:flutter/gestures.dart';
|
import 'package:flutter/gestures.dart';
|
||||||
import 'package:flutter/material.dart';
|
import 'package:flutter/material.dart';
|
||||||
import 'package:flutter/rendering.dart';
|
import 'package:flutter/rendering.dart';
|
||||||
import 'package:flutter/services.dart';
|
import 'package:flutter/services.dart';
|
||||||
|
|
||||||
|
import 'app_state.dart';
|
||||||
import 'replacements.dart';
|
import 'replacements.dart';
|
||||||
import 'text_editing_delta_history_manager.dart';
|
|
||||||
import 'toggle_buttons_state_manager.dart';
|
|
||||||
|
|
||||||
/// Signature for the callback that reports when the user changes the selection
|
/// Signature for the callback that reports when the user changes the selection
|
||||||
/// (including the cursor location).
|
/// (including the cursor location).
|
||||||
@@ -43,8 +43,7 @@ class BasicTextInputClientState extends State<BasicTextInputClient>
|
|||||||
with TextSelectionDelegate
|
with TextSelectionDelegate
|
||||||
implements DeltaTextInputClient {
|
implements DeltaTextInputClient {
|
||||||
final GlobalKey _textKey = GlobalKey();
|
final GlobalKey _textKey = GlobalKey();
|
||||||
late final ToggleButtonsStateManager toggleButtonStateManager;
|
late AppStateWidgetState manager;
|
||||||
late final TextEditingDeltaHistoryManager textEditingDeltaHistoryManager;
|
|
||||||
final ClipboardStatusNotifier? _clipboardStatus =
|
final ClipboardStatusNotifier? _clipboardStatus =
|
||||||
kIsWeb ? null : ClipboardStatusNotifier();
|
kIsWeb ? null : ClipboardStatusNotifier();
|
||||||
|
|
||||||
@@ -58,8 +57,7 @@ class BasicTextInputClientState extends State<BasicTextInputClient>
|
|||||||
@override
|
@override
|
||||||
void didChangeDependencies() {
|
void didChangeDependencies() {
|
||||||
super.didChangeDependencies();
|
super.didChangeDependencies();
|
||||||
toggleButtonStateManager = ToggleButtonsStateManager.of(context);
|
manager = AppStateWidget.of(context);
|
||||||
textEditingDeltaHistoryManager = TextEditingDeltaHistoryManager.of(context);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
@override
|
@override
|
||||||
@@ -149,8 +147,7 @@ class BasicTextInputClientState extends State<BasicTextInputClient>
|
|||||||
final bool selectionChanged =
|
final bool selectionChanged =
|
||||||
_value.selection.start != value.selection.start ||
|
_value.selection.start != value.selection.start ||
|
||||||
_value.selection.end != value.selection.end;
|
_value.selection.end != value.selection.end;
|
||||||
textEditingDeltaHistoryManager
|
manager.updateTextEditingDeltaHistory(textEditingDeltas);
|
||||||
.updateTextEditingDeltaHistoryOnInput(textEditingDeltas);
|
|
||||||
|
|
||||||
_value = value;
|
_value = value;
|
||||||
|
|
||||||
@@ -162,7 +159,8 @@ class BasicTextInputClientState extends State<BasicTextInputClient>
|
|||||||
}
|
}
|
||||||
|
|
||||||
if (selectionChanged) {
|
if (selectionChanged) {
|
||||||
toggleButtonStateManager.updateToggleButtonsOnSelection(value.selection);
|
manager.updateToggleButtonsStateOnSelectionChanged(value.selection,
|
||||||
|
widget.controller as ReplacementTextEditingController);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -256,7 +254,8 @@ class BasicTextInputClientState extends State<BasicTextInputClient>
|
|||||||
final TextSelection validSelection =
|
final TextSelection validSelection =
|
||||||
TextSelection.collapsed(offset: _value.text.length);
|
TextSelection.collapsed(offset: _value.text.length);
|
||||||
_handleSelectionChanged(validSelection, null);
|
_handleSelectionChanged(validSelection, null);
|
||||||
toggleButtonStateManager.updateToggleButtonsOnSelection(validSelection);
|
manager.updateToggleButtonsStateOnSelectionChanged(validSelection,
|
||||||
|
widget.controller as ReplacementTextEditingController);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -284,8 +283,7 @@ class BasicTextInputClientState extends State<BasicTextInputClient>
|
|||||||
}
|
}
|
||||||
|
|
||||||
if (value != _value) {
|
if (value != _value) {
|
||||||
textEditingDeltaHistoryManager
|
manager.updateTextEditingDeltaHistory([textEditingDelta]);
|
||||||
.updateTextEditingDeltaHistoryOnInput([textEditingDelta]);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
userUpdateTextEditingValue(value, cause);
|
userUpdateTextEditingValue(value, cause);
|
||||||
@@ -595,8 +593,7 @@ class BasicTextInputClientState extends State<BasicTextInputClient>
|
|||||||
(widget.controller as ReplacementTextEditingController)
|
(widget.controller as ReplacementTextEditingController)
|
||||||
.syncReplacementRanges(selectionUpdate);
|
.syncReplacementRanges(selectionUpdate);
|
||||||
}
|
}
|
||||||
textEditingDeltaHistoryManager
|
manager.updateTextEditingDeltaHistory([selectionUpdate]);
|
||||||
.updateTextEditingDeltaHistoryOnInput([selectionUpdate]);
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -610,8 +607,8 @@ class BasicTextInputClientState extends State<BasicTextInputClient>
|
|||||||
_handleSelectionChanged(_value.selection, cause);
|
_handleSelectionChanged(_value.selection, cause);
|
||||||
|
|
||||||
if (selectionRangeChanged) {
|
if (selectionRangeChanged) {
|
||||||
toggleButtonStateManager
|
manager.updateToggleButtonsStateOnSelectionChanged(_value.selection,
|
||||||
.updateToggleButtonsOnSelection(_value.selection);
|
widget.controller as ReplacementTextEditingController);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
47
simplistic_editor/lib/formatting_toolbar.dart
Normal file
47
simplistic_editor/lib/formatting_toolbar.dart
Normal file
@@ -0,0 +1,47 @@
|
|||||||
|
import 'package:flutter/material.dart';
|
||||||
|
|
||||||
|
import 'app_state.dart';
|
||||||
|
import 'app_state_manager.dart';
|
||||||
|
|
||||||
|
/// The toggle buttons that can be selected.
|
||||||
|
enum ToggleButtonsState {
|
||||||
|
bold,
|
||||||
|
italic,
|
||||||
|
underline,
|
||||||
|
}
|
||||||
|
|
||||||
|
class FormattingToolbar extends StatelessWidget {
|
||||||
|
const FormattingToolbar({super.key});
|
||||||
|
|
||||||
|
@override
|
||||||
|
Widget build(BuildContext context) {
|
||||||
|
final AppStateManager manager = AppStateManager.of(context);
|
||||||
|
|
||||||
|
return Padding(
|
||||||
|
padding: const EdgeInsets.symmetric(vertical: 8.0),
|
||||||
|
child: Row(
|
||||||
|
mainAxisAlignment: MainAxisAlignment.center,
|
||||||
|
children: [
|
||||||
|
ToggleButtons(
|
||||||
|
borderRadius: const BorderRadius.all(Radius.circular(4.0)),
|
||||||
|
isSelected: [
|
||||||
|
manager.appState.toggleButtonsState
|
||||||
|
.contains(ToggleButtonsState.bold),
|
||||||
|
manager.appState.toggleButtonsState
|
||||||
|
.contains(ToggleButtonsState.italic),
|
||||||
|
manager.appState.toggleButtonsState
|
||||||
|
.contains(ToggleButtonsState.underline),
|
||||||
|
],
|
||||||
|
onPressed: (index) => AppStateWidget.of(context)
|
||||||
|
.updateToggleButtonsStateOnButtonPressed(index),
|
||||||
|
children: const [
|
||||||
|
Icon(Icons.format_bold),
|
||||||
|
Icon(Icons.format_italic),
|
||||||
|
Icon(Icons.format_underline),
|
||||||
|
],
|
||||||
|
),
|
||||||
|
],
|
||||||
|
),
|
||||||
|
);
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -1,10 +1,11 @@
|
|||||||
import 'package:flutter/material.dart';
|
import 'package:flutter/material.dart';
|
||||||
import 'package:flutter/services.dart';
|
|
||||||
|
|
||||||
|
import 'app_state.dart';
|
||||||
|
import 'app_state_manager.dart';
|
||||||
import 'basic_text_field.dart';
|
import 'basic_text_field.dart';
|
||||||
|
import 'formatting_toolbar.dart';
|
||||||
import 'replacements.dart';
|
import 'replacements.dart';
|
||||||
import 'text_editing_delta_history_manager.dart';
|
import 'text_editing_delta_history_view.dart';
|
||||||
import 'toggle_buttons_state_manager.dart';
|
|
||||||
|
|
||||||
void main() {
|
void main() {
|
||||||
runApp(const MyApp());
|
runApp(const MyApp());
|
||||||
@@ -15,7 +16,8 @@ class MyApp extends StatelessWidget {
|
|||||||
|
|
||||||
@override
|
@override
|
||||||
Widget build(BuildContext context) {
|
Widget build(BuildContext context) {
|
||||||
return MaterialApp(
|
return AppStateWidget(
|
||||||
|
child: MaterialApp(
|
||||||
debugShowCheckedModeBanner: false,
|
debugShowCheckedModeBanner: false,
|
||||||
title: 'Simplistic Editor',
|
title: 'Simplistic Editor',
|
||||||
theme: ThemeData(
|
theme: ThemeData(
|
||||||
@@ -23,6 +25,7 @@ class MyApp extends StatelessWidget {
|
|||||||
useMaterial3: true,
|
useMaterial3: true,
|
||||||
),
|
),
|
||||||
home: const MyHomePage(title: 'Simplistic Editor'),
|
home: const MyHomePage(title: 'Simplistic Editor'),
|
||||||
|
),
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -37,228 +40,20 @@ class MyHomePage extends StatefulWidget {
|
|||||||
}
|
}
|
||||||
|
|
||||||
class _MyHomePageState extends State<MyHomePage> {
|
class _MyHomePageState extends State<MyHomePage> {
|
||||||
final ReplacementTextEditingController _replacementTextEditingController =
|
late ReplacementTextEditingController _replacementTextEditingController;
|
||||||
ReplacementTextEditingController(
|
|
||||||
text: 'The quick brown fox jumps over the lazy dog.',
|
|
||||||
);
|
|
||||||
final FocusNode _focusNode = FocusNode();
|
final FocusNode _focusNode = FocusNode();
|
||||||
final Set<ToggleButtonsState> _isSelected = {};
|
|
||||||
final List<TextEditingDelta> _textEditingDeltaHistory = [];
|
|
||||||
|
|
||||||
void _updateTextEditingDeltaHistory(
|
@override
|
||||||
List<TextEditingDelta> textEditingDeltas) {
|
void initState() {
|
||||||
for (final TextEditingDelta delta in textEditingDeltas) {
|
super.initState();
|
||||||
_textEditingDeltaHistory.add(delta);
|
_replacementTextEditingController = ReplacementTextEditingController();
|
||||||
}
|
}
|
||||||
|
|
||||||
setState(() {});
|
@override
|
||||||
}
|
void didChangeDependencies() {
|
||||||
|
super.didChangeDependencies();
|
||||||
List<Widget> _buildTextEditingDeltaHistoryViews(
|
_replacementTextEditingController =
|
||||||
List<TextEditingDelta> textEditingDeltas) {
|
AppStateManager.of(context).appState.replacementsController;
|
||||||
List<Widget> textEditingDeltaViews = [];
|
|
||||||
|
|
||||||
for (final TextEditingDelta delta in textEditingDeltas) {
|
|
||||||
final TextEditingDeltaView deltaView;
|
|
||||||
|
|
||||||
if (delta is TextEditingDeltaInsertion) {
|
|
||||||
deltaView = TextEditingDeltaView(
|
|
||||||
deltaType: 'Insertion',
|
|
||||||
deltaText: delta.textInserted,
|
|
||||||
deltaRange: TextRange.collapsed(delta.insertionOffset),
|
|
||||||
newSelection: delta.selection,
|
|
||||||
newComposing: delta.composing,
|
|
||||||
);
|
|
||||||
} else if (delta is TextEditingDeltaDeletion) {
|
|
||||||
deltaView = TextEditingDeltaView(
|
|
||||||
deltaType: 'Deletion',
|
|
||||||
deltaText: delta.textDeleted,
|
|
||||||
deltaRange: delta.deletedRange,
|
|
||||||
newSelection: delta.selection,
|
|
||||||
newComposing: delta.composing,
|
|
||||||
);
|
|
||||||
} else if (delta is TextEditingDeltaReplacement) {
|
|
||||||
deltaView = TextEditingDeltaView(
|
|
||||||
deltaType: 'Replacement',
|
|
||||||
deltaText: delta.replacementText,
|
|
||||||
deltaRange: delta.replacedRange,
|
|
||||||
newSelection: delta.selection,
|
|
||||||
newComposing: delta.composing,
|
|
||||||
);
|
|
||||||
} else if (delta is TextEditingDeltaNonTextUpdate) {
|
|
||||||
deltaView = TextEditingDeltaView(
|
|
||||||
deltaType: 'NonTextUpdate',
|
|
||||||
deltaText: '',
|
|
||||||
deltaRange: TextRange.empty,
|
|
||||||
newSelection: delta.selection,
|
|
||||||
newComposing: delta.composing,
|
|
||||||
);
|
|
||||||
} else {
|
|
||||||
deltaView = const TextEditingDeltaView(
|
|
||||||
deltaType: 'Error',
|
|
||||||
deltaText: 'Error',
|
|
||||||
deltaRange: TextRange.empty,
|
|
||||||
newSelection: TextRange.empty,
|
|
||||||
newComposing: TextRange.empty,
|
|
||||||
);
|
|
||||||
}
|
|
||||||
|
|
||||||
textEditingDeltaViews.add(deltaView);
|
|
||||||
}
|
|
||||||
|
|
||||||
return textEditingDeltaViews.reversed.toList();
|
|
||||||
}
|
|
||||||
|
|
||||||
void _updateToggleButtonsStateOnSelectionChanged(TextSelection selection) {
|
|
||||||
// When the selection changes we want to check the replacements at the new
|
|
||||||
// selection. Enable/disable toggle buttons based on the replacements found
|
|
||||||
// at the new selection.
|
|
||||||
final List<TextStyle> replacementStyles =
|
|
||||||
_replacementTextEditingController.getReplacementsAtSelection(selection);
|
|
||||||
final Set<ToggleButtonsState> hasChanged = {};
|
|
||||||
|
|
||||||
if (replacementStyles.isEmpty) {
|
|
||||||
_isSelected.removeAll({
|
|
||||||
ToggleButtonsState.bold,
|
|
||||||
ToggleButtonsState.italic,
|
|
||||||
ToggleButtonsState.underline
|
|
||||||
});
|
|
||||||
}
|
|
||||||
|
|
||||||
for (final TextStyle style in replacementStyles) {
|
|
||||||
// See [_updateToggleButtonsStateOnButtonPressed] for how
|
|
||||||
// Bold, Italic and Underline are encoded into [style]
|
|
||||||
if (style.fontWeight != null &&
|
|
||||||
!hasChanged.contains(ToggleButtonsState.bold)) {
|
|
||||||
_isSelected.add(ToggleButtonsState.bold);
|
|
||||||
hasChanged.add(ToggleButtonsState.bold);
|
|
||||||
}
|
|
||||||
|
|
||||||
if (style.fontStyle != null &&
|
|
||||||
!hasChanged.contains(ToggleButtonsState.italic)) {
|
|
||||||
_isSelected.add(ToggleButtonsState.italic);
|
|
||||||
hasChanged.add(ToggleButtonsState.italic);
|
|
||||||
}
|
|
||||||
|
|
||||||
if (style.decoration != null &&
|
|
||||||
!hasChanged.contains(ToggleButtonsState.underline)) {
|
|
||||||
_isSelected.add(ToggleButtonsState.underline);
|
|
||||||
hasChanged.add(ToggleButtonsState.underline);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
for (final TextStyle style in replacementStyles) {
|
|
||||||
if (style.fontWeight == null &&
|
|
||||||
!hasChanged.contains(ToggleButtonsState.bold)) {
|
|
||||||
_isSelected.remove(ToggleButtonsState.bold);
|
|
||||||
hasChanged.add(ToggleButtonsState.bold);
|
|
||||||
}
|
|
||||||
|
|
||||||
if (style.fontStyle == null &&
|
|
||||||
!hasChanged.contains(ToggleButtonsState.italic)) {
|
|
||||||
_isSelected.remove(ToggleButtonsState.italic);
|
|
||||||
hasChanged.add(ToggleButtonsState.italic);
|
|
||||||
}
|
|
||||||
|
|
||||||
if (style.decoration == null &&
|
|
||||||
!hasChanged.contains(ToggleButtonsState.underline)) {
|
|
||||||
_isSelected.remove(ToggleButtonsState.underline);
|
|
||||||
hasChanged.add(ToggleButtonsState.underline);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
setState(() {});
|
|
||||||
}
|
|
||||||
|
|
||||||
void _updateToggleButtonsStateOnButtonPressed(int index) {
|
|
||||||
Map<int, TextStyle> attributeMap = const <int, TextStyle>{
|
|
||||||
0: TextStyle(fontWeight: FontWeight.bold),
|
|
||||||
1: TextStyle(fontStyle: FontStyle.italic),
|
|
||||||
2: TextStyle(decoration: TextDecoration.underline),
|
|
||||||
};
|
|
||||||
|
|
||||||
final TextRange replacementRange = TextRange(
|
|
||||||
start: _replacementTextEditingController.selection.start,
|
|
||||||
end: _replacementTextEditingController.selection.end,
|
|
||||||
);
|
|
||||||
|
|
||||||
final targetToggleButtonState = ToggleButtonsState.values[index];
|
|
||||||
|
|
||||||
if (_isSelected.contains(targetToggleButtonState)) {
|
|
||||||
_isSelected.remove(targetToggleButtonState);
|
|
||||||
} else {
|
|
||||||
_isSelected.add(targetToggleButtonState);
|
|
||||||
}
|
|
||||||
|
|
||||||
if (_isSelected.contains(targetToggleButtonState)) {
|
|
||||||
_replacementTextEditingController.applyReplacement(
|
|
||||||
TextEditingInlineSpanReplacement(
|
|
||||||
replacementRange,
|
|
||||||
(string, range) => TextSpan(text: string, style: attributeMap[index]),
|
|
||||||
true,
|
|
||||||
),
|
|
||||||
);
|
|
||||||
setState(() {});
|
|
||||||
} else {
|
|
||||||
_replacementTextEditingController.disableExpand(attributeMap[index]!);
|
|
||||||
_replacementTextEditingController.removeReplacementsAtRange(
|
|
||||||
replacementRange, attributeMap[index]);
|
|
||||||
setState(() {});
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
Widget _buildTextEditingDeltaViewHeading(String text) {
|
|
||||||
return Text(
|
|
||||||
text,
|
|
||||||
style: const TextStyle(
|
|
||||||
fontWeight: FontWeight.w600,
|
|
||||||
decoration: TextDecoration.underline,
|
|
||||||
),
|
|
||||||
);
|
|
||||||
}
|
|
||||||
|
|
||||||
Widget _buildTextEditingDeltaViewHeader() {
|
|
||||||
return Padding(
|
|
||||||
padding: const EdgeInsets.symmetric(horizontal: 35.0, vertical: 10.0),
|
|
||||||
child: Row(
|
|
||||||
children: [
|
|
||||||
Expanded(
|
|
||||||
child: Tooltip(
|
|
||||||
message: 'The type of text input that is occurring.'
|
|
||||||
' Check out the documentation for TextEditingDelta for more information.',
|
|
||||||
child: _buildTextEditingDeltaViewHeading('Delta Type'),
|
|
||||||
),
|
|
||||||
),
|
|
||||||
Expanded(
|
|
||||||
child: Tooltip(
|
|
||||||
message: 'The text that is being inserted or deleted',
|
|
||||||
child: _buildTextEditingDeltaViewHeading('Delta Text'),
|
|
||||||
),
|
|
||||||
),
|
|
||||||
Expanded(
|
|
||||||
child: Tooltip(
|
|
||||||
message:
|
|
||||||
'The offset in the text where the text input is occurring.',
|
|
||||||
child: _buildTextEditingDeltaViewHeading('Delta Offset'),
|
|
||||||
),
|
|
||||||
),
|
|
||||||
Expanded(
|
|
||||||
child: Tooltip(
|
|
||||||
message:
|
|
||||||
'The new text selection range after the text input has occurred.',
|
|
||||||
child: _buildTextEditingDeltaViewHeading('New Selection'),
|
|
||||||
),
|
|
||||||
),
|
|
||||||
Expanded(
|
|
||||||
child: Tooltip(
|
|
||||||
message:
|
|
||||||
'The new composing range after the text input has occurred.',
|
|
||||||
child: _buildTextEditingDeltaViewHeading('New Composing'),
|
|
||||||
),
|
|
||||||
),
|
|
||||||
],
|
|
||||||
),
|
|
||||||
);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
static Route<Object?> _aboutDialogBuilder(
|
static Route<Object?> _aboutDialogBuilder(
|
||||||
@@ -297,151 +92,29 @@ class _MyHomePageState extends State<MyHomePage> {
|
|||||||
body: Padding(
|
body: Padding(
|
||||||
padding: const EdgeInsets.all(16.0),
|
padding: const EdgeInsets.all(16.0),
|
||||||
child: Center(
|
child: Center(
|
||||||
child: ToggleButtonsStateManager(
|
|
||||||
isToggleButtonsSelected: _isSelected,
|
|
||||||
updateToggleButtonsStateOnButtonPressed:
|
|
||||||
_updateToggleButtonsStateOnButtonPressed,
|
|
||||||
updateToggleButtonStateOnSelectionChanged:
|
|
||||||
_updateToggleButtonsStateOnSelectionChanged,
|
|
||||||
child: TextEditingDeltaHistoryManager(
|
|
||||||
history: _textEditingDeltaHistory,
|
|
||||||
updateHistoryOnInput: _updateTextEditingDeltaHistory,
|
|
||||||
child: Column(
|
child: Column(
|
||||||
children: [
|
children: [
|
||||||
Padding(
|
const FormattingToolbar(),
|
||||||
padding: const EdgeInsets.symmetric(vertical: 8.0),
|
|
||||||
child: Row(
|
|
||||||
mainAxisAlignment: MainAxisAlignment.center,
|
|
||||||
children: [
|
|
||||||
Builder(builder: (innerContext) {
|
|
||||||
final ToggleButtonsStateManager manager =
|
|
||||||
ToggleButtonsStateManager.of(innerContext);
|
|
||||||
|
|
||||||
return ToggleButtons(
|
|
||||||
borderRadius:
|
|
||||||
const BorderRadius.all(Radius.circular(4.0)),
|
|
||||||
isSelected: [
|
|
||||||
manager.toggleButtonsState
|
|
||||||
.contains(ToggleButtonsState.bold),
|
|
||||||
manager.toggleButtonsState
|
|
||||||
.contains(ToggleButtonsState.italic),
|
|
||||||
manager.toggleButtonsState
|
|
||||||
.contains(ToggleButtonsState.underline),
|
|
||||||
],
|
|
||||||
onPressed: (index) => manager
|
|
||||||
.updateToggleButtonsOnButtonPressed(index),
|
|
||||||
children: const [
|
|
||||||
Icon(Icons.format_bold),
|
|
||||||
Icon(Icons.format_italic),
|
|
||||||
Icon(Icons.format_underline),
|
|
||||||
],
|
|
||||||
);
|
|
||||||
}),
|
|
||||||
],
|
|
||||||
),
|
|
||||||
),
|
|
||||||
Expanded(
|
Expanded(
|
||||||
child: Padding(
|
child: Padding(
|
||||||
padding: const EdgeInsets.symmetric(horizontal: 35.0),
|
padding: const EdgeInsets.symmetric(horizontal: 35.0),
|
||||||
child: BasicTextField(
|
child: BasicTextField(
|
||||||
controller: _replacementTextEditingController,
|
controller: _replacementTextEditingController,
|
||||||
style: const TextStyle(
|
style: const TextStyle(
|
||||||
fontSize: 18.0, color: Colors.black),
|
fontSize: 18.0,
|
||||||
|
color: Colors.black,
|
||||||
|
),
|
||||||
focusNode: _focusNode,
|
focusNode: _focusNode,
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
Expanded(
|
const Expanded(
|
||||||
child: Column(
|
child: TextEditingDeltaHistoryView(),
|
||||||
children: [
|
|
||||||
_buildTextEditingDeltaViewHeader(),
|
|
||||||
Expanded(
|
|
||||||
child: Builder(
|
|
||||||
builder: (innerContext) {
|
|
||||||
final TextEditingDeltaHistoryManager manager =
|
|
||||||
TextEditingDeltaHistoryManager.of(
|
|
||||||
innerContext);
|
|
||||||
return ListView.separated(
|
|
||||||
padding: const EdgeInsets.symmetric(
|
|
||||||
horizontal: 35.0),
|
|
||||||
itemBuilder: (context, index) {
|
|
||||||
return _buildTextEditingDeltaHistoryViews(
|
|
||||||
manager.textEditingDeltaHistory)[index];
|
|
||||||
},
|
|
||||||
itemCount:
|
|
||||||
manager.textEditingDeltaHistory.length,
|
|
||||||
separatorBuilder: (context, index) {
|
|
||||||
return const SizedBox(height: 2.0);
|
|
||||||
},
|
|
||||||
);
|
|
||||||
},
|
|
||||||
),
|
|
||||||
),
|
|
||||||
const SizedBox(height: 10),
|
|
||||||
],
|
|
||||||
),
|
|
||||||
),
|
),
|
||||||
],
|
],
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
),
|
|
||||||
),
|
|
||||||
);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
class TextEditingDeltaView extends StatelessWidget {
|
|
||||||
const TextEditingDeltaView({
|
|
||||||
super.key,
|
|
||||||
required this.deltaType,
|
|
||||||
required this.deltaText,
|
|
||||||
required this.deltaRange,
|
|
||||||
required this.newSelection,
|
|
||||||
required this.newComposing,
|
|
||||||
});
|
|
||||||
|
|
||||||
final String deltaType;
|
|
||||||
final String deltaText;
|
|
||||||
final TextRange deltaRange;
|
|
||||||
final TextRange newSelection;
|
|
||||||
final TextRange newComposing;
|
|
||||||
|
|
||||||
@override
|
|
||||||
Widget build(BuildContext context) {
|
|
||||||
late final Color rowColor;
|
|
||||||
|
|
||||||
switch (deltaType) {
|
|
||||||
case 'Insertion':
|
|
||||||
rowColor = Colors.greenAccent.shade100;
|
|
||||||
break;
|
|
||||||
case 'Deletion':
|
|
||||||
rowColor = Colors.redAccent.shade100;
|
|
||||||
break;
|
|
||||||
case 'Replacement':
|
|
||||||
rowColor = Colors.yellowAccent.shade100;
|
|
||||||
break;
|
|
||||||
case 'NonTextUpdate':
|
|
||||||
rowColor = Colors.blueAccent.shade100;
|
|
||||||
break;
|
|
||||||
default:
|
|
||||||
rowColor = Colors.white;
|
|
||||||
}
|
|
||||||
return Container(
|
|
||||||
decoration: BoxDecoration(
|
|
||||||
borderRadius: const BorderRadius.all(Radius.circular(4.0)),
|
|
||||||
color: rowColor,
|
|
||||||
),
|
|
||||||
padding: const EdgeInsets.only(top: 4.0, bottom: 4.0, left: 8.0),
|
|
||||||
child: Row(
|
|
||||||
children: [
|
|
||||||
Expanded(child: Text(deltaType)),
|
|
||||||
Expanded(child: Text(deltaText)),
|
|
||||||
Expanded(child: Text('(${deltaRange.start}, ${deltaRange.end})')),
|
|
||||||
Expanded(child: Text('(${newSelection.start}, ${newSelection.end})')),
|
|
||||||
Expanded(child: Text('(${newComposing.start}, ${newComposing.end})')),
|
|
||||||
],
|
|
||||||
),
|
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,40 +0,0 @@
|
|||||||
import 'package:flutter/services.dart' show TextEditingDelta;
|
|
||||||
import 'package:flutter/widgets.dart';
|
|
||||||
|
|
||||||
/// Signature for the callback that updates text editing delta history when a new delta
|
|
||||||
/// is received.
|
|
||||||
typedef TextEditingDeltaHistoryUpdateCallback = void Function(
|
|
||||||
List<TextEditingDelta> textEditingDeltas);
|
|
||||||
|
|
||||||
class TextEditingDeltaHistoryManager extends InheritedWidget {
|
|
||||||
const TextEditingDeltaHistoryManager({
|
|
||||||
super.key,
|
|
||||||
required super.child,
|
|
||||||
required List<TextEditingDelta> history,
|
|
||||||
required TextEditingDeltaHistoryUpdateCallback updateHistoryOnInput,
|
|
||||||
}) : _textEditingDeltaHistory = history,
|
|
||||||
_updateTextEditingDeltaHistoryOnInput = updateHistoryOnInput;
|
|
||||||
|
|
||||||
static TextEditingDeltaHistoryManager of(BuildContext context) {
|
|
||||||
final TextEditingDeltaHistoryManager? result = context
|
|
||||||
.dependOnInheritedWidgetOfExactType<TextEditingDeltaHistoryManager>();
|
|
||||||
assert(
|
|
||||||
result != null, 'No TextEditingDeltaHistoryManager found in context');
|
|
||||||
return result!;
|
|
||||||
}
|
|
||||||
|
|
||||||
final List<TextEditingDelta> _textEditingDeltaHistory;
|
|
||||||
final TextEditingDeltaHistoryUpdateCallback
|
|
||||||
_updateTextEditingDeltaHistoryOnInput;
|
|
||||||
|
|
||||||
List<TextEditingDelta> get textEditingDeltaHistory =>
|
|
||||||
_textEditingDeltaHistory;
|
|
||||||
TextEditingDeltaHistoryUpdateCallback
|
|
||||||
get updateTextEditingDeltaHistoryOnInput =>
|
|
||||||
_updateTextEditingDeltaHistoryOnInput;
|
|
||||||
|
|
||||||
@override
|
|
||||||
bool updateShouldNotify(TextEditingDeltaHistoryManager oldWidget) {
|
|
||||||
return textEditingDeltaHistory != oldWidget.textEditingDeltaHistory;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
197
simplistic_editor/lib/text_editing_delta_history_view.dart
Normal file
197
simplistic_editor/lib/text_editing_delta_history_view.dart
Normal file
@@ -0,0 +1,197 @@
|
|||||||
|
import 'package:flutter/material.dart';
|
||||||
|
import 'package:flutter/services.dart';
|
||||||
|
|
||||||
|
import 'app_state_manager.dart';
|
||||||
|
|
||||||
|
class TextEditingDeltaHistoryView extends StatelessWidget {
|
||||||
|
const TextEditingDeltaHistoryView({super.key});
|
||||||
|
|
||||||
|
List<Widget> _buildTextEditingDeltaHistoryViews(
|
||||||
|
List<TextEditingDelta> textEditingDeltas) {
|
||||||
|
List<Widget> textEditingDeltaViews = [];
|
||||||
|
|
||||||
|
for (final TextEditingDelta delta in textEditingDeltas) {
|
||||||
|
final TextEditingDeltaView deltaView;
|
||||||
|
|
||||||
|
if (delta is TextEditingDeltaInsertion) {
|
||||||
|
deltaView = TextEditingDeltaView(
|
||||||
|
deltaType: 'Insertion',
|
||||||
|
deltaText: delta.textInserted,
|
||||||
|
deltaRange: TextRange.collapsed(delta.insertionOffset),
|
||||||
|
newSelection: delta.selection,
|
||||||
|
newComposing: delta.composing,
|
||||||
|
);
|
||||||
|
} else if (delta is TextEditingDeltaDeletion) {
|
||||||
|
deltaView = TextEditingDeltaView(
|
||||||
|
deltaType: 'Deletion',
|
||||||
|
deltaText: delta.textDeleted,
|
||||||
|
deltaRange: delta.deletedRange,
|
||||||
|
newSelection: delta.selection,
|
||||||
|
newComposing: delta.composing,
|
||||||
|
);
|
||||||
|
} else if (delta is TextEditingDeltaReplacement) {
|
||||||
|
deltaView = TextEditingDeltaView(
|
||||||
|
deltaType: 'Replacement',
|
||||||
|
deltaText: delta.replacementText,
|
||||||
|
deltaRange: delta.replacedRange,
|
||||||
|
newSelection: delta.selection,
|
||||||
|
newComposing: delta.composing,
|
||||||
|
);
|
||||||
|
} else if (delta is TextEditingDeltaNonTextUpdate) {
|
||||||
|
deltaView = TextEditingDeltaView(
|
||||||
|
deltaType: 'NonTextUpdate',
|
||||||
|
deltaText: '',
|
||||||
|
deltaRange: TextRange.empty,
|
||||||
|
newSelection: delta.selection,
|
||||||
|
newComposing: delta.composing,
|
||||||
|
);
|
||||||
|
} else {
|
||||||
|
deltaView = const TextEditingDeltaView(
|
||||||
|
deltaType: 'Error',
|
||||||
|
deltaText: 'Error',
|
||||||
|
deltaRange: TextRange.empty,
|
||||||
|
newSelection: TextRange.empty,
|
||||||
|
newComposing: TextRange.empty,
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
textEditingDeltaViews.add(deltaView);
|
||||||
|
}
|
||||||
|
|
||||||
|
return textEditingDeltaViews.reversed.toList();
|
||||||
|
}
|
||||||
|
|
||||||
|
Widget _buildTextEditingDeltaViewHeader() {
|
||||||
|
return Padding(
|
||||||
|
padding: const EdgeInsets.symmetric(horizontal: 35.0, vertical: 10.0),
|
||||||
|
child: Row(
|
||||||
|
children: [
|
||||||
|
Expanded(
|
||||||
|
child: Tooltip(
|
||||||
|
message: 'The type of text input that is occurring.'
|
||||||
|
' Check out the documentation for TextEditingDelta for more information.',
|
||||||
|
child: _buildTextEditingDeltaViewHeading('Delta Type'),
|
||||||
|
),
|
||||||
|
),
|
||||||
|
Expanded(
|
||||||
|
child: Tooltip(
|
||||||
|
message: 'The text that is being inserted or deleted',
|
||||||
|
child: _buildTextEditingDeltaViewHeading('Delta Text'),
|
||||||
|
),
|
||||||
|
),
|
||||||
|
Expanded(
|
||||||
|
child: Tooltip(
|
||||||
|
message:
|
||||||
|
'The offset in the text where the text input is occurring.',
|
||||||
|
child: _buildTextEditingDeltaViewHeading('Delta Offset'),
|
||||||
|
),
|
||||||
|
),
|
||||||
|
Expanded(
|
||||||
|
child: Tooltip(
|
||||||
|
message:
|
||||||
|
'The new text selection range after the text input has occurred.',
|
||||||
|
child: _buildTextEditingDeltaViewHeading('New Selection'),
|
||||||
|
),
|
||||||
|
),
|
||||||
|
Expanded(
|
||||||
|
child: Tooltip(
|
||||||
|
message:
|
||||||
|
'The new composing range after the text input has occurred.',
|
||||||
|
child: _buildTextEditingDeltaViewHeading('New Composing'),
|
||||||
|
),
|
||||||
|
),
|
||||||
|
],
|
||||||
|
),
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
Widget _buildTextEditingDeltaViewHeading(String text) {
|
||||||
|
return Text(
|
||||||
|
text,
|
||||||
|
style: const TextStyle(
|
||||||
|
fontWeight: FontWeight.w600,
|
||||||
|
decoration: TextDecoration.underline,
|
||||||
|
),
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
@override
|
||||||
|
Widget build(BuildContext context) {
|
||||||
|
final AppStateManager manager = AppStateManager.of(context);
|
||||||
|
|
||||||
|
return Column(
|
||||||
|
children: [
|
||||||
|
_buildTextEditingDeltaViewHeader(),
|
||||||
|
Expanded(
|
||||||
|
child: ListView.separated(
|
||||||
|
padding: const EdgeInsets.symmetric(horizontal: 35.0),
|
||||||
|
itemBuilder: (context, index) {
|
||||||
|
return _buildTextEditingDeltaHistoryViews(
|
||||||
|
manager.appState.textEditingDeltaHistory)[index];
|
||||||
|
},
|
||||||
|
itemCount: manager.appState.textEditingDeltaHistory.length,
|
||||||
|
separatorBuilder: (context, index) {
|
||||||
|
return const SizedBox(height: 2.0);
|
||||||
|
},
|
||||||
|
),
|
||||||
|
),
|
||||||
|
const SizedBox(height: 10),
|
||||||
|
],
|
||||||
|
);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
class TextEditingDeltaView extends StatelessWidget {
|
||||||
|
const TextEditingDeltaView({
|
||||||
|
super.key,
|
||||||
|
required this.deltaType,
|
||||||
|
required this.deltaText,
|
||||||
|
required this.deltaRange,
|
||||||
|
required this.newSelection,
|
||||||
|
required this.newComposing,
|
||||||
|
});
|
||||||
|
|
||||||
|
final String deltaType;
|
||||||
|
final String deltaText;
|
||||||
|
final TextRange deltaRange;
|
||||||
|
final TextRange newSelection;
|
||||||
|
final TextRange newComposing;
|
||||||
|
|
||||||
|
@override
|
||||||
|
Widget build(BuildContext context) {
|
||||||
|
late final Color rowColor;
|
||||||
|
|
||||||
|
switch (deltaType) {
|
||||||
|
case 'Insertion':
|
||||||
|
rowColor = Colors.greenAccent.shade100;
|
||||||
|
break;
|
||||||
|
case 'Deletion':
|
||||||
|
rowColor = Colors.redAccent.shade100;
|
||||||
|
break;
|
||||||
|
case 'Replacement':
|
||||||
|
rowColor = Colors.yellowAccent.shade100;
|
||||||
|
break;
|
||||||
|
case 'NonTextUpdate':
|
||||||
|
rowColor = Colors.blueAccent.shade100;
|
||||||
|
break;
|
||||||
|
default:
|
||||||
|
rowColor = Colors.white;
|
||||||
|
}
|
||||||
|
return Container(
|
||||||
|
decoration: BoxDecoration(
|
||||||
|
borderRadius: const BorderRadius.all(Radius.circular(4.0)),
|
||||||
|
color: rowColor,
|
||||||
|
),
|
||||||
|
padding: const EdgeInsets.only(top: 4.0, bottom: 4.0, left: 8.0),
|
||||||
|
child: Row(
|
||||||
|
children: [
|
||||||
|
Expanded(child: Text(deltaType)),
|
||||||
|
Expanded(child: Text(deltaText)),
|
||||||
|
Expanded(child: Text('(${deltaRange.start}, ${deltaRange.end})')),
|
||||||
|
Expanded(child: Text('(${newSelection.start}, ${newSelection.end})')),
|
||||||
|
Expanded(child: Text('(${newComposing.start}, ${newComposing.end})')),
|
||||||
|
],
|
||||||
|
),
|
||||||
|
);
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -1,59 +0,0 @@
|
|||||||
import 'package:flutter/widgets.dart';
|
|
||||||
|
|
||||||
/// Signature for the callback that updates toggle button state when the user changes the selection
|
|
||||||
/// (including the cursor location).
|
|
||||||
typedef UpdateToggleButtonsStateOnSelectionChangedCallback = void Function(
|
|
||||||
TextSelection selection);
|
|
||||||
|
|
||||||
/// Signature for the callback that updates toggle button state when the user
|
|
||||||
/// presses the toggle button.
|
|
||||||
typedef UpdateToggleButtonsStateOnButtonPressedCallback = void Function(
|
|
||||||
int index);
|
|
||||||
|
|
||||||
/// The toggle buttons that can be selected.
|
|
||||||
enum ToggleButtonsState {
|
|
||||||
bold,
|
|
||||||
italic,
|
|
||||||
underline,
|
|
||||||
}
|
|
||||||
|
|
||||||
class ToggleButtonsStateManager extends InheritedWidget {
|
|
||||||
const ToggleButtonsStateManager({
|
|
||||||
super.key,
|
|
||||||
required super.child,
|
|
||||||
required Set<ToggleButtonsState> isToggleButtonsSelected,
|
|
||||||
required UpdateToggleButtonsStateOnButtonPressedCallback
|
|
||||||
updateToggleButtonsStateOnButtonPressed,
|
|
||||||
required UpdateToggleButtonsStateOnSelectionChangedCallback
|
|
||||||
updateToggleButtonStateOnSelectionChanged,
|
|
||||||
}) : _isToggleButtonsSelected = isToggleButtonsSelected,
|
|
||||||
_updateToggleButtonsStateOnButtonPressed =
|
|
||||||
updateToggleButtonsStateOnButtonPressed,
|
|
||||||
_updateToggleButtonStateOnSelectionChanged =
|
|
||||||
updateToggleButtonStateOnSelectionChanged;
|
|
||||||
|
|
||||||
static ToggleButtonsStateManager of(BuildContext context) {
|
|
||||||
final ToggleButtonsStateManager? result =
|
|
||||||
context.dependOnInheritedWidgetOfExactType<ToggleButtonsStateManager>();
|
|
||||||
assert(result != null, 'No ToggleButtonsStateManager found in context');
|
|
||||||
return result!;
|
|
||||||
}
|
|
||||||
|
|
||||||
final Set<ToggleButtonsState> _isToggleButtonsSelected;
|
|
||||||
final UpdateToggleButtonsStateOnButtonPressedCallback
|
|
||||||
_updateToggleButtonsStateOnButtonPressed;
|
|
||||||
final UpdateToggleButtonsStateOnSelectionChangedCallback
|
|
||||||
_updateToggleButtonStateOnSelectionChanged;
|
|
||||||
|
|
||||||
Set<ToggleButtonsState> get toggleButtonsState => _isToggleButtonsSelected;
|
|
||||||
UpdateToggleButtonsStateOnButtonPressedCallback
|
|
||||||
get updateToggleButtonsOnButtonPressed =>
|
|
||||||
_updateToggleButtonsStateOnButtonPressed;
|
|
||||||
UpdateToggleButtonsStateOnSelectionChangedCallback
|
|
||||||
get updateToggleButtonsOnSelection =>
|
|
||||||
_updateToggleButtonStateOnSelectionChanged;
|
|
||||||
|
|
||||||
@override
|
|
||||||
bool updateShouldNotify(ToggleButtonsStateManager oldWidget) =>
|
|
||||||
toggleButtonsState != oldWidget.toggleButtonsState;
|
|
||||||
}
|
|
||||||
@@ -10,6 +10,7 @@ import 'package:flutter_test/flutter_test.dart';
|
|||||||
|
|
||||||
import 'package:simplistic_editor/basic_text_input_client.dart';
|
import 'package:simplistic_editor/basic_text_input_client.dart';
|
||||||
import 'package:simplistic_editor/main.dart';
|
import 'package:simplistic_editor/main.dart';
|
||||||
|
import 'package:simplistic_editor/text_editing_delta_history_view.dart';
|
||||||
|
|
||||||
void main() {
|
void main() {
|
||||||
testWidgets('Default main page shows all components', (tester) async {
|
testWidgets('Default main page shows all components', (tester) async {
|
||||||
|
|||||||
Reference in New Issue
Block a user