[PR #3042] [MERGED] fix: implement the interface of move nested views #5535

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

📋 Pull Request Information

Original PR: https://github.com/AppFlowy-IO/AppFlowy/pull/3042
Author: @qinluhe
Created: 7/22/2023
Status: Merged
Merged: 7/26/2023
Merged by: @qinluhe

Base: mainHead: fix/tauri-drag-nested-views


📝 Commits (3)

  • b82a9bb fix: implement the interface of move nested views
  • 77148af fix: update rust ci ubuntu version
  • ea8f83b fix: update rust ci version

📊 Changes

27 files changed (+385 additions, -112 deletions)

View changed files

📝 .github/workflows/rust_ci.yaml (+0 -14)
📝 frontend/appflowy_tauri/src-tauri/Cargo.lock (+10 -10)
📝 frontend/appflowy_tauri/src-tauri/Cargo.toml (+12 -12)
📝 frontend/appflowy_tauri/src/appflowy_app/components/_shared/BlockDraggable/BlockDragDropContext.tsx (+4 -1)
📝 frontend/appflowy_tauri/src/appflowy_app/components/_shared/BlockDraggable/BlockDraggable.hooks.ts (+1 -4)
📝 frontend/appflowy_tauri/src/appflowy_app/components/_shared/BlockDraggable/index.tsx (+24 -18)
📝 frontend/appflowy_tauri/src/appflowy_app/components/document/BlockSideToolbar/BlockSideToolbar.hooks.tsx (+4 -4)
📝 frontend/appflowy_tauri/src/appflowy_app/components/document/BlockSideToolbar/index.tsx (+11 -2)
📝 frontend/appflowy_tauri/src/appflowy_app/components/document/Node/index.tsx (+9 -7)
📝 frontend/appflowy_tauri/src/appflowy_app/components/document/VirtualizedList/index.tsx (+1 -6)
📝 frontend/appflowy_tauri/src/appflowy_app/components/layout/NestedPage/NestedPage.hooks.ts (+9 -1)
📝 frontend/appflowy_tauri/src/appflowy_app/components/layout/NestedPage/index.tsx (+1 -1)
📝 frontend/appflowy_tauri/src/appflowy_app/stores/effects/database/database_bd_svc.ts (+13 -0)
📝 frontend/appflowy_tauri/src/appflowy_app/stores/effects/workspace/page/page_bd_svc.ts (+5 -8)
📝 frontend/appflowy_tauri/src/appflowy_app/stores/effects/workspace/page/page_controller.ts (+13 -3)
📝 frontend/appflowy_tauri/src/appflowy_app/stores/effects/workspace/workspace_observer.ts (+5 -0)
📝 frontend/appflowy_tauri/src/appflowy_app/stores/reducers/pages/slice.ts (+6 -0)
📝 frontend/resources/translations/en.json (+2 -1)
📝 frontend/rust-lib/Cargo.lock (+10 -10)
📝 frontend/rust-lib/Cargo.toml (+10 -10)

...and 7 more files

📄 Description

Feature Preview

  • Implement the interface of move nested views

https://github.com/AppFlowy-IO/AppFlowy/assets/108015703/bb663839-48ca-437d-ae71-d177b791f7f8


PR Checklist

  • My code adheres to the AppFlowy Style Guide
  • 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/3042 **Author:** [@qinluhe](https://github.com/qinluhe) **Created:** 7/22/2023 **Status:** ✅ Merged **Merged:** 7/26/2023 **Merged by:** [@qinluhe](https://github.com/qinluhe) **Base:** `main` ← **Head:** `fix/tauri-drag-nested-views` --- ### 📝 Commits (3) - [`b82a9bb`](https://github.com/AppFlowy-IO/AppFlowy/commit/b82a9bb6f718267de885f85ec464ad105e894650) fix: implement the interface of move nested views - [`77148af`](https://github.com/AppFlowy-IO/AppFlowy/commit/77148af190267637da7a87a0efd2cbbb384a4425) fix: update rust ci ubuntu version - [`ea8f83b`](https://github.com/AppFlowy-IO/AppFlowy/commit/ea8f83bf381e3a307a43b64f7d42f95f10dd7ae6) fix: update rust ci version ### 📊 Changes **27 files changed** (+385 additions, -112 deletions) <details> <summary>View changed files</summary> 📝 `.github/workflows/rust_ci.yaml` (+0 -14) 📝 `frontend/appflowy_tauri/src-tauri/Cargo.lock` (+10 -10) 📝 `frontend/appflowy_tauri/src-tauri/Cargo.toml` (+12 -12) 📝 `frontend/appflowy_tauri/src/appflowy_app/components/_shared/BlockDraggable/BlockDragDropContext.tsx` (+4 -1) 📝 `frontend/appflowy_tauri/src/appflowy_app/components/_shared/BlockDraggable/BlockDraggable.hooks.ts` (+1 -4) 📝 `frontend/appflowy_tauri/src/appflowy_app/components/_shared/BlockDraggable/index.tsx` (+24 -18) 📝 `frontend/appflowy_tauri/src/appflowy_app/components/document/BlockSideToolbar/BlockSideToolbar.hooks.tsx` (+4 -4) 📝 `frontend/appflowy_tauri/src/appflowy_app/components/document/BlockSideToolbar/index.tsx` (+11 -2) 📝 `frontend/appflowy_tauri/src/appflowy_app/components/document/Node/index.tsx` (+9 -7) 📝 `frontend/appflowy_tauri/src/appflowy_app/components/document/VirtualizedList/index.tsx` (+1 -6) 📝 `frontend/appflowy_tauri/src/appflowy_app/components/layout/NestedPage/NestedPage.hooks.ts` (+9 -1) 📝 `frontend/appflowy_tauri/src/appflowy_app/components/layout/NestedPage/index.tsx` (+1 -1) 📝 `frontend/appflowy_tauri/src/appflowy_app/stores/effects/database/database_bd_svc.ts` (+13 -0) 📝 `frontend/appflowy_tauri/src/appflowy_app/stores/effects/workspace/page/page_bd_svc.ts` (+5 -8) 📝 `frontend/appflowy_tauri/src/appflowy_app/stores/effects/workspace/page/page_controller.ts` (+13 -3) 📝 `frontend/appflowy_tauri/src/appflowy_app/stores/effects/workspace/workspace_observer.ts` (+5 -0) 📝 `frontend/appflowy_tauri/src/appflowy_app/stores/reducers/pages/slice.ts` (+6 -0) 📝 `frontend/resources/translations/en.json` (+2 -1) 📝 `frontend/rust-lib/Cargo.lock` (+10 -10) 📝 `frontend/rust-lib/Cargo.toml` (+10 -10) _...and 7 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] Implement the interface of move nested views https://github.com/AppFlowy-IO/AppFlowy/assets/108015703/bb663839-48ca-437d-ae71-d177b791f7f8 <!--- 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 - [ ] My code adheres to the [AppFlowy Style Guide](https://appflowy.gitbook.io/docs/essential-documentation/contribute-to-appflowy/software-contributions/submitting-code/style-guides) - [ ] 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 22:19:10 +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#5535
No description provided.