ng-uploader
A fully featured Angular file uploader that utilizes Angular's HttpClient internally, allows you to customize outgoing HTTP requests using the "Angular Way" (Interceptors), provides customizable concurrent queuing of uploads and a simple way to select files via drag & drop.
📝 Table of Contents
✨ Features
-
The library is inspired by the awesome ng2-file-upload that has long been the standard way of implementing file uploads in Angular, in addition, it adds some cool features and implements functionality that spares you some workarounds.
-
Utilizes Angular's HttpClient and not direct XHR, which means that you have total control of your outgoing HTTP requests via interceptors. Wether you need to add headers, an authentication token or enable withCredentials for cookies usage, you are in full control of how to process your requests before sending them out.
Utilizing HttpClient solves popular problems with other uploader libraries that uses direct XHR and are not compatible with interceptors, for example: automatically retrying failed requests or refreshing an expired access token on failed upload.
For refreshing an expired access token, we usually rely on an interceptor to catch the expiry error, refresh the token, queue any other request that is sent while refreshing, update the access token and then resend the initial along with the queued ones. In other libraries, using direct XHR results in an issue that occurs because uploads that were sent with an access token used to fail every now and then and would require explicit intervention. Example
-
Provides an easy way to control how your uploads are processed in a queue, wether you want to upload them one at a time, or prefer sending batches of N concurrent requests at a time, we have got you covered.
-
All events are provided as Observables that you can subscribe to, instead of requiring you to set a listener function for each event, and thus, easier to work with and more Angular-ish.
-
Provides a simple convenience directive to turn any element into a Dropzone, enabling drag and drop files selection easily, however, this is not coupled to using our uploader in any way. In other words, we provide you with a simple way to achieve drag & drop files selection that you can then use our uploader to upload. Credits go to @darrenmothersele for the directive.
✅ Prerequisites
The library uses Angular's HttpClient, if you are not already using it in your project, then you have to add it in your root AppModule, example:
import { BrowserModule } from '@angular/platform-browser';
import { NgModule } from '@angular/core';
import { HttpClientModule } from '@angular/common/http';
import { AppComponent } from './app.component';
@NgModule({
declarations: [AppComponent],
imports: [BrowserModule, HttpClientModule],
bootstrap: [AppComponent]
})
export class AppModule {}
⬇️ Install
Using npm
npm install --save @trendster-io/ng-uploader
Using yarn
yarn add @trendster-io/ng-uploader
🛠 Setup
Once installed you need to import our module in the parent module for the component you will be using it in:
import { UploaderModule } from '@trendster-io/ng-uploader';
@NgModule({
...
imports: [UploaderModule, ...],
...
})
export class YourModule {
}
Usage
The API is quite similar to that of ng2-file-upload, so if you have used it before, most probably you can use this one easily:
API
-
url
: A general upload endpointstring
that applies on any item that doesn't explicitly specify one.method
: A general HTTP Methodstring
for the request that applies on any item that doesn't explicitly specify one.autoUpload
: Aboolean
to upload items automatically right after their addition to the queue.removeAfterUpload
: Aboolean
to remove items automatically right after their upload.queueLimit
: Anumber
to specify the maximum items a queue can have at a time.concurrency
: Anumber
to specify how many items should be uploaded at the same time.maxFileSize
: Anumber
to specify the maximum file size of an item in Bytes.allowedMimeTypes
: Astring[]
containing MimeTypes that specify a whitelist of file types that are accepted by the uploader.
-
url
: An upload endpointstring
that applies on the item. Overrides the one specified in the uploader.method
: An HTTP methodstring
that applies on the item. Overrides the one specified in the uploader.file
: AFile
that should be uploaded by this item.fileAlias
: Astring
that defines the file's key name in theFormData
body that will be sent in the request.additionalParams
: Anobject
that contains additional params that should be added to theFormData
request body in addition to theFile
.
-
progress
: Anumber
indicating the progress of the upload from 0 - 100.req
: TheHTTPRequest
instance that will be sent when the upload starts.preview
: AnObservable<string>
that contains a DataURL for the media if the file is an image or a video. It returnsundefined
otherwise.isReady
: Aboolean
to indicate that this item is queued for upload.isUploading
: Aboolean
to indicate that this item is currently being uploaded.isUploaded
: Aboolean
to indicate that this item was uploaded.isCancelled
: Aboolean
to indicate that this item's upload was cancelled.isError
: Aboolean
to indicate that this item has encountered an error while uploading.onResponse
: AnObservable<any>
that emits with the HTTP Response on upload success.onProgress
: AnObservable<number>
that emits with the upload progress updates.onError
: AnObservable<HttpErrorResponse>
that emits on upload error.
-
upload
: Starts uploading the item.cancel
: Cancels uploading the item, but still keeps it in the queue.remove
: Removes the item from the queue and cancels uploading it if it was uploading or ready.
-
totalProgress
: Anumber
indicating the progress of the whole queue's upload from 0 - 100.isUploading
: Aboolean
to indicate that the uploader is currently uploading items in the queue.items
: AnUploadItem[]
of the items in the queue.itemsCount
: Anumber
indicating the count of items in the queue.readyItemsCount
: Anumber
indicating the count of ready items in the queue.uploadingItemsCount
: Anumber
indicating the count of uploading items in the queue.uploadedItemsCount
: Anumber
indicating the count of uploaded items in the queue.notUploadedItemsCount
: Anumber
indicating the count of non-uploaded(Ready, Cancelled, Uploading, Errored) items in the queue.cancelledItemsCount
: Anumber
indicating the count of cancelled items in the queue.errorItemsCount
: Anumber
indicating the count of errored items in the queue.onItemSuccess
: AnObservable<{item: UploadItem, res: any}>
that emits with the item and the HTTP Response on item upload success.onItemProgress
: AnObservable<{item: UploadItem, progress: number}>
that emits with the item and its progress on item progress updates.onItemError
: AnObservable<{item: UploadItem, err: HttpErrorResponse}>
that emits with item and the upload error.
-
addItem
: A method that receives an UploadItemOptions and returns an UploadItem instance. Throws an error in the following cases:- A general
url
ormethod
wasn't provided to the uploader and also individual ones were not provided in the item options. - The
queueLimit
is reached. - The passed file surpasses the
maxFileSize
. - The file type is not in the
allowedMimeTypes
array.
uploadAll
: Starts uploading all items in queue.cancelAll
: Cancels all uploading items while keeping them in the queue.clearQueue
: Removes all items from the queue, and cancels any of them if uploading before removal. - A general
-
getUploader
: A method that receives an UploaderOptions and returns a new Uploader instance.
Demo Implementation
Author
- Github: @omardoma
🤝 Contributing
Contributions, issues and feature requests are welcome!
Feel free to check issues page.
Show your support
Give a