[PR #6338] [MERGED] feat: support moveTo feature in more action menu #7320

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

📋 Pull Request Information

Original PR: https://github.com/AppFlowy-IO/AppFlowy/pull/6338
Author: @LucasXu0
Created: 9/18/2024
Status: Merged
Merged: 9/18/2024
Merged by: @LucasXu0

Base: mainHead: support_moveto_in_more_action_menu


📝 Commits (5)

  • 7c80732 feat: support moveTo feature in more action menu
  • 4c5fe36 fix: unable to switch to another workspace
  • 1ba42d9 fix: integration test
  • c7a4c5b chore: update editor version
  • 73f9d56 fix: integration test

📊 Changes

14 files changed (+276 additions, -222 deletions)

View changed files

📝 frontend/appflowy_flutter/integration_test/shared/common_operations.dart (+9 -14)
📝 frontend/appflowy_flutter/lib/mobile/presentation/home/mobile_home_page.dart (+5 -5)
📝 frontend/appflowy_flutter/lib/workspace/application/sidebar/space/space_bloc.dart (+15 -17)
📝 frontend/appflowy_flutter/lib/workspace/presentation/home/menu/sidebar/move_to/move_page_menu.dart (+4 -23)
📝 frontend/appflowy_flutter/lib/workspace/presentation/home/menu/sidebar/sidebar.dart (+5 -5)
📝 frontend/appflowy_flutter/lib/workspace/presentation/home/menu/sidebar/workspace/sidebar_workspace.dart (+9 -2)
📝 frontend/appflowy_flutter/lib/workspace/presentation/home/menu/view/view_item.dart (+3 -3)
📝 frontend/appflowy_flutter/lib/workspace/presentation/home/menu/view/view_more_action_button.dart (+23 -15)
📝 frontend/appflowy_flutter/lib/workspace/presentation/widgets/more_view_actions/more_view_actions.dart (+112 -61)
📝 frontend/appflowy_flutter/lib/workspace/presentation/widgets/more_view_actions/widgets/common_view_action.dart (+65 -56)
📝 frontend/appflowy_flutter/lib/workspace/presentation/widgets/more_view_actions/widgets/font_size_action.dart (+19 -13)
📝 frontend/appflowy_flutter/lib/workspace/presentation/widgets/more_view_actions/widgets/view_meta_info.dart (+4 -5)
📝 frontend/appflowy_flutter/pubspec.lock (+2 -2)
📝 frontend/appflowy_flutter/pubspec.yaml (+1 -1)

📄 Description

Feature Preview

  • support moveTo feature
  • support customizing document width for a specific page (not included in this PR)
  • ui revamp
Screenshot 2024-09-18 at 14 44 20

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/6338 **Author:** [@LucasXu0](https://github.com/LucasXu0) **Created:** 9/18/2024 **Status:** ✅ Merged **Merged:** 9/18/2024 **Merged by:** [@LucasXu0](https://github.com/LucasXu0) **Base:** `main` ← **Head:** `support_moveto_in_more_action_menu` --- ### 📝 Commits (5) - [`7c80732`](https://github.com/AppFlowy-IO/AppFlowy/commit/7c807320a0dfca538062d47b276ea4c368b0dd7b) feat: support moveTo feature in more action menu - [`4c5fe36`](https://github.com/AppFlowy-IO/AppFlowy/commit/4c5fe367f0347e16e8d514f32bb286813d6c8eba) fix: unable to switch to another workspace - [`1ba42d9`](https://github.com/AppFlowy-IO/AppFlowy/commit/1ba42d9af4582f9c178af988de38dbb0da8f196e) fix: integration test - [`c7a4c5b`](https://github.com/AppFlowy-IO/AppFlowy/commit/c7a4c5b74bd1769e393477c5651b41114e6e1600) chore: update editor version - [`73f9d56`](https://github.com/AppFlowy-IO/AppFlowy/commit/73f9d56091581781a8c876f0dfa9fc1c4780e8bf) fix: integration test ### 📊 Changes **14 files changed** (+276 additions, -222 deletions) <details> <summary>View changed files</summary> 📝 `frontend/appflowy_flutter/integration_test/shared/common_operations.dart` (+9 -14) 📝 `frontend/appflowy_flutter/lib/mobile/presentation/home/mobile_home_page.dart` (+5 -5) 📝 `frontend/appflowy_flutter/lib/workspace/application/sidebar/space/space_bloc.dart` (+15 -17) 📝 `frontend/appflowy_flutter/lib/workspace/presentation/home/menu/sidebar/move_to/move_page_menu.dart` (+4 -23) 📝 `frontend/appflowy_flutter/lib/workspace/presentation/home/menu/sidebar/sidebar.dart` (+5 -5) 📝 `frontend/appflowy_flutter/lib/workspace/presentation/home/menu/sidebar/workspace/sidebar_workspace.dart` (+9 -2) 📝 `frontend/appflowy_flutter/lib/workspace/presentation/home/menu/view/view_item.dart` (+3 -3) 📝 `frontend/appflowy_flutter/lib/workspace/presentation/home/menu/view/view_more_action_button.dart` (+23 -15) 📝 `frontend/appflowy_flutter/lib/workspace/presentation/widgets/more_view_actions/more_view_actions.dart` (+112 -61) 📝 `frontend/appflowy_flutter/lib/workspace/presentation/widgets/more_view_actions/widgets/common_view_action.dart` (+65 -56) 📝 `frontend/appflowy_flutter/lib/workspace/presentation/widgets/more_view_actions/widgets/font_size_action.dart` (+19 -13) 📝 `frontend/appflowy_flutter/lib/workspace/presentation/widgets/more_view_actions/widgets/view_meta_info.dart` (+4 -5) 📝 `frontend/appflowy_flutter/pubspec.lock` (+2 -2) 📝 `frontend/appflowy_flutter/pubspec.yaml` (+1 -1) </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] support moveTo feature - [ ] ~~support customizing document width for a specific page~~ (not included in this PR) - [x] ui revamp <img width="244" alt="Screenshot 2024-09-18 at 14 44 20" src="https://github.com/user-attachments/assets/10735992-73fe-4e6a-9441-7b03050362aa"> <!--- 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:05 +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#7320
No description provided.