[PR #6365] [MERGED] fix: 0.7.0 launch review issues #7334

Closed
opened 2026-03-23 23:19:09 +00:00 by mirror · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/AppFlowy-IO/AppFlowy/pull/6365
Author: @LucasXu0
Created: 9/20/2024
Status: Merged
Merged: 9/22/2024
Merged by: @appflowy

Base: mainHead: fix_launch_review_issues_070


📝 Commits (10+)

  • 283e2a8 fix: cannot use 'move to' from sidebar
  • 2dd88dd feat: disable moving the page to a database
  • 7172ed4 fix: check if the move to path is same as current path
  • b9e05cf fix: document width doesn't refresh after resetting
  • da985aa fix: disable tooltip when dragging blocks
  • babbda8 fix: reminder not render when dragging
  • c0cf349 chore: optimize code
  • e320807 fix: after changing the language in the settings page, some of the text doesn't change
  • a7f1266 Merge branch 'main' into fix_launch_review_issues_070
  • c4f5474 feat: support moving a block to another block's child

📊 Changes

23 files changed (+1132 additions, -347 deletions)

View changed files

📝 frontend/appflowy_flutter/integration_test/cloud/cloud_runner.dart (+8 -0)
frontend/appflowy_flutter/integration_test/cloud/document/document_drag_block_test.dart (+91 -0)
frontend/appflowy_flutter/integration_test/cloud/sidebar/sidebar_move_page_test.dart (+111 -0)
📝 frontend/appflowy_flutter/integration_test/cloud/workspace/collaborative_workspace_test.dart (+48 -51)
frontend/appflowy_flutter/integration_test/cloud/workspace/workspace_settings_test.dart (+96 -0)
📝 frontend/appflowy_flutter/integration_test/desktop/reminder/document_reminder_test.dart (+1 -1)
📝 frontend/appflowy_flutter/integration_test/shared/common_operations.dart (+75 -0)
frontend/appflowy_flutter/integration_test/shared/constants.dart (+6 -0)
📝 frontend/appflowy_flutter/integration_test/shared/document_test_operations.dart (+57 -0)
📝 frontend/appflowy_flutter/integration_test/shared/util.dart (+4 -4)
📝 frontend/appflowy_flutter/lib/plugins/document/presentation/editor_plugins/actions/block_action_button.dart (+25 -17)
📝 frontend/appflowy_flutter/lib/plugins/document/presentation/editor_plugins/actions/drag_to_reorder/draggable_option_button.dart (+91 -64)
frontend/appflowy_flutter/lib/plugins/document/presentation/editor_plugins/actions/drag_to_reorder/util.dart (+128 -0)
frontend/appflowy_flutter/lib/plugins/document/presentation/editor_plugins/actions/drag_to_reorder/visual_drag_area.dart (+83 -0)
📝 frontend/appflowy_flutter/lib/workspace/presentation/home/menu/sidebar/move_to/move_page_menu.dart (+30 -24)
📝 frontend/appflowy_flutter/lib/workspace/presentation/home/menu/sidebar/space/shared_widget.dart (+5 -2)
📝 frontend/appflowy_flutter/lib/workspace/presentation/home/menu/view/view_item.dart (+184 -122)
📝 frontend/appflowy_flutter/lib/workspace/presentation/home/menu/view/view_more_action_button.dart (+35 -27)
📝 frontend/appflowy_flutter/lib/workspace/presentation/settings/pages/settings_workspace_view.dart (+32 -23)
📝 frontend/appflowy_flutter/lib/workspace/presentation/settings/settings_dialog.dart (+13 -7)

...and 3 more files

📄 Description

Feature Preview

  • cannot use 'move to' from sidebar
  • show a forbiend cusor when moving a page to database
  • check if the move to path is same as current path
  • document width doesn't refresh after resetting
  • disable tooltip when dragging blocks
  • reminder not render when dragging
  • after changing the language in the settings page, some of the text doesn't change
  • support moving a block to another block's child
  • fix assertion when dragging table
  • tests
    • cannot use 'move to' from sidebar
    • show a forbiend cusor when moving a page to database
    • check if the move to path is same as current path
    • document width doesn't refresh after resetting
    • disable tooltip when dragging blocks
    • reminder not render when dragging
    • after changing the language in the settings page, some of the text doesn't change
    • support moving a block to another block's child
    • fix assertion when dragging table

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/6365 **Author:** [@LucasXu0](https://github.com/LucasXu0) **Created:** 9/20/2024 **Status:** ✅ Merged **Merged:** 9/22/2024 **Merged by:** [@appflowy](https://github.com/appflowy) **Base:** `main` ← **Head:** `fix_launch_review_issues_070` --- ### 📝 Commits (10+) - [`283e2a8`](https://github.com/AppFlowy-IO/AppFlowy/commit/283e2a8db357d9e10f5c4a68e36c03112ccc7c0f) fix: cannot use 'move to' from sidebar - [`2dd88dd`](https://github.com/AppFlowy-IO/AppFlowy/commit/2dd88ddb05015b75e928c8ebf85593198cafb914) feat: disable moving the page to a database - [`7172ed4`](https://github.com/AppFlowy-IO/AppFlowy/commit/7172ed48e9c7ce9df23c6a5872f0e28bcf794193) fix: check if the move to path is same as current path - [`b9e05cf`](https://github.com/AppFlowy-IO/AppFlowy/commit/b9e05cff7f45b39c4176288e80fc2491882f3056) fix: document width doesn't refresh after resetting - [`da985aa`](https://github.com/AppFlowy-IO/AppFlowy/commit/da985aa28828bdf67accb5961a461ddb83d2751f) fix: disable tooltip when dragging blocks - [`babbda8`](https://github.com/AppFlowy-IO/AppFlowy/commit/babbda81af98a7eb3acab2548c6a5f8d8b80a5de) fix: reminder not render when dragging - [`c0cf349`](https://github.com/AppFlowy-IO/AppFlowy/commit/c0cf34921eceb76edb0bc8d93c44cf8ef0503986) chore: optimize code - [`e320807`](https://github.com/AppFlowy-IO/AppFlowy/commit/e3208070cc93c93a3a6e4ba73b9e5f8830bab122) fix: after changing the language in the settings page, some of the text doesn't change - [`a7f1266`](https://github.com/AppFlowy-IO/AppFlowy/commit/a7f1266b5389cd8d5c8e206600e54151507782df) Merge branch 'main' into fix_launch_review_issues_070 - [`c4f5474`](https://github.com/AppFlowy-IO/AppFlowy/commit/c4f5474d787add99a24a78f6031ef2354875f057) feat: support moving a block to another block's child ### 📊 Changes **23 files changed** (+1132 additions, -347 deletions) <details> <summary>View changed files</summary> 📝 `frontend/appflowy_flutter/integration_test/cloud/cloud_runner.dart` (+8 -0) ➕ `frontend/appflowy_flutter/integration_test/cloud/document/document_drag_block_test.dart` (+91 -0) ➕ `frontend/appflowy_flutter/integration_test/cloud/sidebar/sidebar_move_page_test.dart` (+111 -0) 📝 `frontend/appflowy_flutter/integration_test/cloud/workspace/collaborative_workspace_test.dart` (+48 -51) ➕ `frontend/appflowy_flutter/integration_test/cloud/workspace/workspace_settings_test.dart` (+96 -0) 📝 `frontend/appflowy_flutter/integration_test/desktop/reminder/document_reminder_test.dart` (+1 -1) 📝 `frontend/appflowy_flutter/integration_test/shared/common_operations.dart` (+75 -0) ➕ `frontend/appflowy_flutter/integration_test/shared/constants.dart` (+6 -0) 📝 `frontend/appflowy_flutter/integration_test/shared/document_test_operations.dart` (+57 -0) 📝 `frontend/appflowy_flutter/integration_test/shared/util.dart` (+4 -4) 📝 `frontend/appflowy_flutter/lib/plugins/document/presentation/editor_plugins/actions/block_action_button.dart` (+25 -17) 📝 `frontend/appflowy_flutter/lib/plugins/document/presentation/editor_plugins/actions/drag_to_reorder/draggable_option_button.dart` (+91 -64) ➕ `frontend/appflowy_flutter/lib/plugins/document/presentation/editor_plugins/actions/drag_to_reorder/util.dart` (+128 -0) ➕ `frontend/appflowy_flutter/lib/plugins/document/presentation/editor_plugins/actions/drag_to_reorder/visual_drag_area.dart` (+83 -0) 📝 `frontend/appflowy_flutter/lib/workspace/presentation/home/menu/sidebar/move_to/move_page_menu.dart` (+30 -24) 📝 `frontend/appflowy_flutter/lib/workspace/presentation/home/menu/sidebar/space/shared_widget.dart` (+5 -2) 📝 `frontend/appflowy_flutter/lib/workspace/presentation/home/menu/view/view_item.dart` (+184 -122) 📝 `frontend/appflowy_flutter/lib/workspace/presentation/home/menu/view/view_more_action_button.dart` (+35 -27) 📝 `frontend/appflowy_flutter/lib/workspace/presentation/settings/pages/settings_workspace_view.dart` (+32 -23) 📝 `frontend/appflowy_flutter/lib/workspace/presentation/settings/settings_dialog.dart` (+13 -7) _...and 3 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 - [x] cannot use 'move to' from sidebar - [x] show a forbiend cusor when moving a page to database - [x] check if the move to path is same as current path - [x] document width doesn't refresh after resetting - [x] disable tooltip when dragging blocks - [x] reminder not render when dragging - [x] after changing the language in the settings page, some of the text doesn't change - [x] support moving a block to another block's child - [x] fix assertion when dragging table - [ ] tests - [x] cannot use 'move to' from sidebar - [x] show a forbiend cusor when moving a page to database - [x] check if the move to path is same as current path - [x] document width doesn't refresh after resetting - [x] disable tooltip when dragging blocks - [x] reminder not render when dragging - [ ] after changing the language in the settings page, some of the text doesn't change - [x] support moving a block to another block's child - [x] fix assertion when dragging table <!--- 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 - [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. - [ ] 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:19:09 +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#7334
No description provided.