[PR #5523] [MERGED] feat: integrate cloud document search #6862

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

📋 Pull Request Information

Original PR: https://github.com/AppFlowy-IO/AppFlowy/pull/5523
Author: @Xazin
Created: 6/12/2024
Status: Merged
Merged: 6/12/2024
Merged by: @Xazin

Base: mainHead: feat/integrate-cloud-document-search


📝 Commits (9)

  • 8cede4c feat: integrate cloud document search
  • 68648ce feat: use view cache to get view info for results
  • 87168f3 feat: clean up and refine ui
  • 8fda561 chore: merge branch 'upstream/main' into feat/integrate-cloud-document-search
  • 6eeac3a chore: use view cache
  • 9e632ce fix: loop after refactor
  • e2c6560 fix: color of clear button
  • 1b39618 fix: clippy from ai translation pr
  • 4227782 feat: add preview to result + custom tile

📊 Changes

39 files changed (+539 additions, -110 deletions)

View changed files

📝 frontend/appflowy_flutter/lib/workspace/application/command_palette/command_palette_bloc.dart (+18 -8)
📝 frontend/appflowy_flutter/lib/workspace/application/command_palette/search_listener.dart (+0 -7)
📝 frontend/appflowy_flutter/lib/workspace/presentation/command_palette/command_palette.dart (+26 -2)
📝 frontend/appflowy_flutter/lib/workspace/presentation/command_palette/widgets/recent_view_tile.dart (+3 -3)
📝 frontend/appflowy_flutter/lib/workspace/presentation/command_palette/widgets/recent_views_list.dart (+3 -2)
📝 frontend/appflowy_flutter/lib/workspace/presentation/command_palette/widgets/search_field.dart (+81 -19)
📝 frontend/appflowy_flutter/lib/workspace/presentation/command_palette/widgets/search_result_tile.dart (+112 -27)
📝 frontend/appflowy_tauri/src-tauri/Cargo.lock (+9 -3)
📝 frontend/appflowy_web/wasm-libs/Cargo.lock (+4 -0)
📝 frontend/appflowy_web_app/src-tauri/Cargo.lock (+6 -0)
📝 frontend/resources/translations/en.json (+5 -3)
📝 frontend/rust-lib/Cargo.lock (+7 -0)
📝 frontend/rust-lib/flowy-core/Cargo.toml (+1 -0)
📝 frontend/rust-lib/flowy-core/src/deps_resolve/search_deps.rs (+10 -2)
📝 frontend/rust-lib/flowy-core/src/integrate/trait_impls.rs (+17 -0)
📝 frontend/rust-lib/flowy-core/src/lib.rs (+6 -1)
📝 frontend/rust-lib/flowy-database2/src/manager.rs (+2 -2)
📝 frontend/rust-lib/flowy-search-pub/Cargo.toml (+3 -1)
frontend/rust-lib/flowy-search-pub/src/cloud.rs (+12 -0)
📝 frontend/rust-lib/flowy-search-pub/src/lib.rs (+1 -0)

...and 19 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/5523 **Author:** [@Xazin](https://github.com/Xazin) **Created:** 6/12/2024 **Status:** ✅ Merged **Merged:** 6/12/2024 **Merged by:** [@Xazin](https://github.com/Xazin) **Base:** `main` ← **Head:** `feat/integrate-cloud-document-search` --- ### 📝 Commits (9) - [`8cede4c`](https://github.com/AppFlowy-IO/AppFlowy/commit/8cede4cb790811ca9e02ac110f99a6a210ccf316) feat: integrate cloud document search - [`68648ce`](https://github.com/AppFlowy-IO/AppFlowy/commit/68648cebd1b41e25b37bf2d2f36b64f865984785) feat: use view cache to get view info for results - [`87168f3`](https://github.com/AppFlowy-IO/AppFlowy/commit/87168f30ba3beffb8918eb8f8bc8aba7c76a0d0b) feat: clean up and refine ui - [`8fda561`](https://github.com/AppFlowy-IO/AppFlowy/commit/8fda561aa94ebbdf916192c6fea28dc8e8f52033) chore: merge branch 'upstream/main' into feat/integrate-cloud-document-search - [`6eeac3a`](https://github.com/AppFlowy-IO/AppFlowy/commit/6eeac3a1c54daa7661de3e57b1fc874cbf13866b) chore: use view cache - [`9e632ce`](https://github.com/AppFlowy-IO/AppFlowy/commit/9e632ce649e610519034cf035db5f0d85dfa227b) fix: loop after refactor - [`e2c6560`](https://github.com/AppFlowy-IO/AppFlowy/commit/e2c6560093981460f730eccee93eeeec7fef4dd5) fix: color of clear button - [`1b39618`](https://github.com/AppFlowy-IO/AppFlowy/commit/1b39618a91632667c1554b8c4e9ba5aaabd59812) fix: clippy from ai translation pr - [`4227782`](https://github.com/AppFlowy-IO/AppFlowy/commit/42277824a0a0d9959be4cd4e9cb8d7815551c507) feat: add preview to result + custom tile ### 📊 Changes **39 files changed** (+539 additions, -110 deletions) <details> <summary>View changed files</summary> 📝 `frontend/appflowy_flutter/lib/workspace/application/command_palette/command_palette_bloc.dart` (+18 -8) 📝 `frontend/appflowy_flutter/lib/workspace/application/command_palette/search_listener.dart` (+0 -7) 📝 `frontend/appflowy_flutter/lib/workspace/presentation/command_palette/command_palette.dart` (+26 -2) 📝 `frontend/appflowy_flutter/lib/workspace/presentation/command_palette/widgets/recent_view_tile.dart` (+3 -3) 📝 `frontend/appflowy_flutter/lib/workspace/presentation/command_palette/widgets/recent_views_list.dart` (+3 -2) 📝 `frontend/appflowy_flutter/lib/workspace/presentation/command_palette/widgets/search_field.dart` (+81 -19) 📝 `frontend/appflowy_flutter/lib/workspace/presentation/command_palette/widgets/search_result_tile.dart` (+112 -27) 📝 `frontend/appflowy_tauri/src-tauri/Cargo.lock` (+9 -3) 📝 `frontend/appflowy_web/wasm-libs/Cargo.lock` (+4 -0) 📝 `frontend/appflowy_web_app/src-tauri/Cargo.lock` (+6 -0) 📝 `frontend/resources/translations/en.json` (+5 -3) 📝 `frontend/rust-lib/Cargo.lock` (+7 -0) 📝 `frontend/rust-lib/flowy-core/Cargo.toml` (+1 -0) 📝 `frontend/rust-lib/flowy-core/src/deps_resolve/search_deps.rs` (+10 -2) 📝 `frontend/rust-lib/flowy-core/src/integrate/trait_impls.rs` (+17 -0) 📝 `frontend/rust-lib/flowy-core/src/lib.rs` (+6 -1) 📝 `frontend/rust-lib/flowy-database2/src/manager.rs` (+2 -2) 📝 `frontend/rust-lib/flowy-search-pub/Cargo.toml` (+3 -1) ➕ `frontend/rust-lib/flowy-search-pub/src/cloud.rs` (+12 -0) 📝 `frontend/rust-lib/flowy-search-pub/src/lib.rs` (+1 -0) _...and 19 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 - [x] 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. - [x] 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:17:00 +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#6862
No description provided.