[PR #6172] [MERGED] chore: observe file upload state #7226

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

📋 Pull Request Information

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

Base: mainHead: file_state


📝 Commits (6)

  • b3ea10c chore: observe file upload state
  • 8a4ba38 chore: observe file upload state
  • a54c141 Merge branch 'main' into file_state
  • e7df10c chore: upgrade client api
  • 603c0f6 Update frontend/appflowy_flutter/lib/startup/tasks/file_storage_task.dart
  • c6f866b chore: fix tauri build

📊 Changes

29 files changed (+484 additions, -123 deletions)

View changed files

📝 frontend/appflowy_flutter/lib/startup/startup.dart (+2 -0)
frontend/appflowy_flutter/lib/startup/tasks/file_storage_task.dart (+149 -0)
📝 frontend/appflowy_flutter/packages/appflowy_backend/lib/dispatch/dispatch.dart (+2 -0)
📝 frontend/appflowy_tauri/src-tauri/Cargo.lock (+17 -12)
📝 frontend/appflowy_tauri/src-tauri/Cargo.toml (+1 -1)
📝 frontend/appflowy_tauri/src/services/backend/index.ts (+1 -0)
📝 frontend/appflowy_web_app/src-tauri/Cargo.lock (+17 -12)
📝 frontend/appflowy_web_app/src-tauri/Cargo.toml (+1 -1)
📝 frontend/appflowy_web_app/src/application/services/tauri-services/backend/index.ts (+2 -1)
📝 frontend/rust-lib/Cargo.lock (+33 -14)
📝 frontend/rust-lib/Cargo.toml (+2 -2)
📝 frontend/rust-lib/event-integration-test/tests/document/af_cloud_test/file_upload_test.rs (+3 -3)
📝 frontend/rust-lib/flowy-core/src/integrate/trait_impls.rs (+9 -0)
📝 frontend/rust-lib/flowy-core/src/lib.rs (+1 -0)
📝 frontend/rust-lib/flowy-core/src/module.rs (+4 -0)
📝 frontend/rust-lib/flowy-database2/src/manager.rs (+0 -37)
📝 frontend/rust-lib/flowy-database2/src/services/database/database_observe.rs (+0 -1)
📝 frontend/rust-lib/flowy-server/src/af_cloud/impls/file_storage.rs (+5 -0)
📝 frontend/rust-lib/flowy-storage-pub/src/cloud.rs (+2 -0)
📝 frontend/rust-lib/flowy-storage-pub/src/storage.rs (+35 -18)

...and 9 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/6172 **Author:** [@appflowy](https://github.com/appflowy) **Created:** 9/3/2024 **Status:** ✅ Merged **Merged:** 9/3/2024 **Merged by:** [@appflowy](https://github.com/appflowy) **Base:** `main` ← **Head:** `file_state` --- ### 📝 Commits (6) - [`b3ea10c`](https://github.com/AppFlowy-IO/AppFlowy/commit/b3ea10ccb5b715c5a8795b941d0f39544bd3e655) chore: observe file upload state - [`8a4ba38`](https://github.com/AppFlowy-IO/AppFlowy/commit/8a4ba38d420662ce3332de5575429e31a81eb502) chore: observe file upload state - [`a54c141`](https://github.com/AppFlowy-IO/AppFlowy/commit/a54c1414182854be5e9992af884f85699f6854af) Merge branch 'main' into file_state - [`e7df10c`](https://github.com/AppFlowy-IO/AppFlowy/commit/e7df10cb8824c5ec5d6252c61b971467f33a0bd9) chore: upgrade client api - [`603c0f6`](https://github.com/AppFlowy-IO/AppFlowy/commit/603c0f62ac6a4eb420b903578eda2082e55db39e) Update frontend/appflowy_flutter/lib/startup/tasks/file_storage_task.dart - [`c6f866b`](https://github.com/AppFlowy-IO/AppFlowy/commit/c6f866bbd7d3dc31cbefa0e17a222bdf566a79ad) chore: fix tauri build ### 📊 Changes **29 files changed** (+484 additions, -123 deletions) <details> <summary>View changed files</summary> 📝 `frontend/appflowy_flutter/lib/startup/startup.dart` (+2 -0) ➕ `frontend/appflowy_flutter/lib/startup/tasks/file_storage_task.dart` (+149 -0) 📝 `frontend/appflowy_flutter/packages/appflowy_backend/lib/dispatch/dispatch.dart` (+2 -0) 📝 `frontend/appflowy_tauri/src-tauri/Cargo.lock` (+17 -12) 📝 `frontend/appflowy_tauri/src-tauri/Cargo.toml` (+1 -1) 📝 `frontend/appflowy_tauri/src/services/backend/index.ts` (+1 -0) 📝 `frontend/appflowy_web_app/src-tauri/Cargo.lock` (+17 -12) 📝 `frontend/appflowy_web_app/src-tauri/Cargo.toml` (+1 -1) 📝 `frontend/appflowy_web_app/src/application/services/tauri-services/backend/index.ts` (+2 -1) 📝 `frontend/rust-lib/Cargo.lock` (+33 -14) 📝 `frontend/rust-lib/Cargo.toml` (+2 -2) 📝 `frontend/rust-lib/event-integration-test/tests/document/af_cloud_test/file_upload_test.rs` (+3 -3) 📝 `frontend/rust-lib/flowy-core/src/integrate/trait_impls.rs` (+9 -0) 📝 `frontend/rust-lib/flowy-core/src/lib.rs` (+1 -0) 📝 `frontend/rust-lib/flowy-core/src/module.rs` (+4 -0) 📝 `frontend/rust-lib/flowy-database2/src/manager.rs` (+0 -37) 📝 `frontend/rust-lib/flowy-database2/src/services/database/database_observe.rs` (+0 -1) 📝 `frontend/rust-lib/flowy-server/src/af_cloud/impls/file_storage.rs` (+5 -0) 📝 `frontend/rust-lib/flowy-storage-pub/src/cloud.rs` (+2 -0) 📝 `frontend/rust-lib/flowy-storage-pub/src/storage.rs` (+35 -18) _...and 9 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:40 +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#7226
No description provided.