[PR #4458] [CLOSED] feat: Folder Search #6256

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

📋 Pull Request Information

Original PR: https://github.com/AppFlowy-IO/AppFlowy/pull/4458
Author: @appflowy
Created: 1/22/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

50 files changed (+2037 additions, -154 deletions)

View changed files

📝 frontend/appflowy_flutter/lib/startup/tasks/app_widget.dart (+11 -2)
frontend/appflowy_flutter/lib/workspace/application/command_palette/command_palette_bloc.dart (+62 -0)
frontend/appflowy_flutter/lib/workspace/application/command_palette/search_service.dart (+14 -0)
frontend/appflowy_flutter/lib/workspace/presentation/command_palette/command_palette.dart (+156 -0)
📝 frontend/appflowy_flutter/lib/workspace/presentation/home/hotkeys.dart (+8 -2)
📝 frontend/appflowy_flutter/packages/flowy_infra_ui/lib/src/flowy_overlay/flowy_dialog.dart (+34 -18)
📝 frontend/appflowy_tauri/src-tauri/Cargo.lock (+363 -33)
📝 frontend/appflowy_tauri/src-tauri/src/init.rs (+5 -1)
📝 frontend/rust-lib/Cargo.lock (+483 -71)
📝 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)

...and 30 more files

📄 Description

Enable search views in folder


🔄 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/4458 **Author:** [@appflowy](https://github.com/appflowy) **Created:** 1/22/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 **50 files changed** (+2037 additions, -154 deletions) <details> <summary>View changed files</summary> 📝 `frontend/appflowy_flutter/lib/startup/tasks/app_widget.dart` (+11 -2) ➕ `frontend/appflowy_flutter/lib/workspace/application/command_palette/command_palette_bloc.dart` (+62 -0) ➕ `frontend/appflowy_flutter/lib/workspace/application/command_palette/search_service.dart` (+14 -0) ➕ `frontend/appflowy_flutter/lib/workspace/presentation/command_palette/command_palette.dart` (+156 -0) 📝 `frontend/appflowy_flutter/lib/workspace/presentation/home/hotkeys.dart` (+8 -2) 📝 `frontend/appflowy_flutter/packages/flowy_infra_ui/lib/src/flowy_overlay/flowy_dialog.dart` (+34 -18) 📝 `frontend/appflowy_tauri/src-tauri/Cargo.lock` (+363 -33) 📝 `frontend/appflowy_tauri/src-tauri/src/init.rs` (+5 -1) 📝 `frontend/rust-lib/Cargo.lock` (+483 -71) 📝 `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) _...and 30 more files_ </details> ### 📄 Description Enable search views in folder --- <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:25 +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#6256
No description provided.