12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640 |
- /* eslint-disable max-classes-per-file */
- /* global AggregateError */
- import Translator from '@uppy/utils/lib/Translator'
- import ee from 'namespace-emitter'
- import { nanoid } from 'nanoid/non-secure'
- import throttle from 'lodash/throttle.js'
- import DefaultStore from '@uppy/store-default'
- import getFileType from '@uppy/utils/lib/getFileType'
- import getFileNameAndExtension from '@uppy/utils/lib/getFileNameAndExtension'
- import { getSafeFileId } from '@uppy/utils/lib/generateFileID'
- import supportsUploadProgress from './supportsUploadProgress.js'
- import getFileName from './getFileName.js'
- import { justErrorsLogger, debugLogger } from './loggers.js'
- import {
- Restricter,
- defaultOptions as defaultRestrictionOptions,
- RestrictionError,
- } from './Restricter.js'
- import packageJson from '../package.json'
- import locale from './locale.js'
- const getDefaultUploadState = () => ({
- totalProgress: 0,
- allowNewUpload: true,
- error: null,
- recoveredState: null,
- });
- /**
- * Uppy Core module.
- * Manages plugins, state updates, acts as an event bus,
- * adds/removes files and metadata.
- */
- class Uppy {
- static VERSION = packageJson.version
- /** @type {Record<string, BasePlugin[]>} */
- #plugins = Object.create(null)
- #restricter
- #storeUnsubscribe
- #emitter = ee()
- #preProcessors = new Set()
- #uploaders = new Set()
- #postProcessors = new Set()
- /**
- * Instantiate Uppy
- *
- * @param {object} opts — Uppy options
- */
- constructor (opts) {
- this.defaultLocale = locale
- const defaultOptions = {
- id: 'uppy',
- autoProceed: false,
- allowMultipleUploadBatches: true,
- debug: false,
- restrictions: defaultRestrictionOptions,
- meta: {},
- onBeforeFileAdded: (file, files) => !Object.hasOwn(files, file.id),
- onBeforeUpload: (files) => files,
- store: new DefaultStore(),
- logger: justErrorsLogger,
- infoTimeout: 5000,
- }
- // Merge default options with the ones set by user,
- // making sure to merge restrictions too
- this.opts = {
- ...defaultOptions,
- ...opts,
- restrictions: {
- ...defaultOptions.restrictions,
- ...(opts && opts.restrictions),
- },
- }
- // Support debug: true for backwards-compatability, unless logger is set in opts
- // opts instead of this.opts to avoid comparing objects — we set logger: justErrorsLogger in defaultOptions
- if (opts && opts.logger && opts.debug) {
- this.log('You are using a custom `logger`, but also set `debug: true`, which uses built-in logger to output logs to console. Ignoring `debug: true` and using your custom `logger`.', 'warning')
- } else if (opts && opts.debug) {
- this.opts.logger = debugLogger
- }
- this.log(`Using Core v${this.constructor.VERSION}`)
- this.i18nInit()
- this.store = this.opts.store
- this.setState({
- ...getDefaultUploadState(),
- plugins: {},
- files: {},
- currentUploads: {},
- capabilities: {
- uploadProgress: supportsUploadProgress(),
- individualCancellation: true,
- resumableUploads: false,
- },
- meta: { ...this.opts.meta },
- info: [],
- })
- this.#restricter = new Restricter(() => this.opts, this.i18n)
- this.#storeUnsubscribe = this.store.subscribe((prevState, nextState, patch) => {
- this.emit('state-update', prevState, nextState, patch)
- this.updateAll(nextState)
- })
- // Exposing uppy object on window for debugging and testing
- if (this.opts.debug && typeof window !== 'undefined') {
- window[this.opts.id] = this
- }
- this.#addListeners()
- }
- emit (event, ...args) {
- this.#emitter.emit(event, ...args)
- }
- on (event, callback) {
- this.#emitter.on(event, callback)
- return this
- }
- once (event, callback) {
- this.#emitter.once(event, callback)
- return this
- }
- off (event, callback) {
- this.#emitter.off(event, callback)
- return this
- }
- /**
- * Iterate on all plugins and run `update` on them.
- * Called each time state changes.
- *
- */
- updateAll (state) {
- this.iteratePlugins(plugin => {
- plugin.update(state)
- })
- }
- /**
- * Updates state with a patch
- *
- * @param {object} patch {foo: 'bar'}
- */
- setState (patch) {
- this.store.setState(patch)
- }
- /**
- * Returns current state.
- *
- * @returns {object}
- */
- getState () {
- return this.store.getState()
- }
- patchFilesState (filesWithNewState) {
- const existingFilesState = this.getState().files
- this.setState({
- files: {
- ...existingFilesState,
- ...Object.fromEntries(Object.entries(filesWithNewState).map(([fileID, newFileState]) => ([
- fileID,
- {
- ...existingFilesState[fileID],
- ...newFileState,
- },
- ]))),
- },
- })
- }
- /**
- * Shorthand to set state for a specific file.
- */
- setFileState (fileID, state) {
- if (!this.getState().files[fileID]) {
- throw new Error(`Can’t set state for ${fileID} (the file could have been removed)`)
- }
- this.patchFilesState({ [fileID]: state })
- }
- i18nInit () {
- const translator = new Translator([this.defaultLocale, this.opts.locale])
- this.i18n = translator.translate.bind(translator)
- this.i18nArray = translator.translateArray.bind(translator)
- this.locale = translator.locale
- }
- setOptions (newOpts) {
- this.opts = {
- ...this.opts,
- ...newOpts,
- restrictions: {
- ...this.opts.restrictions,
- ...(newOpts && newOpts.restrictions),
- },
- }
- if (newOpts.meta) {
- this.setMeta(newOpts.meta)
- }
- this.i18nInit()
- if (newOpts.locale) {
- this.iteratePlugins((plugin) => {
- plugin.setOptions(newOpts)
- })
- }
- // Note: this is not the preact `setState`, it's an internal function that has the same name.
- this.setState() // so that UI re-renders with new options
- }
- // todo next major: rename to something better? (it doesn't just reset progress)
- resetProgress () {
- const defaultProgress = {
- percentage: 0,
- bytesUploaded: 0,
- uploadComplete: false,
- uploadStarted: null,
- }
- const files = { ...this.getState().files }
- const updatedFiles = {}
- Object.keys(files).forEach(fileID => {
- updatedFiles[fileID] = {
- ...files[fileID],
- progress: {
- ...files[fileID].progress, ...defaultProgress,
- },
- }
- })
- this.setState({ files: updatedFiles, ...getDefaultUploadState() })
- this.emit('reset-progress')
- }
- /** @protected */
- clearUploadedFiles () {
- this.setState({ ...getDefaultUploadState(), files: {} })
- }
- addPreProcessor (fn) {
- this.#preProcessors.add(fn)
- }
- removePreProcessor (fn) {
- return this.#preProcessors.delete(fn)
- }
- addPostProcessor (fn) {
- this.#postProcessors.add(fn)
- }
- removePostProcessor (fn) {
- return this.#postProcessors.delete(fn)
- }
- addUploader (fn) {
- this.#uploaders.add(fn)
- }
- removeUploader (fn) {
- return this.#uploaders.delete(fn)
- }
- setMeta (data) {
- const updatedMeta = { ...this.getState().meta, ...data }
- const updatedFiles = { ...this.getState().files }
- Object.keys(updatedFiles).forEach((fileID) => {
- updatedFiles[fileID] = { ...updatedFiles[fileID], meta: { ...updatedFiles[fileID].meta, ...data } }
- })
- this.log('Adding metadata:')
- this.log(data)
- this.setState({
- meta: updatedMeta,
- files: updatedFiles,
- })
- }
- setFileMeta (fileID, data) {
- const updatedFiles = { ...this.getState().files }
- if (!updatedFiles[fileID]) {
- this.log('Was trying to set metadata for a file that has been removed: ', fileID)
- return
- }
- const newMeta = { ...updatedFiles[fileID].meta, ...data }
- updatedFiles[fileID] = { ...updatedFiles[fileID], meta: newMeta }
- this.setState({ files: updatedFiles })
- }
- /**
- * Get a file object.
- *
- * @param {string} fileID The ID of the file object to return.
- */
- getFile (fileID) {
- return this.getState().files[fileID]
- }
- /**
- * Get all files in an array.
- */
- getFiles () {
- const { files } = this.getState()
- return Object.values(files)
- }
- getFilesByIds (ids) {
- return ids.map((id) => this.getFile(id))
- }
- getObjectOfFilesPerState () {
- const { files: filesObject, totalProgress, error } = this.getState()
- const files = Object.values(filesObject)
- const inProgressFiles = files.filter(({ progress }) => !progress.uploadComplete && progress.uploadStarted)
- const newFiles = files.filter((file) => !file.progress.uploadStarted)
- const startedFiles = files.filter(
- file => file.progress.uploadStarted || file.progress.preprocess || file.progress.postprocess,
- )
- const uploadStartedFiles = files.filter((file) => file.progress.uploadStarted)
- const pausedFiles = files.filter((file) => file.isPaused)
- const completeFiles = files.filter((file) => file.progress.uploadComplete)
- const erroredFiles = files.filter((file) => file.error)
- const inProgressNotPausedFiles = inProgressFiles.filter((file) => !file.isPaused)
- const processingFiles = files.filter((file) => file.progress.preprocess || file.progress.postprocess)
- return {
- newFiles,
- startedFiles,
- uploadStartedFiles,
- pausedFiles,
- completeFiles,
- erroredFiles,
- inProgressFiles,
- inProgressNotPausedFiles,
- processingFiles,
- isUploadStarted: uploadStartedFiles.length > 0,
- isAllComplete: totalProgress === 100
- && completeFiles.length === files.length
- && processingFiles.length === 0,
- isAllErrored: !!error && erroredFiles.length === files.length,
- isAllPaused: inProgressFiles.length !== 0 && pausedFiles.length === inProgressFiles.length,
- isUploadInProgress: inProgressFiles.length > 0,
- isSomeGhost: files.some(file => file.isGhost),
- }
- }
- /*
- * @constructs
- * @param { Error[] } errors
- * @param { undefined } file
- */
- /*
- * @constructs
- * @param { RestrictionError } error
- */
- #informAndEmit (errors) {
- for (const error of errors) {
- const { file, isRestriction } = error
- if (isRestriction) {
- this.emit('restriction-failed', file, error)
- } else {
- this.emit('error', error)
- }
- this.log(error, 'warning')
- }
- const userFacingErrors = errors.filter((error) => error.isUserFacing)
- // don't flood the user: only show the first 4 toasts
- const maxNumToShow = 4
- const firstErrors = userFacingErrors.slice(0, maxNumToShow)
- const additionalErrors = userFacingErrors.slice(maxNumToShow)
- firstErrors.forEach(({ message, details = '' }) => {
- this.info({ message, details }, 'error', this.opts.infoTimeout)
- })
- if (additionalErrors.length > 0) {
- this.info({ message: this.i18n('additionalRestrictionsFailed', { count: additionalErrors.length }) })
- }
- }
- validateRestrictions (file, files = this.getFiles()) {
- try {
- this.#restricter.validate(files, [file])
- } catch (err) {
- return err
- }
- return null
- }
- #checkRequiredMetaFieldsOnFile (file) {
- const { missingFields, error } = this.#restricter.getMissingRequiredMetaFields(file)
- if (missingFields.length > 0) {
- this.setFileState(file.id, { missingRequiredMetaFields: missingFields })
- this.log(error.message)
- this.emit('restriction-failed', file, error)
- return false
- }
- return true
- }
- #checkRequiredMetaFields (files) {
- let success = true
- for (const file of Object.values(files)) {
- if (!this.#checkRequiredMetaFieldsOnFile(file)) {
- success = false
- }
- }
- return success
- }
- #assertNewUploadAllowed (file) {
- const { allowNewUpload } = this.getState()
- if (allowNewUpload === false) {
- const error = new RestrictionError(this.i18n('noMoreFilesAllowed'), { file })
- this.#informAndEmit([error])
- throw error
- }
- }
- checkIfFileAlreadyExists (fileID) {
- const { files } = this.getState()
- if (files[fileID] && !files[fileID].isGhost) {
- return true
- }
- return false
- }
- /**
- * Create a file state object based on user-provided `addFile()` options.
- */
- #transformFile (fileDescriptorOrFile) {
- // Uppy expects files in { name, type, size, data } format.
- // If the actual File object is passed from input[type=file] or drag-drop,
- // we normalize it to match Uppy file object
- const fileDescriptor = fileDescriptorOrFile instanceof File ? {
- name: fileDescriptorOrFile.name,
- type: fileDescriptorOrFile.type,
- size: fileDescriptorOrFile.size,
- data: fileDescriptorOrFile,
- } : fileDescriptorOrFile
- const fileType = getFileType(fileDescriptor)
- const fileName = getFileName(fileType, fileDescriptor)
- const fileExtension = getFileNameAndExtension(fileName).extension
- const isRemote = Boolean(fileDescriptor.isRemote)
- const id = getSafeFileId(fileDescriptor)
- const meta = fileDescriptor.meta || {}
- meta.name = fileName
- meta.type = fileType
- // `null` means the size is unknown.
- const size = Number.isFinite(fileDescriptor.data.size) ? fileDescriptor.data.size : null
- return {
- source: fileDescriptor.source || '',
- id,
- name: fileName,
- extension: fileExtension || '',
- meta: {
- ...this.getState().meta,
- ...meta,
- },
- type: fileType,
- data: fileDescriptor.data,
- progress: {
- percentage: 0,
- bytesUploaded: 0,
- bytesTotal: size,
- uploadComplete: false,
- uploadStarted: null,
- },
- size,
- isRemote,
- remote: fileDescriptor.remote || '',
- preview: fileDescriptor.preview,
- }
- }
- // Schedule an upload if `autoProceed` is enabled.
- #startIfAutoProceed () {
- if (this.opts.autoProceed && !this.scheduledAutoProceed) {
- this.scheduledAutoProceed = setTimeout(() => {
- this.scheduledAutoProceed = null
- this.upload().catch((err) => {
- if (!err.isRestriction) {
- this.log(err.stack || err.message || err)
- }
- })
- }, 4)
- }
- }
- #checkAndUpdateFileState (filesToAdd) {
- const { files: existingFiles } = this.getState()
- // create a copy of the files object only once
- const nextFilesState = { ...existingFiles }
- const validFilesToAdd = []
- const errors = []
- for (const fileToAdd of filesToAdd) {
- try {
- let newFile = this.#transformFile(fileToAdd)
- // If a file has been recovered (Golden Retriever), but we were unable to recover its data (probably too large),
- // users are asked to re-select these half-recovered files and then this method will be called again.
- // In order to keep the progress, meta and everthing else, we keep the existing file,
- // but we replace `data`, and we remove `isGhost`, because the file is no longer a ghost now
- if (existingFiles[newFile.id]?.isGhost) {
- const { isGhost, ...existingFileState } = existingFiles[newFile.id]
- newFile = {
- ...existingFileState,
- data: fileToAdd.data,
- }
- this.log(`Replaced the blob in the restored ghost file: ${newFile.name}, ${newFile.id}`)
- }
- const onBeforeFileAddedResult = this.opts.onBeforeFileAdded(newFile, nextFilesState)
- if (!onBeforeFileAddedResult && this.checkIfFileAlreadyExists(newFile.id)) {
- throw new RestrictionError(this.i18n('noDuplicates', { fileName: newFile.name }), { file: fileToAdd })
- }
- if (onBeforeFileAddedResult === false) {
- // Don’t show UI info for this error, as it should be done by the developer
- throw new RestrictionError('Cannot add the file because onBeforeFileAdded returned false.', { isUserFacing: false, file: fileToAdd })
- } else if (typeof onBeforeFileAddedResult === 'object' && onBeforeFileAddedResult !== null) {
- newFile = onBeforeFileAddedResult
- }
- this.#restricter.validateSingleFile(newFile)
- // need to add it to the new local state immediately, so we can use the state to validate the next files too
- nextFilesState[newFile.id] = newFile
- validFilesToAdd.push(newFile)
- } catch (err) {
- errors.push(err)
- }
- }
- try {
- // need to run this separately because it's much more slow, so if we run it inside the for-loop it will be very slow
- // when many files are added
- this.#restricter.validateAggregateRestrictions(Object.values(existingFiles), validFilesToAdd)
- } catch (err) {
- errors.push(err)
- // If we have any aggregate error, don't allow adding this batch
- return {
- nextFilesState: existingFiles,
- validFilesToAdd: [],
- errors,
- }
- }
- return {
- nextFilesState,
- validFilesToAdd,
- errors,
- }
- }
- /**
- * Add a new file to `state.files`. This will run `onBeforeFileAdded`,
- * try to guess file type in a clever way, check file against restrictions,
- * and start an upload if `autoProceed === true`.
- *
- * @param {object} file object to add
- * @returns {string} id for the added file
- */
- addFile (file) {
- this.#assertNewUploadAllowed(file)
- const { nextFilesState, validFilesToAdd, errors } = this.#checkAndUpdateFileState([file])
- const restrictionErrors = errors.filter((error) => error.isRestriction)
- this.#informAndEmit(restrictionErrors)
- if (errors.length > 0) throw errors[0]
- this.setState({ files: nextFilesState })
- const [firstValidFileToAdd] = validFilesToAdd
- this.emit('file-added', firstValidFileToAdd)
- this.emit('files-added', validFilesToAdd)
- this.log(`Added file: ${firstValidFileToAdd.name}, ${firstValidFileToAdd.id}, mime type: ${firstValidFileToAdd.type}`)
- this.#startIfAutoProceed()
- return firstValidFileToAdd.id
- }
- /**
- * Add multiple files to `state.files`. See the `addFile()` documentation.
- *
- * If an error occurs while adding a file, it is logged and the user is notified.
- * This is good for UI plugins, but not for programmatic use.
- * Programmatic users should usually still use `addFile()` on individual files.
- */
- addFiles (fileDescriptors) {
- this.#assertNewUploadAllowed()
- const { nextFilesState, validFilesToAdd, errors } = this.#checkAndUpdateFileState(fileDescriptors)
- const restrictionErrors = errors.filter((error) => error.isRestriction)
- this.#informAndEmit(restrictionErrors)
- const nonRestrictionErrors = errors.filter((error) => !error.isRestriction)
- if (nonRestrictionErrors.length > 0) {
- let message = 'Multiple errors occurred while adding files:\n'
- nonRestrictionErrors.forEach((subError) => {
- message += `\n * ${subError.message}`
- })
- this.info({
- message: this.i18n('addBulkFilesFailed', { smart_count: nonRestrictionErrors.length }),
- details: message,
- }, 'error', this.opts.infoTimeout)
- if (typeof AggregateError === 'function') {
- throw new AggregateError(nonRestrictionErrors, message)
- } else {
- const err = new Error(message)
- err.errors = nonRestrictionErrors
- throw err
- }
- }
- // OK, we haven't thrown an error, we can start updating state and emitting events now:
- this.setState({ files: nextFilesState })
- validFilesToAdd.forEach((file) => {
- this.emit('file-added', file)
- })
- this.emit('files-added', validFilesToAdd)
- if (validFilesToAdd.length > 5) {
- this.log(`Added batch of ${validFilesToAdd.length} files`)
- } else {
- Object.values(validFilesToAdd).forEach((file) => {
- this.log(`Added file: ${file.name}\n id: ${file.id}\n type: ${file.type}`)
- })
- }
- if (validFilesToAdd.length > 0) {
- this.#startIfAutoProceed()
- }
- }
- removeFiles (fileIDs, reason) {
- const { files, currentUploads } = this.getState()
- const updatedFiles = { ...files }
- const updatedUploads = { ...currentUploads }
- const removedFiles = Object.create(null)
- fileIDs.forEach((fileID) => {
- if (files[fileID]) {
- removedFiles[fileID] = files[fileID]
- delete updatedFiles[fileID]
- }
- })
- // Remove files from the `fileIDs` list in each upload.
- function fileIsNotRemoved (uploadFileID) {
- return removedFiles[uploadFileID] === undefined
- }
- Object.keys(updatedUploads).forEach((uploadID) => {
- const newFileIDs = currentUploads[uploadID].fileIDs.filter(fileIsNotRemoved)
- // Remove the upload if no files are associated with it anymore.
- if (newFileIDs.length === 0) {
- delete updatedUploads[uploadID]
- return
- }
- const { capabilities } = this.getState()
- if (newFileIDs.length !== currentUploads[uploadID].fileIDs.length
- && !capabilities.individualCancellation) {
- throw new Error('individualCancellation is disabled')
- }
- updatedUploads[uploadID] = {
- ...currentUploads[uploadID],
- fileIDs: newFileIDs,
- }
- })
- const stateUpdate = {
- currentUploads: updatedUploads,
- files: updatedFiles,
- }
- // If all files were removed - allow new uploads,
- // and clear recoveredState
- if (Object.keys(updatedFiles).length === 0) {
- stateUpdate.allowNewUpload = true
- stateUpdate.error = null
- stateUpdate.recoveredState = null
- }
- this.setState(stateUpdate)
- this.calculateTotalProgress()
- const removedFileIDs = Object.keys(removedFiles)
- removedFileIDs.forEach((fileID) => {
- this.emit('file-removed', removedFiles[fileID], reason)
- })
- if (removedFileIDs.length > 5) {
- this.log(`Removed ${removedFileIDs.length} files`)
- } else {
- this.log(`Removed files: ${removedFileIDs.join(', ')}`)
- }
- }
- removeFile (fileID, reason = null) {
- this.removeFiles([fileID], reason)
- }
- pauseResume (fileID) {
- if (!this.getState().capabilities.resumableUploads
- || this.getFile(fileID).uploadComplete) {
- return undefined
- }
- const wasPaused = this.getFile(fileID).isPaused || false
- const isPaused = !wasPaused
- this.setFileState(fileID, {
- isPaused,
- })
- this.emit('upload-pause', fileID, isPaused)
- return isPaused
- }
- pauseAll () {
- const updatedFiles = { ...this.getState().files }
- const inProgressUpdatedFiles = Object.keys(updatedFiles).filter((file) => {
- return !updatedFiles[file].progress.uploadComplete
- && updatedFiles[file].progress.uploadStarted
- })
- inProgressUpdatedFiles.forEach((file) => {
- const updatedFile = { ...updatedFiles[file], isPaused: true }
- updatedFiles[file] = updatedFile
- })
- this.setState({ files: updatedFiles })
- this.emit('pause-all')
- }
- resumeAll () {
- const updatedFiles = { ...this.getState().files }
- const inProgressUpdatedFiles = Object.keys(updatedFiles).filter((file) => {
- return !updatedFiles[file].progress.uploadComplete
- && updatedFiles[file].progress.uploadStarted
- })
- inProgressUpdatedFiles.forEach((file) => {
- const updatedFile = {
- ...updatedFiles[file],
- isPaused: false,
- error: null,
- }
- updatedFiles[file] = updatedFile
- })
- this.setState({ files: updatedFiles })
- this.emit('resume-all')
- }
- retryAll () {
- const updatedFiles = { ...this.getState().files }
- const filesToRetry = Object.keys(updatedFiles).filter(file => {
- return updatedFiles[file].error
- })
- filesToRetry.forEach((file) => {
- const updatedFile = {
- ...updatedFiles[file],
- isPaused: false,
- error: null,
- }
- updatedFiles[file] = updatedFile
- })
- this.setState({
- files: updatedFiles,
- error: null,
- })
- this.emit('retry-all', filesToRetry)
- if (filesToRetry.length === 0) {
- return Promise.resolve({
- successful: [],
- failed: [],
- })
- }
- const uploadID = this.#createUpload(filesToRetry, {
- forceAllowNewUpload: true, // create new upload even if allowNewUpload: false
- })
- return this.#runUpload(uploadID)
- }
- cancelAll ({ reason = 'user' } = {}) {
- this.emit('cancel-all', { reason })
- // Only remove existing uploads if user is canceling
- if (reason === 'user') {
- const { files } = this.getState()
- const fileIDs = Object.keys(files)
- if (fileIDs.length) {
- this.removeFiles(fileIDs, 'cancel-all')
- }
- this.setState(getDefaultUploadState())
- // todo should we call this.emit('reset-progress') like we do for resetProgress?
- }
- }
- retryUpload (fileID) {
- this.setFileState(fileID, {
- error: null,
- isPaused: false,
- })
- this.emit('upload-retry', fileID)
- const uploadID = this.#createUpload([fileID], {
- forceAllowNewUpload: true, // create new upload even if allowNewUpload: false
- })
- return this.#runUpload(uploadID)
- }
- logout () {
- this.iteratePlugins(plugin => {
- if (plugin.provider && plugin.provider.logout) {
- plugin.provider.logout()
- }
- })
- }
- // ___Why throttle at 500ms?
- // - We must throttle at >250ms for superfocus in Dashboard to work well
- // (because animation takes 0.25s, and we want to wait for all animations to be over before refocusing).
- // [Practical Check]: if thottle is at 100ms, then if you are uploading a file,
- // and click 'ADD MORE FILES', - focus won't activate in Firefox.
- // - We must throttle at around >500ms to avoid performance lags.
- // [Practical Check] Firefox, try to upload a big file for a prolonged period of time. Laptop will start to heat up.
- calculateProgress = throttle((file, data) => {
- const fileInState = this.getFile(file?.id)
- if (file == null || !fileInState) {
- this.log(`Not setting progress for a file that has been removed: ${file?.id}`)
- return
- }
- if (fileInState.progress.percentage === 100) {
- this.log(`Not setting progress for a file that has been already uploaded: ${file.id}`)
- return
- }
- // bytesTotal may be null or zero; in that case we can't divide by it
- const canHavePercentage = Number.isFinite(data.bytesTotal) && data.bytesTotal > 0
- this.setFileState(file.id, {
- progress: {
- ...fileInState.progress,
- bytesUploaded: data.bytesUploaded,
- bytesTotal: data.bytesTotal,
- percentage: canHavePercentage
- ? Math.round((data.bytesUploaded / data.bytesTotal) * 100)
- : 0,
- },
- })
- this.calculateTotalProgress()
- }, 500, { leading: true, trailing: true })
- calculateTotalProgress () {
- // calculate total progress, using the number of files currently uploading,
- // multiplied by 100 and the summ of individual progress of each file
- const files = this.getFiles()
- const inProgress = files.filter((file) => {
- return file.progress.uploadStarted
- || file.progress.preprocess
- || file.progress.postprocess
- })
- if (inProgress.length === 0) {
- this.emit('progress', 0)
- this.setState({ totalProgress: 0 })
- return
- }
- const sizedFiles = inProgress.filter((file) => file.progress.bytesTotal != null)
- const unsizedFiles = inProgress.filter((file) => file.progress.bytesTotal == null)
- if (sizedFiles.length === 0) {
- const progressMax = inProgress.length * 100
- const currentProgress = unsizedFiles.reduce((acc, file) => {
- return acc + file.progress.percentage
- }, 0)
- const totalProgress = Math.round((currentProgress / progressMax) * 100)
- this.setState({ totalProgress })
- return
- }
- let totalSize = sizedFiles.reduce((acc, file) => {
- return acc + file.progress.bytesTotal
- }, 0)
- const averageSize = totalSize / sizedFiles.length
- totalSize += averageSize * unsizedFiles.length
- let uploadedSize = 0
- sizedFiles.forEach((file) => {
- uploadedSize += file.progress.bytesUploaded
- })
- unsizedFiles.forEach((file) => {
- uploadedSize += (averageSize * (file.progress.percentage || 0)) / 100
- })
- let totalProgress = totalSize === 0
- ? 0
- : Math.round((uploadedSize / totalSize) * 100)
- // hot fix, because:
- // uploadedSize ended up larger than totalSize, resulting in 1325% total
- if (totalProgress > 100) {
- totalProgress = 100
- }
- this.setState({ totalProgress })
- this.emit('progress', totalProgress)
- }
- /**
- * Registers listeners for all global actions, like:
- * `error`, `file-removed`, `upload-progress`
- */
- #addListeners () {
- /**
- * @param {Error} error
- * @param {object} [file]
- * @param {object} [response]
- */
- const errorHandler = (error, file, response) => {
- let errorMsg = error.message || 'Unknown error'
- if (error.details) {
- errorMsg += ` ${error.details}`
- }
- this.setState({ error: errorMsg })
- if (file != null && file.id in this.getState().files) {
- this.setFileState(file.id, {
- error: errorMsg,
- response,
- })
- }
- }
- this.on('error', errorHandler)
- this.on('upload-error', (file, error, response) => {
- errorHandler(error, file, response)
- if (typeof error === 'object' && error.message) {
- this.log(error.message, 'error')
- const newError = new Error(this.i18n('failedToUpload', { file: file?.name }))
- newError.isUserFacing = true // todo maybe don't do this with all errors?
- newError.details = error.message
- if (error.details) {
- newError.details += ` ${error.details}`
- }
- this.#informAndEmit([newError])
- } else {
- this.#informAndEmit([error])
- }
- })
- let uploadStalledWarningRecentlyEmitted
- this.on('upload-stalled', (error, files) => {
- const { message } = error
- const details = files.map(file => file.meta.name).join(', ')
- if (!uploadStalledWarningRecentlyEmitted) {
- this.info({ message, details }, 'warning', this.opts.infoTimeout)
- uploadStalledWarningRecentlyEmitted = setTimeout(() => {
- uploadStalledWarningRecentlyEmitted = null
- }, this.opts.infoTimeout)
- }
- this.log(`${message} ${details}`.trim(), 'warning')
- })
- this.on('upload', () => {
- this.setState({ error: null })
- })
- const onUploadStarted = (files) => {
- const filesFiltered = files.filter((file) => {
- const exists = (file != null && this.getFile(file.id))
- if (!exists) this.log(`Not setting progress for a file that has been removed: ${file?.id}`)
- return exists
- })
- const filesState = Object.fromEntries(filesFiltered.map((file) => ([
- file.id,
- {
- progress: {
- uploadStarted: Date.now(),
- uploadComplete: false,
- percentage: 0,
- bytesUploaded: 0,
- bytesTotal: file.size,
- },
- },
- ])))
- this.patchFilesState(filesState)
- }
- this.on('upload-start', (files) => {
- files.forEach((file) => {
- // todo backward compat, remove this event in a next major
- this.emit('upload-started', file)
- })
- onUploadStarted(files)
- })
- this.on('upload-progress', this.calculateProgress)
- this.on('upload-success', (file, uploadResp) => {
- if (file == null || !this.getFile(file.id)) {
- this.log(`Not setting progress for a file that has been removed: ${file?.id}`)
- return
- }
- const currentProgress = this.getFile(file.id).progress
- this.setFileState(file.id, {
- progress: {
- ...currentProgress,
- postprocess: this.#postProcessors.size > 0 ? {
- mode: 'indeterminate',
- } : null,
- uploadComplete: true,
- percentage: 100,
- bytesUploaded: currentProgress.bytesTotal,
- },
- response: uploadResp,
- uploadURL: uploadResp.uploadURL,
- isPaused: false,
- })
- // Remote providers sometimes don't tell us the file size,
- // but we can know how many bytes we uploaded once the upload is complete.
- if (file.size == null) {
- this.setFileState(file.id, {
- size: uploadResp.bytesUploaded || currentProgress.bytesTotal,
- })
- }
- this.calculateTotalProgress()
- })
- this.on('preprocess-progress', (file, progress) => {
- if (file == null || !this.getFile(file.id)) {
- this.log(`Not setting progress for a file that has been removed: ${file?.id}`)
- return
- }
- this.setFileState(file.id, {
- progress: { ...this.getFile(file.id).progress, preprocess: progress },
- })
- })
- this.on('preprocess-complete', (file) => {
- if (file == null || !this.getFile(file.id)) {
- this.log(`Not setting progress for a file that has been removed: ${file?.id}`)
- return
- }
- const files = { ...this.getState().files }
- files[file.id] = { ...files[file.id], progress: { ...files[file.id].progress } }
- delete files[file.id].progress.preprocess
- this.setState({ files })
- })
- this.on('postprocess-progress', (file, progress) => {
- if (file == null || !this.getFile(file.id)) {
- this.log(`Not setting progress for a file that has been removed: ${file?.id}`)
- return
- }
- this.setFileState(file.id, {
- progress: { ...this.getState().files[file.id].progress, postprocess: progress },
- })
- })
- this.on('postprocess-complete', (file) => {
- if (file == null || !this.getFile(file.id)) {
- this.log(`Not setting progress for a file that has been removed: ${file?.id}`)
- return
- }
- const files = {
- ...this.getState().files,
- }
- files[file.id] = {
- ...files[file.id],
- progress: {
- ...files[file.id].progress,
- },
- }
- delete files[file.id].progress.postprocess
- this.setState({ files })
- })
- this.on('restored', () => {
- // Files may have changed--ensure progress is still accurate.
- this.calculateTotalProgress()
- })
- this.on('dashboard:file-edit-complete', (file) => {
- if (file) {
- this.#checkRequiredMetaFieldsOnFile(file)
- }
- })
- // show informer if offline
- if (typeof window !== 'undefined' && window.addEventListener) {
- window.addEventListener('online', this.#updateOnlineStatus)
- window.addEventListener('offline', this.#updateOnlineStatus)
- setTimeout(this.#updateOnlineStatus, 3000)
- }
- }
- updateOnlineStatus () {
- const online = typeof window.navigator.onLine !== 'undefined'
- ? window.navigator.onLine
- : true
- if (!online) {
- this.emit('is-offline')
- this.info(this.i18n('noInternetConnection'), 'error', 0)
- this.wasOffline = true
- } else {
- this.emit('is-online')
- if (this.wasOffline) {
- this.emit('back-online')
- this.info(this.i18n('connectedToInternet'), 'success', 3000)
- this.wasOffline = false
- }
- }
- }
- #updateOnlineStatus = this.updateOnlineStatus.bind(this)
- getID () {
- return this.opts.id
- }
- /**
- * Registers a plugin with Core.
- *
- * @param {object} Plugin object
- * @param {object} [opts] object with options to be passed to Plugin
- * @returns {object} self for chaining
- */
- // eslint-disable-next-line no-shadow
- use (Plugin, opts) {
- if (typeof Plugin !== 'function') {
- const msg = `Expected a plugin class, but got ${Plugin === null ? 'null' : typeof Plugin}.`
- + ' Please verify that the plugin was imported and spelled correctly.'
- throw new TypeError(msg)
- }
- // Instantiate
- const plugin = new Plugin(this, opts)
- const pluginId = plugin.id
- if (!pluginId) {
- throw new Error('Your plugin must have an id')
- }
- if (!plugin.type) {
- throw new Error('Your plugin must have a type')
- }
- const existsPluginAlready = this.getPlugin(pluginId)
- if (existsPluginAlready) {
- const msg = `Already found a plugin named '${existsPluginAlready.id}'. `
- + `Tried to use: '${pluginId}'.\n`
- + 'Uppy plugins must have unique `id` options. See https://uppy.io/docs/plugins/#id.'
- throw new Error(msg)
- }
- if (Plugin.VERSION) {
- this.log(`Using ${pluginId} v${Plugin.VERSION}`)
- }
- if (plugin.type in this.#plugins) {
- this.#plugins[plugin.type].push(plugin)
- } else {
- this.#plugins[plugin.type] = [plugin]
- }
- plugin.install()
- this.emit('plugin-added', plugin)
- return this
- }
- /**
- * Find one Plugin by name.
- *
- * @param {string} id plugin id
- * @returns {BasePlugin|undefined}
- */
- getPlugin (id) {
- for (const plugins of Object.values(this.#plugins)) {
- const foundPlugin = plugins.find(plugin => plugin.id === id)
- if (foundPlugin != null) return foundPlugin
- }
- return undefined
- }
- [Symbol.for('uppy test: getPlugins')] (type) {
- return this.#plugins[type]
- }
- /**
- * Iterate through all `use`d plugins.
- *
- * @param {Function} method that will be run on each plugin
- */
- iteratePlugins (method) {
- Object.values(this.#plugins).flat(1).forEach(method)
- }
- /**
- * Uninstall and remove a plugin.
- *
- * @param {object} instance The plugin instance to remove.
- */
- removePlugin (instance) {
- this.log(`Removing plugin ${instance.id}`)
- this.emit('plugin-remove', instance)
- if (instance.uninstall) {
- instance.uninstall()
- }
- const list = this.#plugins[instance.type]
- // list.indexOf failed here, because Vue3 converted the plugin instance
- // to a Proxy object, which failed the strict comparison test:
- // obj !== objProxy
- const index = list.findIndex(item => item.id === instance.id)
- if (index !== -1) {
- list.splice(index, 1)
- }
- const state = this.getState()
- const updatedState = {
- plugins: {
- ...state.plugins,
- [instance.id]: undefined,
- },
- }
- this.setState(updatedState)
- }
- /**
- * Uninstall all plugins and close down this Uppy instance.
- */
- close ({ reason } = {}) {
- this.log(`Closing Uppy instance ${this.opts.id}: removing all files and uninstalling plugins`)
- this.cancelAll({ reason })
- this.#storeUnsubscribe()
- this.iteratePlugins((plugin) => {
- this.removePlugin(plugin)
- })
- if (typeof window !== 'undefined' && window.removeEventListener) {
- window.removeEventListener('online', this.#updateOnlineStatus)
- window.removeEventListener('offline', this.#updateOnlineStatus)
- }
- }
- hideInfo () {
- const { info } = this.getState()
- this.setState({ info: info.slice(1) })
- this.emit('info-hidden')
- }
- /**
- * Set info message in `state.info`, so that UI plugins like `Informer`
- * can display the message.
- *
- * @param {string | object} message Message to be displayed by the informer
- * @param {string} [type]
- * @param {number} [duration]
- */
- info (message, type = 'info', duration = 3000) {
- const isComplexMessage = typeof message === 'object'
- this.setState({
- info: [
- ...this.getState().info,
- {
- type,
- message: isComplexMessage ? message.message : message,
- details: isComplexMessage ? message.details : null,
- },
- ],
- })
- setTimeout(() => this.hideInfo(), duration)
- this.emit('info-visible')
- }
- /**
- * Passes messages to a function, provided in `opts.logger`.
- * If `opts.logger: Uppy.debugLogger` or `opts.debug: true`, logs to the browser console.
- *
- * @param {string|object} message to log
- * @param {string} [type] optional `error` or `warning`
- */
- log (message, type) {
- const { logger } = this.opts
- switch (type) {
- case 'error': logger.error(message); break
- case 'warning': logger.warn(message); break
- default: logger.debug(message); break
- }
- }
- /**
- * Restore an upload by its ID.
- */
- restore (uploadID) {
- this.log(`Core: attempting to restore upload "${uploadID}"`)
- if (!this.getState().currentUploads[uploadID]) {
- this.#removeUpload(uploadID)
- return Promise.reject(new Error('Nonexistent upload'))
- }
- return this.#runUpload(uploadID)
- }
- /**
- * Create an upload for a bunch of files.
- *
- * @param {Array<string>} fileIDs File IDs to include in this upload.
- * @returns {string} ID of this upload.
- */
- #createUpload (fileIDs, opts = {}) {
- // uppy.retryAll sets this to true — when retrying we want to ignore `allowNewUpload: false`
- const { forceAllowNewUpload = false } = opts
- const { allowNewUpload, currentUploads } = this.getState()
- if (!allowNewUpload && !forceAllowNewUpload) {
- throw new Error('Cannot create a new upload: already uploading.')
- }
- const uploadID = nanoid()
- this.emit('upload', {
- id: uploadID,
- fileIDs,
- })
- this.setState({
- allowNewUpload: this.opts.allowMultipleUploadBatches !== false && this.opts.allowMultipleUploads !== false,
- currentUploads: {
- ...currentUploads,
- [uploadID]: {
- fileIDs,
- step: 0,
- result: {},
- },
- },
- })
- return uploadID
- }
- [Symbol.for('uppy test: createUpload')] (...args) { return this.#createUpload(...args) }
- #getUpload (uploadID) {
- const { currentUploads } = this.getState()
- return currentUploads[uploadID]
- }
- /**
- * Add data to an upload's result object.
- *
- * @param {string} uploadID The ID of the upload.
- * @param {object} data Data properties to add to the result object.
- */
- addResultData (uploadID, data) {
- if (!this.#getUpload(uploadID)) {
- this.log(`Not setting result for an upload that has been removed: ${uploadID}`)
- return
- }
- const { currentUploads } = this.getState()
- const currentUpload = { ...currentUploads[uploadID], result: { ...currentUploads[uploadID].result, ...data } }
- this.setState({
- currentUploads: { ...currentUploads, [uploadID]: currentUpload },
- })
- }
- /**
- * Remove an upload, eg. if it has been canceled or completed.
- *
- * @param {string} uploadID The ID of the upload.
- */
- #removeUpload (uploadID) {
- const currentUploads = { ...this.getState().currentUploads }
- delete currentUploads[uploadID]
- this.setState({
- currentUploads,
- })
- }
- /**
- * Run an upload. This picks up where it left off in case the upload is being restored.
- *
- * @private
- */
- async #runUpload (uploadID) {
- const getCurrentUpload = () => {
- const { currentUploads } = this.getState()
- return currentUploads[uploadID]
- }
- let currentUpload = getCurrentUpload()
- const steps = [
- ...this.#preProcessors,
- ...this.#uploaders,
- ...this.#postProcessors,
- ]
- try {
- for (let step = currentUpload.step || 0; step < steps.length; step++) {
- if (!currentUpload) {
- break
- }
- const fn = steps[step]
- this.setState({
- currentUploads: {
- ...this.getState().currentUploads,
- [uploadID]: {
- ...currentUpload,
- step,
- },
- },
- })
- const { fileIDs } = currentUpload
- // TODO give this the `updatedUpload` object as its only parameter maybe?
- // Otherwise when more metadata may be added to the upload this would keep getting more parameters
- await fn(fileIDs, uploadID)
- // Update currentUpload value in case it was modified asynchronously.
- currentUpload = getCurrentUpload()
- }
- } catch (err) {
- this.#removeUpload(uploadID)
- throw err
- }
- // Set result data.
- if (currentUpload) {
- // Mark postprocessing step as complete if necessary; this addresses a case where we might get
- // stuck in the postprocessing UI while the upload is fully complete.
- // If the postprocessing steps do not do any work, they may not emit postprocessing events at
- // all, and never mark the postprocessing as complete. This is fine on its own but we
- // introduced code in the @uppy/core upload-success handler to prepare postprocessing progress
- // state if any postprocessors are registered. That is to avoid a "flash of completed state"
- // before the postprocessing plugins can emit events.
- //
- // So, just in case an upload with postprocessing plugins *has* completed *without* emitting
- // postprocessing completion, we do it instead.
- currentUpload.fileIDs.forEach((fileID) => {
- const file = this.getFile(fileID)
- if (file && file.progress.postprocess) {
- this.emit('postprocess-complete', file)
- }
- })
- const files = currentUpload.fileIDs.map((fileID) => this.getFile(fileID))
- const successful = files.filter((file) => !file.error)
- const failed = files.filter((file) => file.error)
- await this.addResultData(uploadID, { successful, failed, uploadID })
- // Update currentUpload value in case it was modified asynchronously.
- currentUpload = getCurrentUpload()
- }
- // Emit completion events.
- // This is in a separate function so that the `currentUploads` variable
- // always refers to the latest state. In the handler right above it refers
- // to an outdated object without the `.result` property.
- let result
- if (currentUpload) {
- result = currentUpload.result
- this.emit('complete', result)
- this.#removeUpload(uploadID)
- }
- if (result == null) {
- this.log(`Not setting result for an upload that has been removed: ${uploadID}`)
- }
- return result
- }
- /**
- * Start an upload for all the files that are not currently being uploaded.
- *
- * @returns {Promise}
- */
- upload () {
- if (!this.#plugins.uploader?.length) {
- this.log('No uploader type plugins are used', 'warning')
- }
- let { files } = this.getState()
- const onBeforeUploadResult = this.opts.onBeforeUpload(files)
- if (onBeforeUploadResult === false) {
- return Promise.reject(new Error('Not starting the upload because onBeforeUpload returned false'))
- }
- if (onBeforeUploadResult && typeof onBeforeUploadResult === 'object') {
- files = onBeforeUploadResult
- // Updating files in state, because uploader plugins receive file IDs,
- // and then fetch the actual file object from state
- this.setState({
- files,
- })
- }
- return Promise.resolve()
- .then(() => this.#restricter.validateMinNumberOfFiles(files))
- .catch((err) => {
- this.#informAndEmit([err])
- throw err
- })
- .then(() => {
- if (!this.#checkRequiredMetaFields(files)) {
- throw new RestrictionError(this.i18n('missingRequiredMetaField'))
- }
- })
- .catch((err) => {
- // Doing this in a separate catch because we already emited and logged
- // all the errors in `checkRequiredMetaFields` so we only throw a generic
- // missing fields error here.
- throw err
- })
- .then(() => {
- const { currentUploads } = this.getState()
- // get a list of files that are currently assigned to uploads
- const currentlyUploadingFiles = Object.values(currentUploads).flatMap(curr => curr.fileIDs)
- const waitingFileIDs = []
- Object.keys(files).forEach((fileID) => {
- const file = this.getFile(fileID)
- // if the file hasn't started uploading and hasn't already been assigned to an upload..
- if ((!file.progress.uploadStarted) && (currentlyUploadingFiles.indexOf(fileID) === -1)) {
- waitingFileIDs.push(file.id)
- }
- })
- const uploadID = this.#createUpload(waitingFileIDs)
- return this.#runUpload(uploadID)
- })
- .catch((err) => {
- this.emit('error', err)
- this.log(err, 'error')
- throw err
- })
- }
- }
- export default Uppy
|