File Uploader API
For convenience, we provide the <uc-upload-ctx-provider>
tag, which offers
additional uploader management methods. Simply place the context provider on the
page and wire it to the uploader via the ctx-name
attribute.
To access the Uploader API instance and utilize its methods, simply retrieve it as follows:
Get file entry by Internal ID
getOutputItem(internalId: string) => OutputFileEntry
Returns a file entry by its internal ID. Internal ID is a unique identifier of a
file entry within the File Uploader instance. It is generated automatically and
can be accessed via the internalId
property of the OutputFileEntry
object.
It’s not related to the UUID of the uploaded file.
Here is the interface of the returned object. Since it’s originally described in TypeScript with generics that could be hard to understand, we’ve simplified it for the sake of clarity.
Status is one of the following:
idle
- the file is in the upload list, but it’s not started uploading yet.uploading
- the file is currently uploading.failed
- the file failed to upload.success
- the file was successfully uploaded.removed
- the file was removed from the upload list.
The UploadcareFile
type is described in the
@uploadcare/upload-client API docs.
The SourceType
type is a list of sources from which the file can be uploaded.
Get upload collection state
getOutputCollectionState() => OutputCollectionState
Returns the entire state of the upload list.
Here is the interface of the returned object. Since it’s originally described in TypeScript with generics that could be hard to understand, we’ve simplified it for the sake of clarity.
Status is one of the following:
idle
- there are no files in the upload list, or some files have theidle
status and none of them have theuploading
orfailed
status. In case when theconfirm-upload
option is enabled and there aresuccess
files along with theidle
ones - the collection status isidle
.uploading
- some files have theuploading
status and none of them have thefailed
status.failed
- some files have thefailed
status.success
- all files have thesuccess
status.
The UploadcareGroup
type is described in the
@uploadcare/upload-client API docs.
Note that the returned object isn’t a plain object. It has special lazy-evaluated properties that are computed on demand. This is done to avoid unnecessary computations and memory allocations. Those properties are expected to be accessed synchronously, so if you need to access them asynchronously, you should copy them to a plain object first:
Upload all
uploadAll() => void
This method uploads all files that are currently in the upload list.
Add file from File or Blob
addFileFromObject(file: File | Blob, options?: { silent?: boolean; fileName?: string; }) => OutputFileEntry
Add a file to the upload list from a File
object. The options
parameter is
optional:
silent
- iftrue
, eventsfile-added
,file-upload-start
,file-upload-progress
,file-upload-success
won’t be triggered.fileName
- the name of the file to be displayed in the upload list.
Add file from UUID
addFileFromUuid(uuid: string, options?: { silent?: boolean; fileName?: string; }) => OutputFileEntry
Add a file to the upload list from a UUID. The options
parameter is optional:
silent
- iftrue
, eventsfile-added
,file-upload-start
,file-upload-progress
,file-upload-success
won’t be triggered.fileName
- the name of the file to be displayed in the upload list.
Add file from URL
addFileFromUrl(url: string, options?: { silent?: boolean; fileName?: string; }) => OutputFileEntry
Add a file to the upload list from a URL. The options
parameter is optional:
silent
- iftrue
, eventsfile-added
,file-upload-start
,file-upload-progress
,file-upload-success
won’t be triggered.fileName
- the name of the file to be displayed in the upload list.
Add a file from Uploadcare CDN URL
addFileFromCdnUrl(cdnUrl: string, options?: { silent?: boolean; fileName?: string; }) => OutputFileEntry
Add a file to the upload list from an Uploadcare CDN URL. It’s useful when you wish to add a previously uploaded file to Uploadcare with the processing operations applied.
The options
parameter is optional:
silent
- iftrue
, eventsfile-added
,file-upload-start
,file-upload-progress
,file-upload-success
won’t be triggered.fileName
- the file name to be displayed in the upload list.
Remove file by Internal ID
removeFileByInternalId(internalId: string) => void
Remove a file from the upload list by its internal ID.
Note: This method doesn’t remove the file from the server. It only removes it from the upload list.
Remove all files
removeAllFiles() => void
Remove all files from the upload list.
Note: This method doesn’t remove the files from the server. It only removes them from the upload list.
Init uploader flow
initFlow() => void
This method initiates the uploader flow. Its behavior varies depending on the solution used (regular, inline, or minimal), and it is particularly useful for the regular option when you want to open the dialog programmatically.
Done uploader flow
doneFlow() => void
This method terminates the uploader flow. Its behavior depends on the solution used (regular, inline, or minimal) and is particularly useful for the regular option when you want to close the dialog programmatically.
Set current activity
setCurrentActivity(activityType: ActivityType, params: ActivityParams<typeof activityType> = {}) => void
This method sets the current activity of the Uploader. It’s useful when you want to programmatically switch between the Uploader’s activities. For example, you can switch to the camera activity to start capturing images or to the URL activity to paste a URL.
Note: Activity could reset itself if it can’t be set for some reason. For
example, when there are no files in the upload list, and the confirmUpload
option is disabled, the upload-list
activity won’t be set.
Also, this method won’t open the modal dialog if it’s closed. To open the modal
dialog after the current activity is set, use the setModalState
method.
Second argument params
is optional and depends on the activity type. For now,
the only activity that requires additional parameters is the external
activity. It requires the externalSourceType
parameter that should be one of
the ExternalSourceType
values. This parameter is used to set the source of the
external activity: Dropbox, Google Drive, etc.
Usage example:
Set modal dialog state
setModalState(opened: boolean) => void
This method opens or closes the modal dialog of the Uploader. It’s particularly useful for the regular mode when you want to open the dialog programmatically with the needed activity.
The difference between this method and the initFlow
or doneFlow
methods is
that this method doesn’t include any additional logic. It just opens or closes
the modal dialog. initFlow
and doneFlow
methods include additional logic
that could open the system file picker and chooses the right activity to set
based on the current state of the Uploader: enabled sources, files count, etc.
Usage example:
Localization
l10n(key: string, params?: Record<string, string>) => string
This method allows you to get a localized string by its key. It’s necessary for the custom validation error messages described in the Validators section.
Configuration
get cfg() => ConfigType
This method returns the current Uploader configuration. It’s useful for the custom validation described in the Validators section.
Usage example: