[PR #5147] [MERGED] feat: use new appflowy-editor-plugins package #6669

Closed
opened 2026-03-23 23:16:07 +00:00 by mirror · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/AppFlowy-IO/AppFlowy/pull/5147
Author: @Xazin
Created: 4/16/2024
Status: Merged
Merged: 4/17/2024
Merged by: @Xazin

Base: mainHead: chore/use-appflowy-editor-plugins


📝 Commits (5)

  • 0e530e6 feat: use new appflowy-editor-plugins package
  • 5d5deab fix: code block slash menu item
  • 0338c39 chore: update build runner dependency
  • 66d4691 chore: change dependency to pub.dev version
  • 3e5b245 chore: revert generate: false in pubspec

📊 Changes

18 files changed (+311 additions, -1226 deletions)

View changed files

📝 frontend/appflowy_flutter/integration_test/desktop/document/document_codeblock_paste_test.dart (+3 -6)
📝 frontend/appflowy_flutter/lib/plugins/document/presentation/editor_configuration.dart (+8 -0)
📝 frontend/appflowy_flutter/lib/plugins/document/presentation/editor_page.dart (+25 -4)
📝 frontend/appflowy_flutter/lib/plugins/document/presentation/editor_plugins/base/format_arrow_character.dart (+1 -1)
frontend/appflowy_flutter/lib/plugins/document/presentation/editor_plugins/code_block/code_block_component.dart (+0 -700)
frontend/appflowy_flutter/lib/plugins/document/presentation/editor_plugins/code_block/code_block_copy_button.dart (+53 -0)
frontend/appflowy_flutter/lib/plugins/document/presentation/editor_plugins/code_block/code_block_language_selector.dart (+193 -0)
frontend/appflowy_flutter/lib/plugins/document/presentation/editor_plugins/code_block/code_block_shortcut_event.dart (+0 -373)
frontend/appflowy_flutter/lib/plugins/document/presentation/editor_plugins/code_block/code_block_themes.dart (+0 -116)
📝 frontend/appflowy_flutter/lib/plugins/document/presentation/editor_plugins/code_block/code_language_screen.dart (+5 -4)
📝 frontend/appflowy_flutter/lib/plugins/document/presentation/editor_plugins/migration/editor_migration.dart (+1 -0)
📝 frontend/appflowy_flutter/lib/plugins/document/presentation/editor_plugins/mobile_toolbar_item/mobile_add_block_toolbar_item.dart (+3 -1)
📝 frontend/appflowy_flutter/lib/plugins/document/presentation/editor_plugins/mobile_toolbar_item/mobile_convert_block_toolbar_item.dart (+3 -1)
📝 frontend/appflowy_flutter/lib/plugins/document/presentation/editor_plugins/mobile_toolbar_v3/add_block_toolbar_item.dart (+3 -1)
📝 frontend/appflowy_flutter/lib/plugins/document/presentation/editor_plugins/plugins.dart (+1 -2)
📝 frontend/appflowy_flutter/lib/workspace/application/settings/shortcuts/settings_shortcuts_cubit.dart (+1 -2)
📝 frontend/appflowy_flutter/pubspec.lock (+8 -9)
📝 frontend/appflowy_flutter/pubspec.yaml (+3 -6)

📄 Description

PR Checklist

  • My code adheres to AppFlowy's Conventions
  • 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/5147 **Author:** [@Xazin](https://github.com/Xazin) **Created:** 4/16/2024 **Status:** ✅ Merged **Merged:** 4/17/2024 **Merged by:** [@Xazin](https://github.com/Xazin) **Base:** `main` ← **Head:** `chore/use-appflowy-editor-plugins` --- ### 📝 Commits (5) - [`0e530e6`](https://github.com/AppFlowy-IO/AppFlowy/commit/0e530e65f362a731e55fdd02548fe0cb6ff6128e) feat: use new appflowy-editor-plugins package - [`5d5deab`](https://github.com/AppFlowy-IO/AppFlowy/commit/5d5deab4e38a7ef0a05ed39fdffccb9e3d5ff55a) fix: code block slash menu item - [`0338c39`](https://github.com/AppFlowy-IO/AppFlowy/commit/0338c396ed7d9d83d60a3afeef22c2fd549bb1d5) chore: update build runner dependency - [`66d4691`](https://github.com/AppFlowy-IO/AppFlowy/commit/66d469119237c6bd71dd0a695941fab02ee0511f) chore: change dependency to pub.dev version - [`3e5b245`](https://github.com/AppFlowy-IO/AppFlowy/commit/3e5b2455eb792ee6be37faa0a349236a2950e7c6) chore: revert generate: false in pubspec ### 📊 Changes **18 files changed** (+311 additions, -1226 deletions) <details> <summary>View changed files</summary> 📝 `frontend/appflowy_flutter/integration_test/desktop/document/document_codeblock_paste_test.dart` (+3 -6) 📝 `frontend/appflowy_flutter/lib/plugins/document/presentation/editor_configuration.dart` (+8 -0) 📝 `frontend/appflowy_flutter/lib/plugins/document/presentation/editor_page.dart` (+25 -4) 📝 `frontend/appflowy_flutter/lib/plugins/document/presentation/editor_plugins/base/format_arrow_character.dart` (+1 -1) ➖ `frontend/appflowy_flutter/lib/plugins/document/presentation/editor_plugins/code_block/code_block_component.dart` (+0 -700) ➕ `frontend/appflowy_flutter/lib/plugins/document/presentation/editor_plugins/code_block/code_block_copy_button.dart` (+53 -0) ➕ `frontend/appflowy_flutter/lib/plugins/document/presentation/editor_plugins/code_block/code_block_language_selector.dart` (+193 -0) ➖ `frontend/appflowy_flutter/lib/plugins/document/presentation/editor_plugins/code_block/code_block_shortcut_event.dart` (+0 -373) ➖ `frontend/appflowy_flutter/lib/plugins/document/presentation/editor_plugins/code_block/code_block_themes.dart` (+0 -116) 📝 `frontend/appflowy_flutter/lib/plugins/document/presentation/editor_plugins/code_block/code_language_screen.dart` (+5 -4) 📝 `frontend/appflowy_flutter/lib/plugins/document/presentation/editor_plugins/migration/editor_migration.dart` (+1 -0) 📝 `frontend/appflowy_flutter/lib/plugins/document/presentation/editor_plugins/mobile_toolbar_item/mobile_add_block_toolbar_item.dart` (+3 -1) 📝 `frontend/appflowy_flutter/lib/plugins/document/presentation/editor_plugins/mobile_toolbar_item/mobile_convert_block_toolbar_item.dart` (+3 -1) 📝 `frontend/appflowy_flutter/lib/plugins/document/presentation/editor_plugins/mobile_toolbar_v3/add_block_toolbar_item.dart` (+3 -1) 📝 `frontend/appflowy_flutter/lib/plugins/document/presentation/editor_plugins/plugins.dart` (+1 -2) 📝 `frontend/appflowy_flutter/lib/workspace/application/settings/shortcuts/settings_shortcuts_cubit.dart` (+1 -2) 📝 `frontend/appflowy_flutter/pubspec.lock` (+8 -9) 📝 `frontend/appflowy_flutter/pubspec.yaml` (+3 -6) </details> ### 📄 Description #### PR Checklist - [x] My code adheres to [AppFlowy's Conventions](https://docs.appflowy.io/docs/documentation/software-contributions/conventions) - [ ] 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. - [x] 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 23:16:07 +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#6669
No description provided.