We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Adopt new upload widget helper functions along with other front end frameworks that consume the URL Loader API.
Via cloudinary-community/cloudinary-util#166
Example implementation: cloudinary-community/next-cloudinary#492
Usage:
import { generateSignatureCallback, generateUploadWidgetResultCallback, getUploadWidgetOptions, UPLOAD_WIDGET_EVENTS } from '@cloudinary-util/url-loader' const signatureCallback = generateSignatureCallback({ signatureEndpoint: '/asdf', fetch }) const uploadOptions = getUploadWidgetOptions({ signatureCallback }, { cloud: { cloudName: 'testcloud', apiKey: 'abcd1234' } }); const resultsCallback = generateUploadWidgetResultCallback({ onError: (uploadError) => { // Example on storing error // setError(uploadError); }, onResult: (uploadResult) => { // Example of storing results on any event // setResults(uploadResult); }, onSuccess: (uploadResult) => { // Tapping into individual events } }); cloudinary.createUploadWidget(uploadOptions, resultsCallback); // UPLOAD_WIDGET_EVENTS can replace WIDGET_EVENTS manually managed in front end code
The text was updated successfully, but these errors were encountered:
feat-#226: add upload widget utility functions
b668643
Hey, I have added this feature in #228 :)
Sorry, something went wrong.
Successfully merging a pull request may close this issue.
Feature Request
Is your feature request related to a problem? Please describe.
Adopt new upload widget helper functions along with other front end frameworks that consume the URL Loader API.
Via cloudinary-community/cloudinary-util#166
Example implementation: cloudinary-community/next-cloudinary#492
Describe the solution you'd like
Usage:
The text was updated successfully, but these errors were encountered: