-
Notifications
You must be signed in to change notification settings - Fork 3.1k
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 feature for the Android App #695
Comments
Do you mean a filter function for one folder: Or do you want a real search: |
we can start with the first filter.. something which apps like dropbox offers |
I have splitted "filter function" to #696, so this issue is all about real search. |
Your proposal is the same like dropbox does it? |
@tobiasKaminsky then in case of two exactly same folder names in the results we can show the path in parentheses behind it. If the names are all unique, no need to show the path. (This is similar how Sublime Text does it for open files.) |
@jancborchardt Hmm. My intension to display the path is that the user can navigate next time to the desired file without searching again. Or how would he know, that file "test.jpg" is in /images/wedding/ ? |
@jancborchardt Parentheses? May be "heavy". What about path in smaller text under the name? @tobiasKaminsky , we can reconsider the preview layout to show the current path in some place. |
@davivel good call, path in smaller text under the name. Then we can also show it always @tobiasKaminsky |
Hey guys, any update for this? |
hi, any update for local or remote search feature ? |
Hi,
and into the FileDisplayActivity.java :
this works and return the filtred list. But at the first sync thread launched after the search, the listview is refreched as it is in the server (not filtred). |
Ok, some news.. |
OK. it's done. It was more simpler than expected:
please clean up the code and ad it to the next release.
|
Hi again, |
Hi, so I change the initialisation of the adapter int the OCFileListFragment and in the FileDisplayActivity but finaly the file is not auto downloaded and shown ...!!? |
@DeepDiver1975 Is there a search api in /core? (Sorry, if you are not the right contact person in /core, but you are roughly the only one I know) |
Nothing which is usable by the clients (in terms of public api or ready to be used) |
@DeepDiver1975 Thank you for your reply. |
I'm not aware of one right away - maybe searching github can reveal something. |
There is a research issue where I had a look at hew we could expose our search via webdaf, since there is RFC5323 for it: owncloud/core#12884. See also comment in owncloud/core#12543 (comment) The bottom line is that we should implement a query language that can express RFC5323
That at least is my personal opinion. |
Thank you both for your feedback. |
When will this search feature be released in the latest Android version, will this be included into the iOS version too? |
As the previous devs said, there is no functionality in the server that will allow searching for now. |
Thank you. |
As /core needs some time to get the search api, I would like to add the search in the current folder. |
Yeah, we can have a filter of the current folder first, and then search of the rest later. Kind of like in the web interface where the current folder is filtered and other results show below. |
@davigonz i think we should add the feature to search locally for documents of a certain type example pdf, images, videos and files. Also, is the feature of local search being implemented? |
this should be a work in different stages, but for the current one we can put the focus on filtering in the current folder using the file name. @michaelstingl is it worthy to put effort in this issue? |
From my understanding, on the device is only a small number of files present. Local search don't really solve a problem. Folder filtering in big folders with a long list of files might already solve a small problem for some users, and the UI should be reusable for server-based search via API. 👍 |
then, this can be a good start point @harshitbansal05 . Some tips related:
|
@jesmrec, imo a progress bar can be shown when user performs any search and can be placed on the top of the screen. |
With the third point i mean to set something that clears the text area where the user inputs the filter (An (x) or similar).
do you mean in the current folder? i meant that searching in the current folder is filtering. |
Search API has been implemented on oC server and is planned to be included in oC 10.0.10: owncloud/core#25373 (comment) |
Local search merged, to be included in 2.9 |
Reopening this, since searching using the API is still pending. |
Hi, Not sure this fits in there, yet it would be great to be able to filter/search on collaborative tags as well. Thanks. |
There's another issue for tags (#1587), but I could also imagine to extend the future search feature with filter/search for collaborative tags. |
@jesmrec Is this required? |
The search feature using the core API is required of course, but i would think about the requirements before starting to develop. Let me have a look about what we expect for this. |
any chance to get recursive search within folders? |
not implemented yet, but in our roadmap. |
Adding a search above the file listing
Edited by @davigonz from here on
We are going to face this in different stages:
1. Local search [DONE]
Here you have a gif showing how the local search looks like
2. Search using API: owncloud/core#25373 (comment)
owncloud/core#31873
CC @michaelstingl @jesmrec
The text was updated successfully, but these errors were encountered: