[PR #726] [MERGED] feat: add input service to handle text editing. #4296

Closed
opened 2026-03-23 21:37:11 +00:00 by mirror · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/AppFlowy-IO/AppFlowy/pull/726
Author: @LucasXu0
Created: 7/27/2022
Status: Merged
Merged: 7/28/2022
Merged by: @LucasXu0

Base: feat/flowy_editorHead: feat/flowy_editor_input_service


📝 Commits (7)

  • 155b675 feat: implement input service(alpha)
  • 84eed9e feat: refresh the selection when the metrics changed.
  • 445ff56 feat: implement handler - press the enter key in the edge of text node
  • 45a8566 feat: implement rich text component in flowy_ediotr and support markdown style rendering.
  • c5560ca feat: import SvgPicture package to display SVG
  • 985fe14 feat: update RichText render style
  • 612e3dd feat: decorate TextSpan with global style

📊 Changes

36 files changed (+1920 additions, -544 deletions)

View changed files

frontend/app_flowy/packages/flowy_editor/assets/images/check.svg (+4 -0)
frontend/app_flowy/packages/flowy_editor/assets/images/point.svg (+3 -0)
frontend/app_flowy/packages/flowy_editor/assets/images/quote.svg (+3 -0)
frontend/app_flowy/packages/flowy_editor/assets/images/uncheck.svg (+3 -0)
📝 frontend/app_flowy/packages/flowy_editor/example/assets/document.json (+19 -2)
frontend/app_flowy/packages/flowy_editor/example/assets/example.json (+193 -0)
frontend/app_flowy/packages/flowy_editor/example/lib/expandable_floating_action_button.dart (+234 -0)
📝 frontend/app_flowy/packages/flowy_editor/example/lib/main.dart (+91 -48)
📝 frontend/app_flowy/packages/flowy_editor/example/lib/plugin/document_node_widget.dart (+1 -1)
📝 frontend/app_flowy/packages/flowy_editor/example/lib/plugin/image_node_widget.dart (+5 -2)
frontend/app_flowy/packages/flowy_editor/example/lib/plugin/old_text_node_widget.dart (+352 -0)
📝 frontend/app_flowy/packages/flowy_editor/example/lib/plugin/selected_text_node_widget.dart (+10 -9)
frontend/app_flowy/packages/flowy_editor/example/lib/plugin/text_node_widget.dart (+0 -352)
📝 frontend/app_flowy/packages/flowy_editor/example/lib/plugin/text_with_check_box_node_widget.dart (+2 -2)
📝 frontend/app_flowy/packages/flowy_editor/example/lib/plugin/text_with_heading_node_widget.dart (+2 -2)
📝 frontend/app_flowy/packages/flowy_editor/example/pubspec.lock (+36 -1)
📝 frontend/app_flowy/packages/flowy_editor/example/pubspec.yaml (+1 -0)
📝 frontend/app_flowy/packages/flowy_editor/lib/document/node.dart (+9 -0)
📝 frontend/app_flowy/packages/flowy_editor/lib/editor_state.dart (+4 -0)
📝 frontend/app_flowy/packages/flowy_editor/lib/extensions/node_extensions.dart (+0 -2)

...and 16 more files

📄 Description

#622


🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/AppFlowy-IO/AppFlowy/pull/726 **Author:** [@LucasXu0](https://github.com/LucasXu0) **Created:** 7/27/2022 **Status:** ✅ Merged **Merged:** 7/28/2022 **Merged by:** [@LucasXu0](https://github.com/LucasXu0) **Base:** `feat/flowy_editor` ← **Head:** `feat/flowy_editor_input_service` --- ### 📝 Commits (7) - [`155b675`](https://github.com/AppFlowy-IO/AppFlowy/commit/155b675dbe3382c976421d443dc5f8f46c281663) feat: implement input service(alpha) - [`84eed9e`](https://github.com/AppFlowy-IO/AppFlowy/commit/84eed9e3402f324a4f4ac687c723d35f2dca17da) feat: refresh the selection when the metrics changed. - [`445ff56`](https://github.com/AppFlowy-IO/AppFlowy/commit/445ff561b56eba912f01d60d966a93633a959340) feat: implement handler - press the enter key in the edge of text node - [`45a8566`](https://github.com/AppFlowy-IO/AppFlowy/commit/45a8566e61f44d2705d0e30edbe6e555f39cf02d) feat: implement rich text component in flowy_ediotr and support markdown style rendering. - [`c5560ca`](https://github.com/AppFlowy-IO/AppFlowy/commit/c5560caf3c2a692920dcba883b682507db72a1de) feat: import SvgPicture package to display SVG - [`985fe14`](https://github.com/AppFlowy-IO/AppFlowy/commit/985fe14a8ba4fb9aff9e8319867c3b0560f918de) feat: update RichText render style - [`612e3dd`](https://github.com/AppFlowy-IO/AppFlowy/commit/612e3dd50fc19c6188d992b7a2a2198ac1f7fb40) feat: decorate TextSpan with global style ### 📊 Changes **36 files changed** (+1920 additions, -544 deletions) <details> <summary>View changed files</summary> ➕ `frontend/app_flowy/packages/flowy_editor/assets/images/check.svg` (+4 -0) ➕ `frontend/app_flowy/packages/flowy_editor/assets/images/point.svg` (+3 -0) ➕ `frontend/app_flowy/packages/flowy_editor/assets/images/quote.svg` (+3 -0) ➕ `frontend/app_flowy/packages/flowy_editor/assets/images/uncheck.svg` (+3 -0) 📝 `frontend/app_flowy/packages/flowy_editor/example/assets/document.json` (+19 -2) ➕ `frontend/app_flowy/packages/flowy_editor/example/assets/example.json` (+193 -0) ➕ `frontend/app_flowy/packages/flowy_editor/example/lib/expandable_floating_action_button.dart` (+234 -0) 📝 `frontend/app_flowy/packages/flowy_editor/example/lib/main.dart` (+91 -48) 📝 `frontend/app_flowy/packages/flowy_editor/example/lib/plugin/document_node_widget.dart` (+1 -1) 📝 `frontend/app_flowy/packages/flowy_editor/example/lib/plugin/image_node_widget.dart` (+5 -2) ➕ `frontend/app_flowy/packages/flowy_editor/example/lib/plugin/old_text_node_widget.dart` (+352 -0) 📝 `frontend/app_flowy/packages/flowy_editor/example/lib/plugin/selected_text_node_widget.dart` (+10 -9) ➖ `frontend/app_flowy/packages/flowy_editor/example/lib/plugin/text_node_widget.dart` (+0 -352) 📝 `frontend/app_flowy/packages/flowy_editor/example/lib/plugin/text_with_check_box_node_widget.dart` (+2 -2) 📝 `frontend/app_flowy/packages/flowy_editor/example/lib/plugin/text_with_heading_node_widget.dart` (+2 -2) 📝 `frontend/app_flowy/packages/flowy_editor/example/pubspec.lock` (+36 -1) 📝 `frontend/app_flowy/packages/flowy_editor/example/pubspec.yaml` (+1 -0) 📝 `frontend/app_flowy/packages/flowy_editor/lib/document/node.dart` (+9 -0) 📝 `frontend/app_flowy/packages/flowy_editor/lib/editor_state.dart` (+4 -0) 📝 `frontend/app_flowy/packages/flowy_editor/lib/extensions/node_extensions.dart` (+0 -2) _...and 16 more files_ </details> ### 📄 Description [#622](https://github.com/AppFlowy-IO/AppFlowy/issues/622) --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
mirror 2026-03-23 21:37:11 +00:00
Sign in to join this conversation.
No milestone
No project
No assignees
1 participant
Notifications
Due date
The due date is invalid or out of range. Please use the format "yyyy-mm-dd".

No due date set.

Dependencies

No dependencies set.

Reference
AppFlowy-IO/AppFlowy#4296
No description provided.