refactor: we don't need to pass the endpoint, the sdk handles it
This commit is contained in:
parent
482fd966cc
commit
2e918e7802
|
@ -159,9 +159,7 @@ const UploadFileForm = () => {
|
|||
state,
|
||||
removeFile,
|
||||
cancelAll,
|
||||
} = useUppy({
|
||||
endpoint: import.meta.env.VITE_PUBLIC_TUS_ENDPOINT,
|
||||
});
|
||||
} = useUppy();
|
||||
|
||||
console.log({ state, files: getFiles() });
|
||||
|
||||
|
|
|
@ -19,11 +19,7 @@ const LISTENING_EVENTS = [
|
|||
"files-added"
|
||||
] as const
|
||||
|
||||
export function useUppy({
|
||||
endpoint
|
||||
}: {
|
||||
endpoint: string
|
||||
}) {
|
||||
export function useUppy() {
|
||||
const sdk = useSdk()
|
||||
|
||||
const [uploadLimit, setUploadLimit] = useState<number>(0)
|
||||
|
@ -161,7 +157,7 @@ export function useUppy({
|
|||
})
|
||||
|
||||
if (useTus) {
|
||||
uppy.use(Tus, { endpoint: endpoint, limit: 6, parallelUploads: 10 })
|
||||
uppy.use(Tus, { limit: 6, parallelUploads: 10 })
|
||||
uppy.addPreProcessor(tusPreprocessor)
|
||||
}
|
||||
|
||||
|
@ -211,7 +207,7 @@ export function useUppy({
|
|||
})
|
||||
}
|
||||
setState("idle")
|
||||
}, [targetRef, endpoint, uploadLimit])
|
||||
}, [targetRef, uploadLimit])
|
||||
|
||||
useEffect(() => {
|
||||
return () => {
|
||||
|
|
Loading…
Reference in New Issue