[PR #908] [MERGED] Integrate image plugin into appflowy_editor #4425

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

📋 Pull Request Information

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

Base: mainHead: feat/image


📝 Commits (10+)

  • f943aea chore: improve cursor display style
  • 1f90f30 feat: implement link menu
  • 886c1f0 feat: implement command + K to trigger link menu
  • 1cd9a77 fix: could not open link without scheme
  • 6517ade fix: show remove link and copy link entry when there is not linkd text
  • 70ea808 feat: single tap to edit link and double tap to open the link
  • 44b4ef4 feat: filter the toolbar item should not be displayed
  • 60a7557 fix: link text is only displayed if all selected text satisfy linked style
  • 1262457 feat: add link menu test
  • 104b4cc test: test the toolbar_service, toolbar_*.dart

📊 Changes

52 files changed (+1922 additions, -372 deletions)

View changed files

frontend/app_flowy/packages/appflowy_editor/assets/images/clear.svg (+5 -0)
frontend/app_flowy/packages/appflowy_editor/assets/images/delete.svg (+6 -0)
frontend/app_flowy/packages/appflowy_editor/assets/images/image_toolbar/align_center.svg (+5 -0)
frontend/app_flowy/packages/appflowy_editor/assets/images/image_toolbar/align_left.svg (+5 -0)
frontend/app_flowy/packages/appflowy_editor/assets/images/image_toolbar/align_right.svg (+5 -0)
frontend/app_flowy/packages/appflowy_editor/assets/images/image_toolbar/copy.svg (+4 -0)
frontend/app_flowy/packages/appflowy_editor/assets/images/image_toolbar/delete.svg (+6 -0)
frontend/app_flowy/packages/appflowy_editor/assets/images/image_toolbar/divider.svg (+3 -0)
frontend/app_flowy/packages/appflowy_editor/assets/images/image_toolbar/share.svg (+4 -0)
frontend/app_flowy/packages/appflowy_editor/assets/images/link.svg (+4 -0)
frontend/app_flowy/packages/appflowy_editor/assets/images/selection_menu/image.svg (+5 -0)
📝 frontend/app_flowy/packages/appflowy_editor/assets/images/toolbar/link.svg (+2 -2)
📝 frontend/app_flowy/packages/appflowy_editor/example/assets/example.json (+10 -1)
📝 frontend/app_flowy/packages/appflowy_editor/example/lib/main.dart (+2 -2)
📝 frontend/app_flowy/packages/appflowy_editor/lib/src/extensions/text_node_extensions.dart (+48 -9)
📝 frontend/app_flowy/packages/appflowy_editor/lib/src/infra/log.dart (+5 -0)
📝 frontend/app_flowy/packages/appflowy_editor/lib/src/operation/transaction_builder.dart (+7 -1)
frontend/app_flowy/packages/appflowy_editor/lib/src/render/image/image_node_builder.dart (+72 -0)
frontend/app_flowy/packages/appflowy_editor/lib/src/render/image/image_node_widget.dart (+340 -0)
frontend/app_flowy/packages/appflowy_editor/lib/src/render/image/image_upload_widget.dart (+202 -0)

...and 32 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/908 **Author:** [@LucasXu0](https://github.com/LucasXu0) **Created:** 8/25/2022 **Status:** ✅ Merged **Merged:** 8/25/2022 **Merged by:** [@appflowy](https://github.com/appflowy) **Base:** `main` ← **Head:** `feat/image` --- ### 📝 Commits (10+) - [`f943aea`](https://github.com/AppFlowy-IO/AppFlowy/commit/f943aeacd7dd97162c7b6365ed744e3eef5b6c34) chore: improve cursor display style - [`1f90f30`](https://github.com/AppFlowy-IO/AppFlowy/commit/1f90f3027430f6f4f5e3a07ebef69ff419362d76) feat: implement link menu - [`886c1f0`](https://github.com/AppFlowy-IO/AppFlowy/commit/886c1f00e541d6c1b11b646845d161ee98543d69) feat: implement command + K to trigger link menu - [`1cd9a77`](https://github.com/AppFlowy-IO/AppFlowy/commit/1cd9a77e007538d1056cf864bb8225bef0dbd022) fix: could not open link without scheme - [`6517ade`](https://github.com/AppFlowy-IO/AppFlowy/commit/6517adece7a92bba53d774ad532dd11c82be4cba) fix: show remove link and copy link entry when there is not linkd text - [`70ea808`](https://github.com/AppFlowy-IO/AppFlowy/commit/70ea80878adea6c15e94c973d7155a1edd0cbf7a) feat: single tap to edit link and double tap to open the link - [`44b4ef4`](https://github.com/AppFlowy-IO/AppFlowy/commit/44b4ef4ad77a147535cc41a2c56230359dd4a774) feat: filter the toolbar item should not be displayed - [`60a7557`](https://github.com/AppFlowy-IO/AppFlowy/commit/60a7557520064929692914b66bf5ee818ced6822) fix: link text is only displayed if all selected text satisfy linked style - [`1262457`](https://github.com/AppFlowy-IO/AppFlowy/commit/1262457755865166142c0009f9b92d6251dd99d0) feat: add link menu test - [`104b4cc`](https://github.com/AppFlowy-IO/AppFlowy/commit/104b4cca9def05cd5d8f99a791055997ce217d70) test: test the toolbar_service, toolbar_*.dart ### 📊 Changes **52 files changed** (+1922 additions, -372 deletions) <details> <summary>View changed files</summary> ➕ `frontend/app_flowy/packages/appflowy_editor/assets/images/clear.svg` (+5 -0) ➕ `frontend/app_flowy/packages/appflowy_editor/assets/images/delete.svg` (+6 -0) ➕ `frontend/app_flowy/packages/appflowy_editor/assets/images/image_toolbar/align_center.svg` (+5 -0) ➕ `frontend/app_flowy/packages/appflowy_editor/assets/images/image_toolbar/align_left.svg` (+5 -0) ➕ `frontend/app_flowy/packages/appflowy_editor/assets/images/image_toolbar/align_right.svg` (+5 -0) ➕ `frontend/app_flowy/packages/appflowy_editor/assets/images/image_toolbar/copy.svg` (+4 -0) ➕ `frontend/app_flowy/packages/appflowy_editor/assets/images/image_toolbar/delete.svg` (+6 -0) ➕ `frontend/app_flowy/packages/appflowy_editor/assets/images/image_toolbar/divider.svg` (+3 -0) ➕ `frontend/app_flowy/packages/appflowy_editor/assets/images/image_toolbar/share.svg` (+4 -0) ➕ `frontend/app_flowy/packages/appflowy_editor/assets/images/link.svg` (+4 -0) ➕ `frontend/app_flowy/packages/appflowy_editor/assets/images/selection_menu/image.svg` (+5 -0) 📝 `frontend/app_flowy/packages/appflowy_editor/assets/images/toolbar/link.svg` (+2 -2) 📝 `frontend/app_flowy/packages/appflowy_editor/example/assets/example.json` (+10 -1) 📝 `frontend/app_flowy/packages/appflowy_editor/example/lib/main.dart` (+2 -2) 📝 `frontend/app_flowy/packages/appflowy_editor/lib/src/extensions/text_node_extensions.dart` (+48 -9) 📝 `frontend/app_flowy/packages/appflowy_editor/lib/src/infra/log.dart` (+5 -0) 📝 `frontend/app_flowy/packages/appflowy_editor/lib/src/operation/transaction_builder.dart` (+7 -1) ➕ `frontend/app_flowy/packages/appflowy_editor/lib/src/render/image/image_node_builder.dart` (+72 -0) ➕ `frontend/app_flowy/packages/appflowy_editor/lib/src/render/image/image_node_widget.dart` (+340 -0) ➕ `frontend/app_flowy/packages/appflowy_editor/lib/src/render/image/image_upload_widget.dart` (+202 -0) _...and 32 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:37:45 +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#4425
No description provided.