[PR #3283] [MERGED] Data sync on signup #5659

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

📋 Pull Request Information

Original PR: https://github.com/AppFlowy-IO/AppFlowy/pull/3283
Author: @appflowy
Created: 8/28/2023
Status: Merged
Merged: 8/28/2023
Merged by: @appflowy

Base: mainHead: data_sync_on_signup


📝 Commits (10+)

  • a04ac90 chore: sync all data
  • df2aa80 chore: sync database row and document in the row
  • 73ce1f5 chore: sync inline view id
  • 5284674 chore: sync row and document in row
  • 0aae832 fix: tests
  • d33ca03 chore: Merge branch 'main' into data_sync_on_signup
  • 6b5bb55 fix: migrate document in row
  • 8ecf9e6 chore: retry when create collab fail
  • afc2c8c fix: invalid secret cause rerun application
  • d9717cf chore: fix clippy warnnings

📊 Changes

66 files changed (+1491 additions, -512 deletions)

View changed files

📝 frontend/appflowy_flutter/lib/user/presentation/sign_in_screen.dart (+21 -13)
📝 frontend/appflowy_flutter/lib/workspace/presentation/settings/widgets/setting_third_party_login.dart (+11 -0)
📝 frontend/appflowy_flutter/packages/flowy_infra_ui/lib/style_widget/snap_bar.dart (+1 -1)
📝 frontend/appflowy_tauri/src-tauri/Cargo.toml (+9 -9)
📝 frontend/resources/translations/en.json (+1 -0)
📝 frontend/rust-lib/Cargo.lock (+17 -14)
📝 frontend/rust-lib/Cargo.toml (+8 -8)
📝 frontend/rust-lib/flowy-core/src/deps_resolve/folder_deps.rs (+8 -3)
📝 frontend/rust-lib/flowy-core/src/lib.rs (+18 -10)
📝 frontend/rust-lib/flowy-database2/src/entities/database_entities.rs (+3 -3)
📝 frontend/rust-lib/flowy-database2/src/entities/group_entities/group.rs (+1 -5)
📝 frontend/rust-lib/flowy-database2/src/entities/row_entities.rs (+16 -16)
📝 frontend/rust-lib/flowy-database2/src/entities/view_entities.rs (+1 -1)
📝 frontend/rust-lib/flowy-database2/src/event_handler.rs (+1 -1)
📝 frontend/rust-lib/flowy-database2/src/manager.rs (+8 -8)
📝 frontend/rust-lib/flowy-database2/src/services/database/database_editor.rs (+17 -31)
📝 frontend/rust-lib/flowy-database2/src/services/database/entities.rs (+6 -6)
📝 frontend/rust-lib/flowy-database2/src/services/database_view/view_editor.rs (+7 -7)
📝 frontend/rust-lib/flowy-database2/src/services/field_settings/mod.rs (+5 -4)
📝 frontend/rust-lib/flowy-database2/src/services/filter/controller.rs (+4 -4)

...and 46 more files

📄 Description

Sync all the user data after sign up

TODO:
Speed up the sync by sending multiple requests at a time

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/3283 **Author:** [@appflowy](https://github.com/appflowy) **Created:** 8/28/2023 **Status:** ✅ Merged **Merged:** 8/28/2023 **Merged by:** [@appflowy](https://github.com/appflowy) **Base:** `main` ← **Head:** `data_sync_on_signup` --- ### 📝 Commits (10+) - [`a04ac90`](https://github.com/AppFlowy-IO/AppFlowy/commit/a04ac90e09069d0566a318a025009bf976ca2390) chore: sync all data - [`df2aa80`](https://github.com/AppFlowy-IO/AppFlowy/commit/df2aa806ea338c134142082bb2e112dce2619c91) chore: sync database row and document in the row - [`73ce1f5`](https://github.com/AppFlowy-IO/AppFlowy/commit/73ce1f59f93a516cfe3d1474cffb15ad7fbba31e) chore: sync inline view id - [`5284674`](https://github.com/AppFlowy-IO/AppFlowy/commit/528467469abfe5f662fb931e79a630459c658832) chore: sync row and document in row - [`0aae832`](https://github.com/AppFlowy-IO/AppFlowy/commit/0aae832ba7f504872743cbeab6109906b98cadd4) fix: tests - [`d33ca03`](https://github.com/AppFlowy-IO/AppFlowy/commit/d33ca031158369f99f70d4db36efdf080ec2ba45) chore: Merge branch 'main' into data_sync_on_signup - [`6b5bb55`](https://github.com/AppFlowy-IO/AppFlowy/commit/6b5bb5508933120d87798b334e78f49e1080fcfb) fix: migrate document in row - [`8ecf9e6`](https://github.com/AppFlowy-IO/AppFlowy/commit/8ecf9e6e5580ea270a78ae926955711fdfcda91e) chore: retry when create collab fail - [`afc2c8c`](https://github.com/AppFlowy-IO/AppFlowy/commit/afc2c8c15476e2b66d0410614401b31e8be40931) fix: invalid secret cause rerun application - [`d9717cf`](https://github.com/AppFlowy-IO/AppFlowy/commit/d9717cface16a4980a8809b531d547496e2e2f7a) chore: fix clippy warnnings ### 📊 Changes **66 files changed** (+1491 additions, -512 deletions) <details> <summary>View changed files</summary> 📝 `frontend/appflowy_flutter/lib/user/presentation/sign_in_screen.dart` (+21 -13) 📝 `frontend/appflowy_flutter/lib/workspace/presentation/settings/widgets/setting_third_party_login.dart` (+11 -0) 📝 `frontend/appflowy_flutter/packages/flowy_infra_ui/lib/style_widget/snap_bar.dart` (+1 -1) 📝 `frontend/appflowy_tauri/src-tauri/Cargo.toml` (+9 -9) 📝 `frontend/resources/translations/en.json` (+1 -0) 📝 `frontend/rust-lib/Cargo.lock` (+17 -14) 📝 `frontend/rust-lib/Cargo.toml` (+8 -8) 📝 `frontend/rust-lib/flowy-core/src/deps_resolve/folder_deps.rs` (+8 -3) 📝 `frontend/rust-lib/flowy-core/src/lib.rs` (+18 -10) 📝 `frontend/rust-lib/flowy-database2/src/entities/database_entities.rs` (+3 -3) 📝 `frontend/rust-lib/flowy-database2/src/entities/group_entities/group.rs` (+1 -5) 📝 `frontend/rust-lib/flowy-database2/src/entities/row_entities.rs` (+16 -16) 📝 `frontend/rust-lib/flowy-database2/src/entities/view_entities.rs` (+1 -1) 📝 `frontend/rust-lib/flowy-database2/src/event_handler.rs` (+1 -1) 📝 `frontend/rust-lib/flowy-database2/src/manager.rs` (+8 -8) 📝 `frontend/rust-lib/flowy-database2/src/services/database/database_editor.rs` (+17 -31) 📝 `frontend/rust-lib/flowy-database2/src/services/database/entities.rs` (+6 -6) 📝 `frontend/rust-lib/flowy-database2/src/services/database_view/view_editor.rs` (+7 -7) 📝 `frontend/rust-lib/flowy-database2/src/services/field_settings/mod.rs` (+5 -4) 📝 `frontend/rust-lib/flowy-database2/src/services/filter/controller.rs` (+4 -4) _...and 46 more files_ </details> ### 📄 Description Sync all the user data after sign up TODO: Speed up the sync by sending multiple requests at a time #### 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:19:43 +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#5659
No description provided.