[PR #2685] [MERGED] fix: ref view in document #5365

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

📋 Pull Request Information

Original PR: https://github.com/AppFlowy-IO/AppFlowy/pull/2685
Author: @appflowy
Created: 6/2/2023
Status: Merged
Merged: 6/3/2023
Merged by: @appflowy

Base: developHead: fix/ref_view_in_document


📝 Commits (3)

  • 16e56c5 fix: remove set ref view in document as the current view
  • a5ed50d ci: fix tests
  • 5876fa9 ci: fix tauri build

📊 Changes

19 files changed (+76 additions, -40 deletions)

View changed files

📝 frontend/appflowy_flutter/lib/plugins/database_view/application/database_view_service.dart (+0 -2)
📝 frontend/appflowy_flutter/lib/plugins/database_view/database_view.dart (+1 -0)
📝 frontend/appflowy_flutter/lib/plugins/document/application/doc_service.dart (+0 -3)
📝 frontend/appflowy_flutter/lib/util/json_print.dart (+4 -6)
📝 frontend/appflowy_flutter/lib/workspace/application/menu/menu_bloc.dart (+1 -1)
📝 frontend/appflowy_flutter/lib/workspace/application/view/view_service.dart (+12 -1)
📝 frontend/appflowy_flutter/lib/workspace/application/workspace/workspace_service.dart (+2 -2)
📝 frontend/appflowy_flutter/lib/workspace/presentation/home/home_stack.dart (+4 -0)
📝 frontend/appflowy_flutter/test/bloc_test/home_test/home_bloc_test.dart (+3 -0)
📝 frontend/appflowy_flutter/test/util.dart (+1 -1)
📝 frontend/appflowy_tauri/src/appflowy_app/stores/effects/folder/workspace/workspace_bd_svc.ts (+2 -2)
📝 frontend/rust-lib/dart-ffi/src/env_serde.rs (+1 -1)
📝 frontend/rust-lib/flowy-folder2/src/entities/view.rs (+9 -2)
📝 frontend/rust-lib/flowy-folder2/src/event_handler.rs (+5 -2)
📝 frontend/rust-lib/flowy-folder2/src/event_map.rs (+5 -5)
📝 frontend/rust-lib/flowy-folder2/src/manager.rs (+17 -8)
📝 frontend/rust-lib/flowy-folder2/src/test_helper.rs (+1 -0)
📝 frontend/rust-lib/flowy-folder2/tests/workspace/script.rs (+4 -2)
📝 frontend/rust-lib/flowy-test/src/folder_event.rs (+4 -2)

📄 Description

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/2685 **Author:** [@appflowy](https://github.com/appflowy) **Created:** 6/2/2023 **Status:** ✅ Merged **Merged:** 6/3/2023 **Merged by:** [@appflowy](https://github.com/appflowy) **Base:** `develop` ← **Head:** `fix/ref_view_in_document` --- ### 📝 Commits (3) - [`16e56c5`](https://github.com/AppFlowy-IO/AppFlowy/commit/16e56c5ee41bd56d5ee118375337cadda5042805) fix: remove set ref view in document as the current view - [`a5ed50d`](https://github.com/AppFlowy-IO/AppFlowy/commit/a5ed50da6b97e31445d2d614b655d1fd114dee9b) ci: fix tests - [`5876fa9`](https://github.com/AppFlowy-IO/AppFlowy/commit/5876fa916567110c4b73d6c676a3d478c629ff7a) ci: fix tauri build ### 📊 Changes **19 files changed** (+76 additions, -40 deletions) <details> <summary>View changed files</summary> 📝 `frontend/appflowy_flutter/lib/plugins/database_view/application/database_view_service.dart` (+0 -2) 📝 `frontend/appflowy_flutter/lib/plugins/database_view/database_view.dart` (+1 -0) 📝 `frontend/appflowy_flutter/lib/plugins/document/application/doc_service.dart` (+0 -3) 📝 `frontend/appflowy_flutter/lib/util/json_print.dart` (+4 -6) 📝 `frontend/appflowy_flutter/lib/workspace/application/menu/menu_bloc.dart` (+1 -1) 📝 `frontend/appflowy_flutter/lib/workspace/application/view/view_service.dart` (+12 -1) 📝 `frontend/appflowy_flutter/lib/workspace/application/workspace/workspace_service.dart` (+2 -2) 📝 `frontend/appflowy_flutter/lib/workspace/presentation/home/home_stack.dart` (+4 -0) 📝 `frontend/appflowy_flutter/test/bloc_test/home_test/home_bloc_test.dart` (+3 -0) 📝 `frontend/appflowy_flutter/test/util.dart` (+1 -1) 📝 `frontend/appflowy_tauri/src/appflowy_app/stores/effects/folder/workspace/workspace_bd_svc.ts` (+2 -2) 📝 `frontend/rust-lib/dart-ffi/src/env_serde.rs` (+1 -1) 📝 `frontend/rust-lib/flowy-folder2/src/entities/view.rs` (+9 -2) 📝 `frontend/rust-lib/flowy-folder2/src/event_handler.rs` (+5 -2) 📝 `frontend/rust-lib/flowy-folder2/src/event_map.rs` (+5 -5) 📝 `frontend/rust-lib/flowy-folder2/src/manager.rs` (+17 -8) 📝 `frontend/rust-lib/flowy-folder2/src/test_helper.rs` (+1 -0) 📝 `frontend/rust-lib/flowy-folder2/tests/workspace/script.rs` (+4 -2) 📝 `frontend/rust-lib/flowy-test/src/folder_event.rs` (+4 -2) </details> ### 📄 Description #### 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:18:25 +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#5365
No description provided.