Skip to content
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

Show uploaded files without actually re-uploading them! #1121

Closed
JafarAkhondali opened this issue Oct 26, 2018 · 2 comments
Closed

Show uploaded files without actually re-uploading them! #1121

JafarAkhondali opened this issue Oct 26, 2018 · 2 comments

Comments

@JafarAkhondali
Copy link

We're building an editor thing that needs to show previously uploaded images. Right now i'm using this:

if ( previous_image_uploaded)
    fetch( previous_image_url )
        .then((response) => response.blob())
        .then((blob) => {
            uppy.addFile({
            name: previous_image_name,
            type: blob.type,
            data: blob
        })
});

Which is not optimize at all ! It'll redownload and upload all medias again ...
How can i add a file uppy without actually uploading it again?

@arturi
Copy link
Contributor

arturi commented Oct 27, 2018

Would marking at as complete solve it for you? #1112 (comment)

@kvz
Copy link
Member

kvz commented Jun 3, 2019

Hi there, we like this idea and we've moved this to our backlog as such:

We don't have an ETA for this yet though, and if someone in the community feels like contributing a PR we would be very grateful! Closing this issue here now but we'll re-open when we get to it.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

3 participants