GithubHelp home page GithubHelp logo

Comments (4)

johndatserakis avatar johndatserakis commented on July 27, 2024

Hello,

When you initialize a new file-upload-with-preview instance, you should store it in a variable.

const upload = new FileUploadWithPreview.FileUploadWithPreview('id-1')

Later, you can access the latest cachedFileArray directly off your variable.

upload.cachedFileArray

If you need to store multiple values, you can instantiate multiple variables, either independently or in an object.

from file-upload-with-preview.

bmarsh9 avatar bmarsh9 commented on July 27, 2024

Thanks @johndatserakis. However in my case, I’m unable to access the variable assigned.

For example, I may initialize FileUploadWithPreview in one function and then in some other piece of code, I need to access the uploaded files and ideally would like to just get the instance by calling the ID

from file-upload-with-preview.

johndatserakis avatar johndatserakis commented on July 27, 2024

Got it. In that case, you'll need to store the variable in a place that is accessible to the other function, or, pass the variable into the function itself.

If I were doing this in React, let's say, I'd declare the variable at the top of the "waterfall", and pass down the instantiated variable as a prop to my child components. Then, the child components can use it directly.

If you're not using React, there are many other ways to make a variable "global" to the rest of the application, some safer than others. A rudimentary option for instance, if you are out of other avenues, would be to instantiate the variable and then attach it to the window object. That would make it available anywhere else in the app on that page load.

// Some place at the start of your app
const upload = new FileUploadWithPreview.FileUploadWithPreview('id-1')
window.upload = upload

// Elsewhere in your app...
window.upload.cachedFileArray

There are cleaner ways to do this, though, like using a singleton pattern. There are examples of this online.

from file-upload-with-preview.

bmarsh9 avatar bmarsh9 commented on July 27, 2024

Thanks for the detail. I think I’ll end up refactoring a bit on my side. Ok to close

from file-upload-with-preview.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.