[PR #6233] [MERGED] fix: move group row #7265

Closed
opened 2026-03-23 23:18:50 +00:00 by mirror · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/AppFlowy-IO/AppFlowy/pull/6233
Author: @appflowy
Created: 9/8/2024
Status: Merged
Merged: 9/8/2024
Merged by: @appflowy

Base: mainHead: fix_move_group_row


📝 Commits (10+)

  • 6c4dfd5 chore: fix group notification
  • 3432d65 Merge branch 'main' into fix_move_group_row
  • 7c9c2ee chore: clippy
  • b089a41 Revert "fix: newly-created group rows appear out of order (#6212)"
  • aacdabb chore: revamp function
  • 560b201 Merge branch 'revert-6212-fix/group-row-order' into fix_move_group_row
  • d820165 chore: update test
  • 20642f6 chore: workaround to fix filter or sort don't show result after opening database
  • 9558645 chore: fix test
  • 9076848 chore: fix test

📊 Changes

54 files changed (+872 additions, -684 deletions)

View changed files

📝 frontend/appflowy_flutter/lib/plugins/database/board/application/board_bloc.dart (+3 -1)
📝 frontend/appflowy_flutter/lib/plugins/database/board/application/group_controller.dart (+10 -3)
📝 frontend/appflowy_flutter/lib/plugins/database/grid/application/grid_bloc.dart (+1 -0)
📝 frontend/appflowy_flutter/lib/startup/tasks/file_storage_task.dart (+5 -2)
📝 frontend/appflowy_flutter/lib/workspace/application/settings/share/import_service.dart (+0 -1)
📝 frontend/appflowy_flutter/macos/Podfile.lock (+1 -1)
📝 frontend/appflowy_flutter/test/bloc_test/board_test/util.dart (+1 -1)
📝 frontend/appflowy_tauri/src-tauri/Cargo.lock (+14 -12)
📝 frontend/appflowy_tauri/src-tauri/Cargo.toml (+7 -7)
📝 frontend/appflowy_web_app/src-tauri/Cargo.lock (+9 -7)
📝 frontend/appflowy_web_app/src-tauri/Cargo.toml (+7 -7)
📝 frontend/rust-lib/Cargo.lock (+29 -13)
📝 frontend/rust-lib/Cargo.toml (+7 -7)
📝 frontend/rust-lib/collab-integrate/src/collab_builder.rs (+4 -1)
📝 frontend/rust-lib/event-integration-test/src/lib.rs (+8 -6)
📝 frontend/rust-lib/event-integration-test/tests/folder/local_test/import_test.rs (+0 -1)
📝 frontend/rust-lib/event-integration-test/tests/folder/local_test/publish_database_test.rs (+0 -1)
📝 frontend/rust-lib/flowy-database2/Cargo.toml (+2 -1)
📝 frontend/rust-lib/flowy-database2/src/entities/row_entities.rs (+12 -0)
📝 frontend/rust-lib/flowy-database2/src/entities/view_entities.rs (+49 -0)

...and 34 more files

📄 Description

Feature Preview


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/6233 **Author:** [@appflowy](https://github.com/appflowy) **Created:** 9/8/2024 **Status:** ✅ Merged **Merged:** 9/8/2024 **Merged by:** [@appflowy](https://github.com/appflowy) **Base:** `main` ← **Head:** `fix_move_group_row` --- ### 📝 Commits (10+) - [`6c4dfd5`](https://github.com/AppFlowy-IO/AppFlowy/commit/6c4dfd55706471628f1b5bc0c1d56a04c2ff6489) chore: fix group notification - [`3432d65`](https://github.com/AppFlowy-IO/AppFlowy/commit/3432d6538b4d0df84d972e341920c107ba0e89f0) Merge branch 'main' into fix_move_group_row - [`7c9c2ee`](https://github.com/AppFlowy-IO/AppFlowy/commit/7c9c2ee1b47bba08c47075cc0c2e80a88d8aadba) chore: clippy - [`b089a41`](https://github.com/AppFlowy-IO/AppFlowy/commit/b089a41104f7dbdaf27ef62f38543b29111573e2) Revert "fix: newly-created group rows appear out of order (#6212)" - [`aacdabb`](https://github.com/AppFlowy-IO/AppFlowy/commit/aacdabba4e279f979910cb0eb9820598ac6caa1e) chore: revamp function - [`560b201`](https://github.com/AppFlowy-IO/AppFlowy/commit/560b2019f9f2fbe27977e095e297ac12c0f8a914) Merge branch 'revert-6212-fix/group-row-order' into fix_move_group_row - [`d820165`](https://github.com/AppFlowy-IO/AppFlowy/commit/d8201656c1b6d9215810fb615e79cef98fca50a5) chore: update test - [`20642f6`](https://github.com/AppFlowy-IO/AppFlowy/commit/20642f6011e8391d983d523862e432f42b252f20) chore: workaround to fix filter or sort don't show result after opening database - [`9558645`](https://github.com/AppFlowy-IO/AppFlowy/commit/9558645fbf98bd400e70db4b9fb6791f4ac9b763) chore: fix test - [`9076848`](https://github.com/AppFlowy-IO/AppFlowy/commit/907684822a37583954219606d32ffcb66e3cf842) chore: fix test ### 📊 Changes **54 files changed** (+872 additions, -684 deletions) <details> <summary>View changed files</summary> 📝 `frontend/appflowy_flutter/lib/plugins/database/board/application/board_bloc.dart` (+3 -1) 📝 `frontend/appflowy_flutter/lib/plugins/database/board/application/group_controller.dart` (+10 -3) 📝 `frontend/appflowy_flutter/lib/plugins/database/grid/application/grid_bloc.dart` (+1 -0) 📝 `frontend/appflowy_flutter/lib/startup/tasks/file_storage_task.dart` (+5 -2) 📝 `frontend/appflowy_flutter/lib/workspace/application/settings/share/import_service.dart` (+0 -1) 📝 `frontend/appflowy_flutter/macos/Podfile.lock` (+1 -1) 📝 `frontend/appflowy_flutter/test/bloc_test/board_test/util.dart` (+1 -1) 📝 `frontend/appflowy_tauri/src-tauri/Cargo.lock` (+14 -12) 📝 `frontend/appflowy_tauri/src-tauri/Cargo.toml` (+7 -7) 📝 `frontend/appflowy_web_app/src-tauri/Cargo.lock` (+9 -7) 📝 `frontend/appflowy_web_app/src-tauri/Cargo.toml` (+7 -7) 📝 `frontend/rust-lib/Cargo.lock` (+29 -13) 📝 `frontend/rust-lib/Cargo.toml` (+7 -7) 📝 `frontend/rust-lib/collab-integrate/src/collab_builder.rs` (+4 -1) 📝 `frontend/rust-lib/event-integration-test/src/lib.rs` (+8 -6) 📝 `frontend/rust-lib/event-integration-test/tests/folder/local_test/import_test.rs` (+0 -1) 📝 `frontend/rust-lib/event-integration-test/tests/folder/local_test/publish_database_test.rs` (+0 -1) 📝 `frontend/rust-lib/flowy-database2/Cargo.toml` (+2 -1) 📝 `frontend/rust-lib/flowy-database2/src/entities/row_entities.rs` (+12 -0) 📝 `frontend/rust-lib/flowy-database2/src/entities/view_entities.rs` (+49 -0) _...and 34 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 <!--- 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 [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:18:50 +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#7265
No description provided.