ngx-dropzone-compressing
v1.9.0
Published
A highly configurable dropzone component for Angular.
Downloads
209
Maintainers
Readme
ngx-dropzone-compressing
A lightweight and highly customizable Angular dropzone component for file uploads integrating file compression functionalities. This package is an extended version of ngx-dropzone created by Peter Freeman.
Install
$ npm install --save ngx-dropzone-compressing
Usage
// in app.module.ts
import { NgxDropzoneModule } from 'ngx-dropzone-compressing';
@NgModule({
...
imports: [
NgxDropzoneModule
],
...
})
export class AppModule { }
<!-- in app.component.html -->
<ngx-dropzone (change)="onSelect($event)" [compress]="true">
<ngx-dropzone-label>Drop it, baby!</ngx-dropzone-label>
<ngx-dropzone-preview *ngFor="let f of files" [removable]="true" (removed)="onRemove(f)">
<ngx-dropzone-label>{{ f.name }} ({{ f.type }})</ngx-dropzone-label>
</ngx-dropzone-preview>
</ngx-dropzone>
// in app.component.ts
files: File[] = [];
onSelect(event) {
console.log(event);
this.files.push(...event.addedFiles);
}
onRemove(event) {
console.log(event);
this.files.splice(this.files.indexOf(event), 1);
}
You can also use special preview components to preview images or videos:
<ngx-dropzone-image-preview ngProjectAs="ngx-dropzone-preview" *ngFor="let f of files" [file]="f">
<ngx-dropzone-label>{{ f.name }} ({{ f.type }})</ngx-dropzone-label>
</ngx-dropzone-image-preview>
<ngx-dropzone-video-preview ngProjectAs="ngx-dropzone-preview" *ngFor="let f of files" [file]="f">
<ngx-dropzone-label>{{ f.name }} ({{ f.type }})</ngx-dropzone-label>
</ngx-dropzone-video-preview>
Component documentation
ngx-dropzone
This component is the actual dropzone container. It contains the label and any file previews. It has an event listener for file drops and you can also click it to open the native file explorer for selection.
Use it as a stand-alone component <ngx-dropzone></ngx-dropzone>
or by adding it as an attribute to a custom div
(<div class="custom-dropzone" ngx-dropzone></div>
).
It will add the classes ngx-dz-hovered
and ngx-dz-disabled
to its host element if necessary. You could override the styling of these effects if you like to.
This component has the following Input properties:
[compress]
: Allow the files compression.- Currently compressing:
- Image files:
- Defaults to
false
. - Used package: ngx-image-compress.
- The "originalSize" property will be added.
- Valid values:
boolean
orCompressImageConfig
. Using justtrue
to default CompressImageConfig configuration. CompressImageConfig
: | Parameter | Type | Description | | ----------- | ------ | --------------------------------------------------------------------------------- | | orientation | number | EXIF Orientation value using the DOC_ORIENTATION enum value(optional, default: -1)| | ratio | number | Maximum scale factor as a percentage (optional, default: 50) 1 | | quality | number | JPEG quality factor as a percentage (optional, default: 50) 2 | | maxWidth | number | Maximum width in pixels if you need to resize (optional, default: 0 - no resize) | | maxHeight | number | Maximum height in pixels if you need to resize (optional, default: 0 - no resize) | [1] Ratio: "50" will decrease the resolution of each dimension by 2, i.e.: image of 2000 X 1500 pixels will become 1000 X 750 pixels, while the whole resolution will be reduced by 4. [2] Quality: For more info about this parameter, read this guide.
- Defaults to
- Image files:
- Currently compressing:
[multiple]
: Allow the selection of multiple files at once. Defaults totrue
.[accept]
: Set the accepted file types (as for a native file element). Defaults to'*'
. Example:[accept]="image/jpeg,image/jpg,image/png,image/gif"
[maxFileSize]
: Set the maximum size a single file may have, in bytes. Defaults toundefined
.[disabled]
: Disable any user interaction with the component. Defaults tofalse
.[expandable]
: Allow the dropzone container to expand vertically as the number of previewed files increases. Defaults tofalse
which means that it will allow for horizontal scrolling.[disableClick]
: Prevent the file selector from opening when clicking the dropzone.[id], [aria-label], [aria-labelledby]
,[aria-describedby]
: Forward the accessibility properties to the file input element.[processDirectoryDrop]
: Enable extracting files from dropped directories. Defaults tofalse
.
It has the following Output event:
(change)
: Emitted when any files were added or rejected. It returns aNgxDropzoneChangeEvent
with the propertiessource: NgxDropzoneComponent
,addedFiles: File[]
andrejectedFiles: RejectedFile[]
.(onFileProcessing)
: Emitted when a file is trying to be processed. It returns aNgxDropzoneFileProcessingEvent
with the propertiesfile: File
,remainingFilesNumber: number
.
The RejectedFile
extends the native File and adds an optional reason property to tell you why the file was rejected. Its value will be either 'type'
for the wrong acceptance type, size
if it exceeds the maximum file size or no_multiple
if multiple is set to false and more than one file is provided.
If you'd like to show the native file selector programmatically then do it as follows:
<ngx-dropzone #drop></ngx-dropzone>
<button (click)="drop.showFileSelector()">Open</button>
ngx-dropzone-label
This component has no attributes or methods and acts as a container for the label text using content projection. You can place anything inside of it and the text will always be centered.
ngx-dropzone-preview
This component shows a basic file preview when added inside the dropzone container. The previews can be focused using the tab key and be deleted using the backspace or delete keys.
This component has the following Input properties:
[file]
: The dropped file to preview.[removable]
: Allow the user to remove files. Required to allow keyboard interaction and show the remove badge on hover.
It has the following Output event:
(removed)
: Emitted when the element should be removed (either by clicking the remove badge or by pressing backspace/delete keys). Returns the file from the Input property.
The ngx-dropzone-image-preview
and ngx-dropzone-video-preview
components inherit from this component but expand the preview functionality to display either images or videos directly in the component. See the wiki on how to implement your own custom preview components.
ngx-dropzone-remove-badge
This component is used within the previews to remove selected files. You can use it within your own preview component implementation if you like (see the wiki).
Other
How to upload a file to a Web API?
Licence
MIT © TMCX