-
Notifications
You must be signed in to change notification settings - Fork 133
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Search-filter for notes list doesn't use the notes' contents [$20] #288
Comments
This feature is really important to ensure Notes is usable. Not sure if this is realistic or not. |
I like the simple UI of the note app, but with hundreds of notes, it is nearly impossible to find the one you're looking for by only searching the title. Unfortunately I'm not able to provide code myself, but i posted a bounty on it - perhaps there are more of you, who are interested in a solution and want to join? |
The deck app provides a indexer plugin, can't that be used? Indexed search should be supported with the official fulltextsearch engine. |
With Nextcloud 20, a new search API was introduced. Therefore, we need to switch to the new "Unified search API", see nextcloud/server#20916 |
Due to the speed optimization in #233, the content of the notes is not loaded anymore when loading the notes list. This is still a good decision, but as a consequence filtering notes using a keyword (resp. search string) doesn't "search" in the notes' contents - since filtering is performed on the client. Currently, filtering uses metadata such as the note's title, path, and category, only.
In order to (re-)introduce filtering by notes' contents, we have to implement a server-side search. Of course, the search should be performed asynchronously and has to cope with network errors, users who type faster than the network connection etc. (you know that stuff).
There is a $20 open bounty on this issue. Add to the bounty at Bountysource.
The text was updated successfully, but these errors were encountered: