[PR #926] [MERGED] #918 #4435

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

📋 Pull Request Information

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

Base: mainHead: test/image


📝 Commits (9)

  • b52f618 test: add more test cases for image
  • 0132844 fix: could not delete the image when the selection is multiple
  • 3686351 fix: #918 could not update the link sometimes
  • cde4892 feat: add copy link to link menu
  • c07af90 fix: Should not add a new line below after pressing enter at the front of the first line of text.
  • dd9cac9 feat: highlight selection when tap on the link menu
  • 42866e1 fix: The cursor will not disappear after clicking in an area outside the editor.
  • e567158 fix: The click area of the linked text is too large.
  • 3f38e24 feat: support customizing editor edges

📊 Changes

35 files changed (+579 additions, -240 deletions)

View changed files

frontend/app_flowy/packages/appflowy_editor/assets/images/copy.svg (+4 -0)
📝 frontend/app_flowy/packages/appflowy_editor/example/lib/main.dart (+5 -6)
📝 frontend/app_flowy/packages/appflowy_editor/lib/appflowy_editor.dart (+1 -0)
📝 frontend/app_flowy/packages/appflowy_editor/lib/src/document/state_tree.dart (+11 -4)
📝 frontend/app_flowy/packages/appflowy_editor/lib/src/editor_state.dart (+4 -0)
frontend/app_flowy/packages/appflowy_editor/lib/src/extensions/url_launcher_extension.dart (+14 -0)
📝 frontend/app_flowy/packages/appflowy_editor/lib/src/operation/transaction_builder.dart (+8 -6)
📝 frontend/app_flowy/packages/appflowy_editor/lib/src/render/editor/editor_entry.dart (+1 -1)
📝 frontend/app_flowy/packages/appflowy_editor/lib/src/render/image/image_node_builder.dart (+1 -0)
📝 frontend/app_flowy/packages/appflowy_editor/lib/src/render/image/image_node_widget.dart (+58 -6)
📝 frontend/app_flowy/packages/appflowy_editor/lib/src/render/link_menu/link_menu.dart (+22 -5)
📝 frontend/app_flowy/packages/appflowy_editor/lib/src/render/rich_text/bulleted_list_text.dart (+20 -23)
📝 frontend/app_flowy/packages/appflowy_editor/lib/src/render/rich_text/checkbox_text.dart (+30 -33)
📝 frontend/app_flowy/packages/appflowy_editor/lib/src/render/rich_text/flowy_rich_text.dart (+57 -43)
📝 frontend/app_flowy/packages/appflowy_editor/lib/src/render/rich_text/heading_text.dart (+7 -10)
📝 frontend/app_flowy/packages/appflowy_editor/lib/src/render/rich_text/number_list_text.dart (+18 -21)
📝 frontend/app_flowy/packages/appflowy_editor/lib/src/render/rich_text/quoted_text.dart (+20 -23)
📝 frontend/app_flowy/packages/appflowy_editor/lib/src/render/rich_text/rich_text.dart (+6 -9)
📝 frontend/app_flowy/packages/appflowy_editor/lib/src/render/rich_text/rich_text_style.dart (+0 -1)
frontend/app_flowy/packages/appflowy_editor/lib/src/render/style/editor_style.dart (+20 -0)

...and 15 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/926 **Author:** [@LucasXu0](https://github.com/LucasXu0) **Created:** 8/29/2022 **Status:** ✅ Merged **Merged:** 8/29/2022 **Merged by:** [@LucasXu0](https://github.com/LucasXu0) **Base:** `main` ← **Head:** `test/image` --- ### 📝 Commits (9) - [`b52f618`](https://github.com/AppFlowy-IO/AppFlowy/commit/b52f618b1a9beb768745b526b255cc466ba0d64b) test: add more test cases for image - [`0132844`](https://github.com/AppFlowy-IO/AppFlowy/commit/01328442a02b39ffe8cfc28cdae23b676b3d4c10) fix: could not delete the image when the selection is multiple - [`3686351`](https://github.com/AppFlowy-IO/AppFlowy/commit/3686351592b1b8a707544e3739d213b2d6433452) fix: #918 could not update the link sometimes - [`cde4892`](https://github.com/AppFlowy-IO/AppFlowy/commit/cde48926e2f9aab0fead3bcab95b546ee3f11244) feat: add copy link to link menu - [`c07af90`](https://github.com/AppFlowy-IO/AppFlowy/commit/c07af9007cf18e651d28d6622c5ad20c3cc9da69) fix: Should not add a new line below after pressing enter at the front of the first line of text. - [`dd9cac9`](https://github.com/AppFlowy-IO/AppFlowy/commit/dd9cac9c1d4a681d6fdb859d0bc199fe7c12c189) feat: highlight selection when tap on the link menu - [`42866e1`](https://github.com/AppFlowy-IO/AppFlowy/commit/42866e105702a91007f77afd6de5140c788013ad) fix: The cursor will not disappear after clicking in an area outside the editor. - [`e567158`](https://github.com/AppFlowy-IO/AppFlowy/commit/e567158cee02da9199cda2e6194dddc27a7c0d4a) fix: The click area of the linked text is too large. - [`3f38e24`](https://github.com/AppFlowy-IO/AppFlowy/commit/3f38e246ea294f6f21f8e8ef917e0fbc118c2c21) feat: support customizing editor edges ### 📊 Changes **35 files changed** (+579 additions, -240 deletions) <details> <summary>View changed files</summary> ➕ `frontend/app_flowy/packages/appflowy_editor/assets/images/copy.svg` (+4 -0) 📝 `frontend/app_flowy/packages/appflowy_editor/example/lib/main.dart` (+5 -6) 📝 `frontend/app_flowy/packages/appflowy_editor/lib/appflowy_editor.dart` (+1 -0) 📝 `frontend/app_flowy/packages/appflowy_editor/lib/src/document/state_tree.dart` (+11 -4) 📝 `frontend/app_flowy/packages/appflowy_editor/lib/src/editor_state.dart` (+4 -0) ➕ `frontend/app_flowy/packages/appflowy_editor/lib/src/extensions/url_launcher_extension.dart` (+14 -0) 📝 `frontend/app_flowy/packages/appflowy_editor/lib/src/operation/transaction_builder.dart` (+8 -6) 📝 `frontend/app_flowy/packages/appflowy_editor/lib/src/render/editor/editor_entry.dart` (+1 -1) 📝 `frontend/app_flowy/packages/appflowy_editor/lib/src/render/image/image_node_builder.dart` (+1 -0) 📝 `frontend/app_flowy/packages/appflowy_editor/lib/src/render/image/image_node_widget.dart` (+58 -6) 📝 `frontend/app_flowy/packages/appflowy_editor/lib/src/render/link_menu/link_menu.dart` (+22 -5) 📝 `frontend/app_flowy/packages/appflowy_editor/lib/src/render/rich_text/bulleted_list_text.dart` (+20 -23) 📝 `frontend/app_flowy/packages/appflowy_editor/lib/src/render/rich_text/checkbox_text.dart` (+30 -33) 📝 `frontend/app_flowy/packages/appflowy_editor/lib/src/render/rich_text/flowy_rich_text.dart` (+57 -43) 📝 `frontend/app_flowy/packages/appflowy_editor/lib/src/render/rich_text/heading_text.dart` (+7 -10) 📝 `frontend/app_flowy/packages/appflowy_editor/lib/src/render/rich_text/number_list_text.dart` (+18 -21) 📝 `frontend/app_flowy/packages/appflowy_editor/lib/src/render/rich_text/quoted_text.dart` (+20 -23) 📝 `frontend/app_flowy/packages/appflowy_editor/lib/src/render/rich_text/rich_text.dart` (+6 -9) 📝 `frontend/app_flowy/packages/appflowy_editor/lib/src/render/rich_text/rich_text_style.dart` (+0 -1) ➕ `frontend/app_flowy/packages/appflowy_editor/lib/src/render/style/editor_style.dart` (+20 -0) _...and 15 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:48 +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#4435
No description provided.