[PR #464] [MERGED] Feature: save view/app order #4141

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

📋 Pull Request Information

Original PR: https://github.com/AppFlowy-IO/AppFlowy/pull/464
Author: @appflowy
Created: 4/26/2022
Status: Merged
Merged: 4/27/2022
Merged by: @appflowy

Base: mainHead: feat_view_order


📝 Commits (6)

  • c894513 fix: open latest view after launch
  • 0b1f0ed refactor: replace provider with bloc in ViewSection
  • 25548ad chore: add move view event
  • 7f7801d chore: save view order
  • e8bb6f0 chore: save app order
  • b29f53c chore: print duplicate event erorr

📊 Changes

35 files changed (+1512 additions, -621 deletions)

View changed files

📝 frontend/app_flowy/lib/startup/deps_resolver.dart (+5 -3)
📝 frontend/app_flowy/lib/workspace/application/app/app_bloc.dart (+153 -53)
📝 frontend/app_flowy/lib/workspace/application/app/app_service.dart (+31 -10)
📝 frontend/app_flowy/lib/workspace/application/menu/menu_bloc.dart (+23 -14)
📝 frontend/app_flowy/lib/workspace/application/menu/menu_bloc.freezed.dart (+369 -156)
frontend/app_flowy/lib/workspace/application/menu/menu_view_section_bloc.dart (+107 -0)
📝 frontend/app_flowy/lib/workspace/application/workspace/workspace_service.dart (+31 -10)
📝 frontend/app_flowy/lib/workspace/presentation/home/home_screen.dart (+3 -0)
📝 frontend/app_flowy/lib/workspace/presentation/home/menu/app/menu_app.dart (+27 -76)
📝 frontend/app_flowy/lib/workspace/presentation/home/menu/app/section/item.dart (+9 -6)
📝 frontend/app_flowy/lib/workspace/presentation/home/menu/app/section/section.dart (+39 -191)
📝 frontend/app_flowy/lib/workspace/presentation/home/menu/menu.dart (+44 -90)
📝 frontend/app_flowy/lib/workspace/presentation/plugins/trash/menu.dart (+1 -1)
📝 frontend/app_flowy/packages/flowy_sdk/lib/dispatch/dart_event/flowy-folder/dart_event.dart (+17 -0)
📝 frontend/app_flowy/packages/flowy_sdk/lib/protobuf/flowy-folder-data-model/view.pb.dart (+89 -0)
📝 frontend/app_flowy/packages/flowy_sdk/lib/protobuf/flowy-folder-data-model/view.pbenum.dart (+15 -0)
📝 frontend/app_flowy/packages/flowy_sdk/lib/protobuf/flowy-folder-data-model/view.pbjson.dart (+24 -0)
📝 frontend/app_flowy/packages/flowy_sdk/lib/protobuf/flowy-folder/event_map.pbenum.dart (+2 -0)
📝 frontend/app_flowy/packages/flowy_sdk/lib/protobuf/flowy-folder/event_map.pbjson.dart (+2 -1)
📝 frontend/rust-lib/flowy-folder/src/event_map.rs (+5 -1)

...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/464 **Author:** [@appflowy](https://github.com/appflowy) **Created:** 4/26/2022 **Status:** ✅ Merged **Merged:** 4/27/2022 **Merged by:** [@appflowy](https://github.com/appflowy) **Base:** `main` ← **Head:** `feat_view_order` --- ### 📝 Commits (6) - [`c894513`](https://github.com/AppFlowy-IO/AppFlowy/commit/c8945133dc7fab1fdb61fb66d6994b25d6721b9c) fix: open latest view after launch - [`0b1f0ed`](https://github.com/AppFlowy-IO/AppFlowy/commit/0b1f0ed401ae823e3967104d5d889157a4c9a6a8) refactor: replace provider with bloc in ViewSection - [`25548ad`](https://github.com/AppFlowy-IO/AppFlowy/commit/25548ad9ebb02c45035bd56d3bd6f21e8a5fd2f8) chore: add move view event - [`7f7801d`](https://github.com/AppFlowy-IO/AppFlowy/commit/7f7801d04e752dc98822f2fac6745a5ca8cb363d) chore: save view order - [`e8bb6f0`](https://github.com/AppFlowy-IO/AppFlowy/commit/e8bb6f0a7fc6b94dc5d0a9d992a3142443ea9995) chore: save app order - [`b29f53c`](https://github.com/AppFlowy-IO/AppFlowy/commit/b29f53c995ef7b0f4dc7ee4fe54719da67ef892c) chore: print duplicate event erorr ### 📊 Changes **35 files changed** (+1512 additions, -621 deletions) <details> <summary>View changed files</summary> 📝 `frontend/app_flowy/lib/startup/deps_resolver.dart` (+5 -3) 📝 `frontend/app_flowy/lib/workspace/application/app/app_bloc.dart` (+153 -53) 📝 `frontend/app_flowy/lib/workspace/application/app/app_service.dart` (+31 -10) 📝 `frontend/app_flowy/lib/workspace/application/menu/menu_bloc.dart` (+23 -14) 📝 `frontend/app_flowy/lib/workspace/application/menu/menu_bloc.freezed.dart` (+369 -156) ➕ `frontend/app_flowy/lib/workspace/application/menu/menu_view_section_bloc.dart` (+107 -0) 📝 `frontend/app_flowy/lib/workspace/application/workspace/workspace_service.dart` (+31 -10) 📝 `frontend/app_flowy/lib/workspace/presentation/home/home_screen.dart` (+3 -0) 📝 `frontend/app_flowy/lib/workspace/presentation/home/menu/app/menu_app.dart` (+27 -76) 📝 `frontend/app_flowy/lib/workspace/presentation/home/menu/app/section/item.dart` (+9 -6) 📝 `frontend/app_flowy/lib/workspace/presentation/home/menu/app/section/section.dart` (+39 -191) 📝 `frontend/app_flowy/lib/workspace/presentation/home/menu/menu.dart` (+44 -90) 📝 `frontend/app_flowy/lib/workspace/presentation/plugins/trash/menu.dart` (+1 -1) 📝 `frontend/app_flowy/packages/flowy_sdk/lib/dispatch/dart_event/flowy-folder/dart_event.dart` (+17 -0) 📝 `frontend/app_flowy/packages/flowy_sdk/lib/protobuf/flowy-folder-data-model/view.pb.dart` (+89 -0) 📝 `frontend/app_flowy/packages/flowy_sdk/lib/protobuf/flowy-folder-data-model/view.pbenum.dart` (+15 -0) 📝 `frontend/app_flowy/packages/flowy_sdk/lib/protobuf/flowy-folder-data-model/view.pbjson.dart` (+24 -0) 📝 `frontend/app_flowy/packages/flowy_sdk/lib/protobuf/flowy-folder/event_map.pbenum.dart` (+2 -0) 📝 `frontend/app_flowy/packages/flowy_sdk/lib/protobuf/flowy-folder/event_map.pbjson.dart` (+2 -1) 📝 `frontend/rust-lib/flowy-folder/src/event_map.rs` (+5 -1) _...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:36:29 +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#4141
No description provided.