-
Notifications
You must be signed in to change notification settings - Fork 1.3k
Allow multiple uploads from within the app #604
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
Comments
Agreed. To clarify, MultipleShareActivity only gets called if the user starts from their gallery, selects more than one image, and clicks "share". We should allow multiple image selection from within our app as well. I imagine we would probably need to refactor ShareActivity first though so we can reuse the shared logic. |
We may need to think about 'what sort' of multiple uploads we would like to allow. The browser-based Upload Wizard allows any multiple uploads, even of unrelated pictures - all pictures must have their titles, desc, and categories selected separately later. I propose that we do not allow this, but instead only allow multiple uploads of ONE subject. So instead of having the user type in titles, desc, categories for all of them, they need only do it once (this also simplifies the UI logic IMO). However we need to make this explicit to the user somehow (perhaps in the tutorial or via a one-time popup during the first time they submit multiple images). |
I am a heavy user of the app but I have almost never used multiple upload. Is it really needed? It sounds like it might lead some people to upload a lot of pictures with only approximate titles/categories. |
Ah, interesting. I would personally use it, especially if I was taking photos of an event or of a particular location from a few angles. (I also thought that that was why we implemented the "use previous title/desc" button, as a sort of in-between measure) Would anyone else like to weigh in? |
This will be done in the later half of the IEG renewal. The scope is still somewhat vague, so we need to make the necessary decisions and refine it prior to implementation. Use case: Scope:
|
Based on discussion on the gamification issue #85 , I think it would indeed be a good idea for the multiple upload feature to eventually be dependent on the user's upload vs deletion statistics. Perhaps if we do manage to find a way to ascertain % of reverts for a particular username, we can set a requirement like "at least 50 uploads, and less than 10% of uploads are reverted". That is out of the scope of both our grant task and GSoC, though. So for the moment, to be safe, my proposal would be:
|
A bit of an update: @maskaravivek has agreed to take on this feature, after we had a bit of a reshuffling in our plans. :) He has informed me that he would like to work on top of #1796 for this , which I am good with as long as feature parity is maintained. Off the top of my head, features needed for parity: In the current ShareActivity:
Category suggestions/selection:
Warnings:
Image templates:
Others:
|
As mentioned in #2286, the image picker lets you choose only local images. Supporting other galleries(like google photos, drive etc.) means that we need to enforce the limit on the number of images that can be uploaded at one go on our own. One suggestion is to have this check in the 1st step of the upload flow itself. If the user has selected more than 5 images, he will need to remove the extra ones before proceeding. The top bar can have a close icon to remove an image before proceeding. The user can simply remove any image before proceeding. |
Why does such a limit exist anyways? |
Just so that anyone doesn't try to upload a lot of random images at once. |
That's fair. Shouldn't be too hard to implement :) IMO this belongs to a seperate issue so I created #3101 and I'm closing this one |
The current version of the app only allows multiple uploads when it is used inside of the Gallery. It do not let users to select multiple images to upload.
The text was updated successfully, but these errors were encountered: