[PR #2536] [MERGED] integrate new editor #5284

Closed
opened 2026-03-23 22:18:03 +00:00 by mirror · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/AppFlowy-IO/AppFlowy/pull/2536
Author: @LucasXu0
Created: 5/15/2023
Status: Merged
Merged: 5/16/2023
Merged by: @appflowy

Base: developHead: develop_new_editor


📝 Commits (10+)

  • be6498c feat: update editor
  • 26f2bdf feat: integrate new editor
  • 2e9be01 feat: integrate the document2 into folder2
  • 94bd70a feat: integrate the new editor
  • c0bedb4 chore: cargo fix
  • 22c298c chore: active document feature for flowy-error
  • c179f5c feat: convert the editor action to collab action
  • 6da3726 Merge remote-tracking branch 'origin/develop' into develop_new_editor
  • 227dc87 Merge remote-tracking branch 'origin/develop' into develop_new_editor
  • 8235af8 feat: migrate the grid and board

📊 Changes

125 files changed (+4948 additions, -3235 deletions)

View changed files

frontend/appflowy_flutter/assets/images/editor/option.svg (+1 -0)
📝 frontend/appflowy_flutter/integration_test/empty_document_test.dart (+1 -1)
📝 frontend/appflowy_flutter/integration_test/open_ai_smart_menu_test.dart (+1 -1)
📝 frontend/appflowy_flutter/integration_test/util/mock/mock_openai_repository.dart (+3 -3)
📝 frontend/appflowy_flutter/lib/plugins/database_view/grid/presentation/widgets/header/type_option/select_option_editor.dart (+22 -12)
📝 frontend/appflowy_flutter/lib/plugins/document/application/doc_bloc.dart (+113 -195)
📝 frontend/appflowy_flutter/lib/plugins/document/application/doc_service.dart (+22 -41)
frontend/appflowy_flutter/lib/plugins/document/application/document_data_pb_extension.dart (+93 -0)
frontend/appflowy_flutter/lib/plugins/document/application/editor_transaction_adapter.dart (+133 -0)
📝 frontend/appflowy_flutter/lib/plugins/document/application/share_bloc.dart (+3 -3)
📝 frontend/appflowy_flutter/lib/plugins/document/document_page.dart (+81 -186)
frontend/appflowy_flutter/lib/plugins/document/editor_styles.dart (+0 -124)
frontend/appflowy_flutter/lib/plugins/document/presentation/editor_page.dart (+247 -0)
📝 frontend/appflowy_flutter/lib/plugins/document/presentation/editor_plugins/actions/editor_action_wrapper.dart (+0 -0)
frontend/appflowy_flutter/lib/plugins/document/presentation/editor_plugins/actions/option_action.dart (+171 -0)
frontend/appflowy_flutter/lib/plugins/document/presentation/editor_plugins/actions/option_action_button.dart (+170 -0)
frontend/appflowy_flutter/lib/plugins/document/presentation/editor_plugins/base/build_context_extension.dart (+15 -0)
📝 frontend/appflowy_flutter/lib/plugins/document/presentation/editor_plugins/base/built_in_page_widget.dart (+41 -42)
frontend/appflowy_flutter/lib/plugins/document/presentation/editor_plugins/base/color_extension.dart (+1 -0)
frontend/appflowy_flutter/lib/plugins/document/presentation/editor_plugins/base/emoji_picker_button.dart (+56 -0)

...and 80 more files

📄 Description

Feature Preview


PR Checklist

  • My code adheres to the AppFlowy Style Guide
  • I've listed at least one issue that this PR fixes in the description above.
  • I've added a test(s) to validate changes in this PR, or this PR only contains semantic changes.
  • All existing tests are passing.

🔄 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/2536 **Author:** [@LucasXu0](https://github.com/LucasXu0) **Created:** 5/15/2023 **Status:** ✅ Merged **Merged:** 5/16/2023 **Merged by:** [@appflowy](https://github.com/appflowy) **Base:** `develop` ← **Head:** `develop_new_editor` --- ### 📝 Commits (10+) - [`be6498c`](https://github.com/AppFlowy-IO/AppFlowy/commit/be6498c69ec7debe96689172e9fe169d7c7232aa) feat: update editor - [`26f2bdf`](https://github.com/AppFlowy-IO/AppFlowy/commit/26f2bdfab2f640e4c4e2035227e0a4c58003fca7) feat: integrate new editor - [`2e9be01`](https://github.com/AppFlowy-IO/AppFlowy/commit/2e9be01141bded18fb17da7d0e8bc05438acea36) feat: integrate the document2 into folder2 - [`94bd70a`](https://github.com/AppFlowy-IO/AppFlowy/commit/94bd70a0a2b9f93ad8d1c932c84ff9bdbeb1708d) feat: integrate the new editor - [`c0bedb4`](https://github.com/AppFlowy-IO/AppFlowy/commit/c0bedb497b282e65ece1b071ff4b4dbde2abe0e8) chore: cargo fix - [`22c298c`](https://github.com/AppFlowy-IO/AppFlowy/commit/22c298c1466c7ef45dd82d07f3f50d798d75e6bb) chore: active document feature for flowy-error - [`c179f5c`](https://github.com/AppFlowy-IO/AppFlowy/commit/c179f5cb0d49cbb7654dc2c9dce826e68522e0c1) feat: convert the editor action to collab action - [`6da3726`](https://github.com/AppFlowy-IO/AppFlowy/commit/6da37264c9505fa62a16dd170e9ed6994b1eda83) Merge remote-tracking branch 'origin/develop' into develop_new_editor - [`227dc87`](https://github.com/AppFlowy-IO/AppFlowy/commit/227dc87adb5e742d48dd4cdd010506e2eab4f170) Merge remote-tracking branch 'origin/develop' into develop_new_editor - [`8235af8`](https://github.com/AppFlowy-IO/AppFlowy/commit/8235af889416843721abf3a2c8e2e6c95bcea2d0) feat: migrate the grid and board ### 📊 Changes **125 files changed** (+4948 additions, -3235 deletions) <details> <summary>View changed files</summary> ➕ `frontend/appflowy_flutter/assets/images/editor/option.svg` (+1 -0) 📝 `frontend/appflowy_flutter/integration_test/empty_document_test.dart` (+1 -1) 📝 `frontend/appflowy_flutter/integration_test/open_ai_smart_menu_test.dart` (+1 -1) 📝 `frontend/appflowy_flutter/integration_test/util/mock/mock_openai_repository.dart` (+3 -3) 📝 `frontend/appflowy_flutter/lib/plugins/database_view/grid/presentation/widgets/header/type_option/select_option_editor.dart` (+22 -12) 📝 `frontend/appflowy_flutter/lib/plugins/document/application/doc_bloc.dart` (+113 -195) 📝 `frontend/appflowy_flutter/lib/plugins/document/application/doc_service.dart` (+22 -41) ➕ `frontend/appflowy_flutter/lib/plugins/document/application/document_data_pb_extension.dart` (+93 -0) ➕ `frontend/appflowy_flutter/lib/plugins/document/application/editor_transaction_adapter.dart` (+133 -0) 📝 `frontend/appflowy_flutter/lib/plugins/document/application/share_bloc.dart` (+3 -3) 📝 `frontend/appflowy_flutter/lib/plugins/document/document_page.dart` (+81 -186) ➖ `frontend/appflowy_flutter/lib/plugins/document/editor_styles.dart` (+0 -124) ➕ `frontend/appflowy_flutter/lib/plugins/document/presentation/editor_page.dart` (+247 -0) 📝 `frontend/appflowy_flutter/lib/plugins/document/presentation/editor_plugins/actions/editor_action_wrapper.dart` (+0 -0) ➕ `frontend/appflowy_flutter/lib/plugins/document/presentation/editor_plugins/actions/option_action.dart` (+171 -0) ➕ `frontend/appflowy_flutter/lib/plugins/document/presentation/editor_plugins/actions/option_action_button.dart` (+170 -0) ➕ `frontend/appflowy_flutter/lib/plugins/document/presentation/editor_plugins/base/build_context_extension.dart` (+15 -0) 📝 `frontend/appflowy_flutter/lib/plugins/document/presentation/editor_plugins/base/built_in_page_widget.dart` (+41 -42) ➕ `frontend/appflowy_flutter/lib/plugins/document/presentation/editor_plugins/base/color_extension.dart` (+1 -0) ➕ `frontend/appflowy_flutter/lib/plugins/document/presentation/editor_plugins/base/emoji_picker_button.dart` (+56 -0) _...and 80 more files_ </details> ### 📄 Description <!--- Thank you for submitting a pull request to AppFlowy. The team will dedicate their best efforts to reviewing and approving your pull request. If you have any questions about the project or feedback for us, please join our [Discord](https://discord.gg/wdjWUXXhtw). --> <!--- If your pull request adds a new feature, please drag and drop a video into this section to showcase what you've done! If not, you may delete this section. --> ### Feature Preview <!--- List at least one issue here that this PR addresses. If it fixes the issue, please use the [fixes](https://docs.github.com/en/get-started/writing-on-github/working-with-advanced-formatting/using-keywords-in-issues-and-pull-requests) keyword to close the issue. For example: fixes https://github.com/AppFlowy-IO/AppFlowy/pull/2106 --> --- <!--- Before you mark this PR ready for review, run through this checklist! --> #### PR Checklist - [ ] My code adheres to the [AppFlowy Style Guide](https://appflowy.gitbook.io/docs/essential-documentation/contribute-to-appflowy/software-contributions/submitting-code/style-guides) - [ ] I've listed at least one issue that this PR fixes in the description above. - [ ] I've added a test(s) to validate changes in this PR, or this PR only contains semantic changes. - [ ] All existing tests are passing. --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
mirror 2026-03-23 22:18:03 +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#5284
No description provided.