[PR #880] [MERGED] [Improvement] Refactor selection menu #4409

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

📋 Pull Request Information

Original PR: https://github.com/AppFlowy-IO/AppFlowy/pull/880
Author: @LucasXu0
Created: 8/19/2022
Status: Merged
Merged: 8/19/2022
Merged by: @appflowy

Base: mainHead: selection_menu_refactor


📝 Commits (3)

  • c36ccc3 feat: [improvements] integrate logging library in AppFlowyEditor
  • a404a96 docs: improve log.dart documentation
  • ad7e408 feat: [Improvement] Refactor selection menu #879

📊 Changes

34 files changed (+1172 additions, -598 deletions)

View changed files

frontend/app_flowy/packages/appflowy_editor/assets/document.json (+0 -58)
📝 frontend/app_flowy/packages/appflowy_editor/assets/images/selection_menu/bulleted_list.svg (+0 -0)
📝 frontend/app_flowy/packages/appflowy_editor/assets/images/selection_menu/checkbox.svg (+0 -0)
📝 frontend/app_flowy/packages/appflowy_editor/assets/images/selection_menu/h1.svg (+0 -0)
📝 frontend/app_flowy/packages/appflowy_editor/assets/images/selection_menu/h2.svg (+0 -0)
📝 frontend/app_flowy/packages/appflowy_editor/assets/images/selection_menu/h3.svg (+0 -0)
📝 frontend/app_flowy/packages/appflowy_editor/assets/images/selection_menu/number.svg (+0 -0)
📝 frontend/app_flowy/packages/appflowy_editor/assets/images/selection_menu/text.svg (+0 -0)
📝 frontend/app_flowy/packages/appflowy_editor/example/lib/main.dart (+7 -3)
📝 frontend/app_flowy/packages/appflowy_editor/lib/appflowy_editor.dart (+1 -0)
📝 frontend/app_flowy/packages/appflowy_editor/lib/src/editor_state.dart (+12 -2)
frontend/app_flowy/packages/appflowy_editor/lib/src/infra/log.dart (+138 -0)
📝 frontend/app_flowy/packages/appflowy_editor/lib/src/operation/transaction_builder.dart (+1 -1)
📝 frontend/app_flowy/packages/appflowy_editor/lib/src/render/rich_text/checkbox_text.dart (+0 -1)
frontend/app_flowy/packages/appflowy_editor/lib/src/render/selection_menu/selection_menu_item_widget.dart (+54 -0)
frontend/app_flowy/packages/appflowy_editor/lib/src/render/selection_menu/selection_menu_service.dart (+171 -0)
frontend/app_flowy/packages/appflowy_editor/lib/src/render/selection_menu/selection_menu_widget.dart (+278 -0)
📝 frontend/app_flowy/packages/appflowy_editor/lib/src/service/editor_service.dart (+27 -22)
📝 frontend/app_flowy/packages/appflowy_editor/lib/src/service/input_service.dart (+3 -1)
📝 frontend/app_flowy/packages/appflowy_editor/lib/src/service/internal_key_event_handlers/copy_paste_handler.dart (+5 -5)

...and 14 more files

📄 Description

#879


🔄 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/880 **Author:** [@LucasXu0](https://github.com/LucasXu0) **Created:** 8/19/2022 **Status:** ✅ Merged **Merged:** 8/19/2022 **Merged by:** [@appflowy](https://github.com/appflowy) **Base:** `main` ← **Head:** `selection_menu_refactor` --- ### 📝 Commits (3) - [`c36ccc3`](https://github.com/AppFlowy-IO/AppFlowy/commit/c36ccc39ceda7b5b0b5ea833e1de58552b020f14) feat: [improvements] integrate logging library in AppFlowyEditor - [`a404a96`](https://github.com/AppFlowy-IO/AppFlowy/commit/a404a96099d4e383bf245a494d67393d5c82f3de) docs: improve log.dart documentation - [`ad7e408`](https://github.com/AppFlowy-IO/AppFlowy/commit/ad7e408046e2490be8b0e76ab4cb46e3897da1a1) feat: [Improvement] Refactor selection menu #879 ### 📊 Changes **34 files changed** (+1172 additions, -598 deletions) <details> <summary>View changed files</summary> ➖ `frontend/app_flowy/packages/appflowy_editor/assets/document.json` (+0 -58) 📝 `frontend/app_flowy/packages/appflowy_editor/assets/images/selection_menu/bulleted_list.svg` (+0 -0) 📝 `frontend/app_flowy/packages/appflowy_editor/assets/images/selection_menu/checkbox.svg` (+0 -0) 📝 `frontend/app_flowy/packages/appflowy_editor/assets/images/selection_menu/h1.svg` (+0 -0) 📝 `frontend/app_flowy/packages/appflowy_editor/assets/images/selection_menu/h2.svg` (+0 -0) 📝 `frontend/app_flowy/packages/appflowy_editor/assets/images/selection_menu/h3.svg` (+0 -0) 📝 `frontend/app_flowy/packages/appflowy_editor/assets/images/selection_menu/number.svg` (+0 -0) 📝 `frontend/app_flowy/packages/appflowy_editor/assets/images/selection_menu/text.svg` (+0 -0) 📝 `frontend/app_flowy/packages/appflowy_editor/example/lib/main.dart` (+7 -3) 📝 `frontend/app_flowy/packages/appflowy_editor/lib/appflowy_editor.dart` (+1 -0) 📝 `frontend/app_flowy/packages/appflowy_editor/lib/src/editor_state.dart` (+12 -2) ➕ `frontend/app_flowy/packages/appflowy_editor/lib/src/infra/log.dart` (+138 -0) 📝 `frontend/app_flowy/packages/appflowy_editor/lib/src/operation/transaction_builder.dart` (+1 -1) 📝 `frontend/app_flowy/packages/appflowy_editor/lib/src/render/rich_text/checkbox_text.dart` (+0 -1) ➕ `frontend/app_flowy/packages/appflowy_editor/lib/src/render/selection_menu/selection_menu_item_widget.dart` (+54 -0) ➕ `frontend/app_flowy/packages/appflowy_editor/lib/src/render/selection_menu/selection_menu_service.dart` (+171 -0) ➕ `frontend/app_flowy/packages/appflowy_editor/lib/src/render/selection_menu/selection_menu_widget.dart` (+278 -0) 📝 `frontend/app_flowy/packages/appflowy_editor/lib/src/service/editor_service.dart` (+27 -22) 📝 `frontend/app_flowy/packages/appflowy_editor/lib/src/service/input_service.dart` (+3 -1) 📝 `frontend/app_flowy/packages/appflowy_editor/lib/src/service/internal_key_event_handlers/copy_paste_handler.dart` (+5 -5) _...and 14 more files_ </details> ### 📄 Description #879 --- <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:40 +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#4409
No description provided.