Skip to content

Commit 32d778c

Browse files
authored
fix: pass previewUrlCallback function to the global scope (#270)
* fix: pass previewUrlCallback function to the global scope * fix: add missing effect dep
1 parent 90ed6f2 commit 32d778c

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

src/uploader.js

+6-1
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,7 @@ const useWidget = (
4444
locale,
4545
localeTranslations,
4646
localePluralize,
47+
previewUrlCallback,
4748
...options
4849
},
4950
uploadcare
@@ -67,6 +68,9 @@ const useWidget = (
6768
if (localeTranslations) {
6869
window.UPLOADCARE_LOCALE_TRANSLATIONS = localeTranslations
6970
}
71+
if (previewUrlCallback) {
72+
window.UPLOADCARE_PREVIEW_URL_CALLBACK = previewUrlCallback
73+
}
7074

7175
uploadcare.plugin((internal) => {
7276
internal.locale.rebuild({
@@ -80,8 +84,9 @@ const useWidget = (
8084
if (locale) delete window.UPLOADCARE_LOCALE
8185
if (localePluralize) delete window.UPLOADCARE_LOCALE_PLURALIZE
8286
if (localeTranslations) delete window.UPLOADCARE_LOCALE_TRANSLATIONS
87+
if (previewUrlCallback) delete window.UPLOADCARE_PREVIEW_URL_CALLBACK
8388
}
84-
}, [locale, localeTranslations, localePluralize])
89+
}, [locale, localeTranslations, localePluralize, previewUrlCallback])
8590

8691
useEffect(() => {
8792
widget.current = uploadcare.Widget(input.current)

0 commit comments

Comments
 (0)