[PR #4296] [CLOSED] Search frontend integration #6179

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

📋 Pull Request Information

Original PR: https://github.com/AppFlowy-IO/AppFlowy/pull/4296
Author: @Jiraffe7
Created: 1/3/2024
Status: Closed

Base: mainHead: search-fe


📝 Commits (10+)

  • f7a6d14 feat: implement folder indexer
  • ebcd568 feat: sqlite search views using fts5
  • a3d3b3e feat: add view indexing to user manager
  • 69f5b3a feat: implement folder indexer
  • e37aa13 feat: add sqlite search documents
  • 1af92b1 feat: add document indexing to user manager
  • 0faf7ad feat: add document indexing to folder indexer
  • 64716ce chore: update collab rev
  • fbf07f1 feat: search frontend integration
  • 0f440df Merge branch 'main' into search-fe

📊 Changes

42 files changed (+954 additions, -130 deletions)

View changed files

📝 frontend/rust-lib/Cargo.lock (+111 -95)
📝 frontend/rust-lib/Cargo.toml (+2 -0)
📝 frontend/rust-lib/dart-ffi/src/lib.rs (+1 -3)
📝 frontend/rust-lib/event-integration/src/folder_event.rs (+12 -0)
📝 frontend/rust-lib/event-integration/src/lib.rs (+3 -8)
📝 frontend/rust-lib/event-integration/tests/folder/local_test/mod.rs (+1 -0)
📝 frontend/rust-lib/event-integration/tests/folder/local_test/script.rs (+4 -6)
frontend/rust-lib/event-integration/tests/folder/local_test/search_test.rs (+27 -0)
📝 frontend/rust-lib/flowy-core/Cargo.toml (+1 -0)
📝 frontend/rust-lib/flowy-core/src/config.rs (+2 -2)
📝 frontend/rust-lib/flowy-core/src/deps_resolve/folder_deps.rs (+81 -0)
📝 frontend/rust-lib/flowy-core/src/deps_resolve/mod.rs (+2 -0)
frontend/rust-lib/flowy-core/src/deps_resolve/search_deps.rs (+26 -0)
📝 frontend/rust-lib/flowy-core/src/integrate/log.rs (+2 -1)
📝 frontend/rust-lib/flowy-core/src/integrate/mod.rs (+1 -1)
📝 frontend/rust-lib/flowy-core/src/lib.rs (+10 -1)
📝 frontend/rust-lib/flowy-document/src/document.rs (+11 -1)
📝 frontend/rust-lib/flowy-document/src/lib.rs (+1 -0)
📝 frontend/rust-lib/flowy-error/Cargo.toml (+1 -1)
📝 frontend/rust-lib/flowy-folder-pub/src/entities.rs (+16 -0)

...and 22 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/4296 **Author:** [@Jiraffe7](https://github.com/Jiraffe7) **Created:** 1/3/2024 **Status:** ❌ Closed **Base:** `main` ← **Head:** `search-fe` --- ### 📝 Commits (10+) - [`f7a6d14`](https://github.com/AppFlowy-IO/AppFlowy/commit/f7a6d140817d9881cfc354d82b71667440e68ab6) feat: implement folder indexer - [`ebcd568`](https://github.com/AppFlowy-IO/AppFlowy/commit/ebcd56857ef0b6541fcff8b28c1d530be60b4540) feat: sqlite search views using fts5 - [`a3d3b3e`](https://github.com/AppFlowy-IO/AppFlowy/commit/a3d3b3e9e7e7ba01d3289c562adc30235fdf2860) feat: add view indexing to user manager - [`69f5b3a`](https://github.com/AppFlowy-IO/AppFlowy/commit/69f5b3a6a0cf32bff32c0d0af11243df8443f629) feat: implement folder indexer - [`e37aa13`](https://github.com/AppFlowy-IO/AppFlowy/commit/e37aa13486b261e8db08d940e963ecc151f181af) feat: add sqlite search documents - [`1af92b1`](https://github.com/AppFlowy-IO/AppFlowy/commit/1af92b16251399124644c9a99ae8926626cbb875) feat: add document indexing to user manager - [`0faf7ad`](https://github.com/AppFlowy-IO/AppFlowy/commit/0faf7ad19d21cb937a513a02f67c955942240f86) feat: add document indexing to folder indexer - [`64716ce`](https://github.com/AppFlowy-IO/AppFlowy/commit/64716ce446149d6dce235eeedd6f9aff7488f5b2) chore: update collab rev - [`fbf07f1`](https://github.com/AppFlowy-IO/AppFlowy/commit/fbf07f1e82c71a8b29cee3074991fc303c73b5a2) feat: search frontend integration - [`0f440df`](https://github.com/AppFlowy-IO/AppFlowy/commit/0f440df45cf40153186930003ea8c383703b58f2) Merge branch 'main' into search-fe ### 📊 Changes **42 files changed** (+954 additions, -130 deletions) <details> <summary>View changed files</summary> 📝 `frontend/rust-lib/Cargo.lock` (+111 -95) 📝 `frontend/rust-lib/Cargo.toml` (+2 -0) 📝 `frontend/rust-lib/dart-ffi/src/lib.rs` (+1 -3) 📝 `frontend/rust-lib/event-integration/src/folder_event.rs` (+12 -0) 📝 `frontend/rust-lib/event-integration/src/lib.rs` (+3 -8) 📝 `frontend/rust-lib/event-integration/tests/folder/local_test/mod.rs` (+1 -0) 📝 `frontend/rust-lib/event-integration/tests/folder/local_test/script.rs` (+4 -6) ➕ `frontend/rust-lib/event-integration/tests/folder/local_test/search_test.rs` (+27 -0) 📝 `frontend/rust-lib/flowy-core/Cargo.toml` (+1 -0) 📝 `frontend/rust-lib/flowy-core/src/config.rs` (+2 -2) 📝 `frontend/rust-lib/flowy-core/src/deps_resolve/folder_deps.rs` (+81 -0) 📝 `frontend/rust-lib/flowy-core/src/deps_resolve/mod.rs` (+2 -0) ➕ `frontend/rust-lib/flowy-core/src/deps_resolve/search_deps.rs` (+26 -0) 📝 `frontend/rust-lib/flowy-core/src/integrate/log.rs` (+2 -1) 📝 `frontend/rust-lib/flowy-core/src/integrate/mod.rs` (+1 -1) 📝 `frontend/rust-lib/flowy-core/src/lib.rs` (+10 -1) 📝 `frontend/rust-lib/flowy-document/src/document.rs` (+11 -1) 📝 `frontend/rust-lib/flowy-document/src/lib.rs` (+1 -0) 📝 `frontend/rust-lib/flowy-error/Cargo.toml` (+1 -1) 📝 `frontend/rust-lib/flowy-folder-pub/src/entities.rs` (+16 -0) _...and 22 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 22:22:04 +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#6179
No description provided.