[PR #6615] [MERGED] fix: calculation UI refresh #7490

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

📋 Pull Request Information

Original PR: https://github.com/AppFlowy-IO/AppFlowy/pull/6615
Author: @appflowy
Created: 10/24/2024
Status: Merged
Merged: 12/24/2024
Merged by: @appflowy

Base: mainHead: fix_calculation_ui_refresh


📝 Commits (10+)

  • 1f2be82 chore: add test
  • 85f2d83 Merge branch 'main' into fix_calculation_ui_refresh
  • 03579ec chore: update test
  • bfca41a chore: create events
  • af92b94 Merge branch 'main' into fix_calculation_ui_refresh
  • bf7daec chore: load csv
  • b568437 test: add events
  • bbed43d test: clean
  • 45dc7e3 Merge branch 'main' into fix_calculation_ui_refresh
  • 0e5e311 chore: fix test

📊 Changes

31 files changed (+328 additions, -161 deletions)

View changed files

📝 frontend/appflowy_tauri/src-tauri/Cargo.lock (+12 -11)
📝 frontend/appflowy_tauri/src-tauri/Cargo.toml (+8 -8)
📝 frontend/appflowy_web_app/src-tauri/Cargo.lock (+11 -10)
📝 frontend/appflowy_web_app/src-tauri/Cargo.toml (+8 -8)
📝 frontend/rust-lib/Cargo.lock (+14 -13)
📝 frontend/rust-lib/Cargo.toml (+8 -8)
📝 frontend/rust-lib/event-integration-test/src/database_event.rs (+38 -2)
frontend/rust-lib/event-integration-test/tests/asset/project.csv (+5 -0)
📝 frontend/rust-lib/event-integration-test/tests/database/local_test/calculate_test.rs (+89 -0)
📝 frontend/rust-lib/event-integration-test/tests/document/af_cloud_test/edit_test.rs (+1 -3)
📝 frontend/rust-lib/event-integration-test/tests/folder/local_test/import_test.rs (+2 -5)
📝 frontend/rust-lib/event-integration-test/tests/folder/local_test/publish_database_test.rs (+4 -6)
📝 frontend/rust-lib/event-integration-test/tests/user/af_cloud_test/anon_user_test.rs (+2 -6)
📝 frontend/rust-lib/event-integration-test/tests/user/af_cloud_test/import_af_data_folder_test.rs (+4 -8)
📝 frontend/rust-lib/event-integration-test/tests/user/local_test/import_af_data_local_test.rs (+2 -6)
📝 frontend/rust-lib/event-integration-test/tests/user/migration_test/document_test.rs (+1 -3)
📝 frontend/rust-lib/event-integration-test/tests/user/migration_test/version_test.rs (+6 -14)
📝 frontend/rust-lib/event-integration-test/tests/util.rs (+24 -15)
📝 frontend/rust-lib/flowy-core/src/deps_resolve/folder_deps.rs (+12 -3)
📝 frontend/rust-lib/flowy-database2/src/event_handler.rs (+0 -1)

...and 11 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/6615 **Author:** [@appflowy](https://github.com/appflowy) **Created:** 10/24/2024 **Status:** ✅ Merged **Merged:** 12/24/2024 **Merged by:** [@appflowy](https://github.com/appflowy) **Base:** `main` ← **Head:** `fix_calculation_ui_refresh` --- ### 📝 Commits (10+) - [`1f2be82`](https://github.com/AppFlowy-IO/AppFlowy/commit/1f2be821bfd533e1da18aebe36a197334abfb316) chore: add test - [`85f2d83`](https://github.com/AppFlowy-IO/AppFlowy/commit/85f2d834217629f935928e91edfef38fd00bd408) Merge branch 'main' into fix_calculation_ui_refresh - [`03579ec`](https://github.com/AppFlowy-IO/AppFlowy/commit/03579ec519baef47ecabe952981041ddaeacaafd) chore: update test - [`bfca41a`](https://github.com/AppFlowy-IO/AppFlowy/commit/bfca41a2ae11da56d29a93d77ad7dcfae15656a4) chore: create events - [`af92b94`](https://github.com/AppFlowy-IO/AppFlowy/commit/af92b9457f60604626471b0bdcb9493a3e0ee364) Merge branch 'main' into fix_calculation_ui_refresh - [`bf7daec`](https://github.com/AppFlowy-IO/AppFlowy/commit/bf7daec425a482d20de5830e6783d01c75295f5d) chore: load csv - [`b568437`](https://github.com/AppFlowy-IO/AppFlowy/commit/b568437092ef3b8f998c217400566feb65592f88) test: add events - [`bbed43d`](https://github.com/AppFlowy-IO/AppFlowy/commit/bbed43d600350c050fc4eef86715c989256d4525) test: clean - [`45dc7e3`](https://github.com/AppFlowy-IO/AppFlowy/commit/45dc7e3b188cc81091724f4f32a4291a36b4a3b3) Merge branch 'main' into fix_calculation_ui_refresh - [`0e5e311`](https://github.com/AppFlowy-IO/AppFlowy/commit/0e5e31153126ebeef050e0cdf71d0fc722b2babf) chore: fix test ### 📊 Changes **31 files changed** (+328 additions, -161 deletions) <details> <summary>View changed files</summary> 📝 `frontend/appflowy_tauri/src-tauri/Cargo.lock` (+12 -11) 📝 `frontend/appflowy_tauri/src-tauri/Cargo.toml` (+8 -8) 📝 `frontend/appflowy_web_app/src-tauri/Cargo.lock` (+11 -10) 📝 `frontend/appflowy_web_app/src-tauri/Cargo.toml` (+8 -8) 📝 `frontend/rust-lib/Cargo.lock` (+14 -13) 📝 `frontend/rust-lib/Cargo.toml` (+8 -8) 📝 `frontend/rust-lib/event-integration-test/src/database_event.rs` (+38 -2) ➕ `frontend/rust-lib/event-integration-test/tests/asset/project.csv` (+5 -0) 📝 `frontend/rust-lib/event-integration-test/tests/database/local_test/calculate_test.rs` (+89 -0) 📝 `frontend/rust-lib/event-integration-test/tests/document/af_cloud_test/edit_test.rs` (+1 -3) 📝 `frontend/rust-lib/event-integration-test/tests/folder/local_test/import_test.rs` (+2 -5) 📝 `frontend/rust-lib/event-integration-test/tests/folder/local_test/publish_database_test.rs` (+4 -6) 📝 `frontend/rust-lib/event-integration-test/tests/user/af_cloud_test/anon_user_test.rs` (+2 -6) 📝 `frontend/rust-lib/event-integration-test/tests/user/af_cloud_test/import_af_data_folder_test.rs` (+4 -8) 📝 `frontend/rust-lib/event-integration-test/tests/user/local_test/import_af_data_local_test.rs` (+2 -6) 📝 `frontend/rust-lib/event-integration-test/tests/user/migration_test/document_test.rs` (+1 -3) 📝 `frontend/rust-lib/event-integration-test/tests/user/migration_test/version_test.rs` (+6 -14) 📝 `frontend/rust-lib/event-integration-test/tests/util.rs` (+24 -15) 📝 `frontend/rust-lib/flowy-core/src/deps_resolve/folder_deps.rs` (+12 -3) 📝 `frontend/rust-lib/flowy-database2/src/event_handler.rs` (+0 -1) _...and 11 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:19:52 +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#7490
No description provided.