[PR #1144] [MERGED] Support web platform for AppFlowy Editor #4556

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

📋 Pull Request Information

Original PR: https://github.com/AppFlowy-IO/AppFlowy/pull/1144
Author: @LucasXu0
Created: 9/23/2022
Status: Merged
Merged: 9/24/2022
Merged by: @LucasXu0

Base: mainHead: web_support


📝 Commits (4)

  • c5af7db fix: could not input space in editor
  • ab35355 feat: implement find the forward nearest text node
  • d648f2b fix: merge current text node's children to previous text node
  • 6bda1fd fix: delete the nested bulleted list will lost the children nodes

📊 Changes

32 files changed (+973 additions, -452 deletions)

View changed files

frontend/app_flowy/packages/appflowy_editor/example/.firebaserc (+5 -0)
frontend/app_flowy/packages/appflowy_editor/example/firebase.json (+23 -0)
📝 frontend/app_flowy/packages/appflowy_editor/example/lib/main.dart (+51 -22)
frontend/app_flowy/packages/appflowy_editor/example/lib/plugin/image_node_widget.dart (+0 -165)
frontend/app_flowy/packages/appflowy_editor/example/lib/plugin/youtube_link_node_widget.dart (+0 -100)
📝 frontend/app_flowy/packages/appflowy_editor/example/macos/Flutter/GeneratedPluginRegistrant.swift (+0 -2)
📝 frontend/app_flowy/packages/appflowy_editor/example/macos/Podfile.lock (+0 -6)
📝 frontend/app_flowy/packages/appflowy_editor/example/pubspec.yaml (+2 -2)
📝 frontend/app_flowy/packages/appflowy_editor/lib/src/document/node.dart (+36 -31)
📝 frontend/app_flowy/packages/appflowy_editor/lib/src/document/selection.dart (+2 -4)
📝 frontend/app_flowy/packages/appflowy_editor/lib/src/extensions/path_extensions.dart (+30 -0)
frontend/app_flowy/packages/appflowy_editor/lib/src/infra/infra.dart (+46 -0)
📝 frontend/app_flowy/packages/appflowy_editor/lib/src/operation/transaction_builder.dart (+2 -2)
📝 frontend/app_flowy/packages/appflowy_editor/lib/src/render/rich_text/built_in_text_widget.dart (+56 -0)
📝 frontend/app_flowy/packages/appflowy_editor/lib/src/render/rich_text/bulleted_list_text.dart (+6 -2)
📝 frontend/app_flowy/packages/appflowy_editor/lib/src/render/rich_text/checkbox_text.dart (+6 -46)
📝 frontend/app_flowy/packages/appflowy_editor/lib/src/render/rich_text/rich_text.dart (+6 -2)
📝 frontend/app_flowy/packages/appflowy_editor/lib/src/service/editor_service.dart (+6 -0)
📝 frontend/app_flowy/packages/appflowy_editor/lib/src/service/input_service.dart (+22 -6)
📝 frontend/app_flowy/packages/appflowy_editor/lib/src/service/internal_key_event_handlers/backspace_handler.dart (+41 -26)

...and 12 more files

📄 Description

No description provided


🔄 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/1144 **Author:** [@LucasXu0](https://github.com/LucasXu0) **Created:** 9/23/2022 **Status:** ✅ Merged **Merged:** 9/24/2022 **Merged by:** [@LucasXu0](https://github.com/LucasXu0) **Base:** `main` ← **Head:** `web_support` --- ### 📝 Commits (4) - [`c5af7db`](https://github.com/AppFlowy-IO/AppFlowy/commit/c5af7db2cd90af323b3e459b06013d4f627fe272) fix: could not input space in editor - [`ab35355`](https://github.com/AppFlowy-IO/AppFlowy/commit/ab353551d135c5693d48862fd3f57011f79dacbf) feat: implement find the forward nearest text node - [`d648f2b`](https://github.com/AppFlowy-IO/AppFlowy/commit/d648f2b5b924583acc1bd1de300f67db6370e5a2) fix: merge current text node's children to previous text node - [`6bda1fd`](https://github.com/AppFlowy-IO/AppFlowy/commit/6bda1fd2ead4a89e1b66b010df58560e55e64c0b) fix: delete the nested bulleted list will lost the children nodes ### 📊 Changes **32 files changed** (+973 additions, -452 deletions) <details> <summary>View changed files</summary> ➕ `frontend/app_flowy/packages/appflowy_editor/example/.firebaserc` (+5 -0) ➕ `frontend/app_flowy/packages/appflowy_editor/example/firebase.json` (+23 -0) 📝 `frontend/app_flowy/packages/appflowy_editor/example/lib/main.dart` (+51 -22) ➖ `frontend/app_flowy/packages/appflowy_editor/example/lib/plugin/image_node_widget.dart` (+0 -165) ➖ `frontend/app_flowy/packages/appflowy_editor/example/lib/plugin/youtube_link_node_widget.dart` (+0 -100) 📝 `frontend/app_flowy/packages/appflowy_editor/example/macos/Flutter/GeneratedPluginRegistrant.swift` (+0 -2) 📝 `frontend/app_flowy/packages/appflowy_editor/example/macos/Podfile.lock` (+0 -6) 📝 `frontend/app_flowy/packages/appflowy_editor/example/pubspec.yaml` (+2 -2) 📝 `frontend/app_flowy/packages/appflowy_editor/lib/src/document/node.dart` (+36 -31) 📝 `frontend/app_flowy/packages/appflowy_editor/lib/src/document/selection.dart` (+2 -4) 📝 `frontend/app_flowy/packages/appflowy_editor/lib/src/extensions/path_extensions.dart` (+30 -0) ➕ `frontend/app_flowy/packages/appflowy_editor/lib/src/infra/infra.dart` (+46 -0) 📝 `frontend/app_flowy/packages/appflowy_editor/lib/src/operation/transaction_builder.dart` (+2 -2) 📝 `frontend/app_flowy/packages/appflowy_editor/lib/src/render/rich_text/built_in_text_widget.dart` (+56 -0) 📝 `frontend/app_flowy/packages/appflowy_editor/lib/src/render/rich_text/bulleted_list_text.dart` (+6 -2) 📝 `frontend/app_flowy/packages/appflowy_editor/lib/src/render/rich_text/checkbox_text.dart` (+6 -46) 📝 `frontend/app_flowy/packages/appflowy_editor/lib/src/render/rich_text/rich_text.dart` (+6 -2) 📝 `frontend/app_flowy/packages/appflowy_editor/lib/src/service/editor_service.dart` (+6 -0) 📝 `frontend/app_flowy/packages/appflowy_editor/lib/src/service/input_service.dart` (+22 -6) 📝 `frontend/app_flowy/packages/appflowy_editor/lib/src/service/internal_key_event_handlers/backspace_handler.dart` (+41 -26) _...and 12 more files_ </details> ### 📄 Description _No description provided_ --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
mirror 2026-03-23 21:38:20 +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#4556
No description provided.