ng5-files

1.0.6 • Public • Published

License: MIT npm version Build Status

ng5-files

Upload files by clicking or dragging

Getting started

npm i --save ng5-files

Add following lines into your

module:

import { Ng5FilesModule } from './ng5-files';

add Ng5FilesModule to your module imports section

imports[ Ng5FilesModule ]

component template:

Upload by click:

<ng5-files-click (filesSelect)="filesSelect($event)">
  <span>Click me to upload</span>
</ng5-files-click>

Upload with drag'n'drop:

<ng5-files-drop (filesSelect)="filesSelect($event)">
  <div style="display: inline-block; height: 100px; width: 100px; background-color: gray">
    {{selectedFiles}}
  </div>
</ng5-files-drop>

component ts:

import {
  Ng5FilesStatus,
  Ng5FilesSelected
} from './ng5-files';
 
...
 
public selectedFiles;
 
public filesSelect(selectedFilesNg5FilesSelected)void {
    if (selectedFiles.status !== Ng5FilesStatus.STATUS_SUCCESS) {
      this.selectedFiles = selectedFiles.status;
      return;
      
      // Hnadle error statuses here
    }
 
    this.selectedFiles = Array.from(selectedFiles.files).map(file => file.name);
  }
 

Configure

To pass config to ng5-files add following lines to you component.ts file:

Shared Config

import {
  Ng5FilesService,
  Ng5FilesConfig,
} from './ng5-files';
 
...
 
constructor(
      private ng5FilesServiceNg5FilesService
  ) {}
 
private testConfigNg5FilesConfig = {
    acceptExtensions: ['js', 'doc', 'mp4'],
    maxFilesCount: 5,
    maxFileSize: 5120000,
    totalFilesSize: 10120000
  };
   
ngOnInit() {
    this.ng5FilesService.addConfig(this.testConfig);
}

Private configs

Config added this way
this.ng5FilesService.addConfig(this.testConfig);
is shared config. All components will use it.

But you can add multiple configs for your upload components.
Let's say, you have two upload components and you want to allow user upload just one video and 5(max) images.
To do this create 2 configs and pass it to upload components as named configs.

.ts

import {
  Ng5FilesService,
  Ng5FilesConfig,
  Ng5FilesStatus,
  Ng5FilesSelected
} from './ng5-files';
 
 ...
 
public selectedFiles; 
 
private configImageNg5FilesConfig = {
    acceptExtensions: ['jpg', 'jpeg'],
    maxFilesCount: 5,
    totalFilesSize: 101200000
  };
  
private configVideoNg5FilesConfig = {
    acceptExtensions: ['mp4', 'avi'],
    maxFilesCount: 1
  };  
 
constructor(
      private ng5FilesServiceNg5FilesService
  ) {}
 
  ngOnInit() {
    this.ng5FilesService.addConfig(this.configImage, 'my-image-config');
    this.ng5FilesService.addConfig(this.configVideo, 'my-video-config');
  }
 
  public filesSelect(selectedFilesNg5FilesSelected)void {
    if (selectedFiles.status !== Ng5FilesStatus.STATUS_SUCCESS) {
      this.selectedFiles = selectedFiles.status;
      return;
    }
 
    // Handle error statuses here
 
    this.selectedFiles = Array.from(selectedFiles.files).map(file => file.name);
  } 
 

.html

<ng5-files-click (filesSelect)="filesSelect($event)" [configId]="'my-image-config'">
  <span>Upload</span>
</ng5-files-click>
 
 
<ng5-files-drop (filesSelect)="filesSelect($event)" [configId]="'my-video-config'">
  <div style="display: inline-block; height: 100px; width: 100px; background-color: gray">
    {{selectedFiles}}
  </div>
</ng5-files-drop>

API

Config

acceptExtensions
values: string[] or '*'
examples: ['ts', 'spec.ts'], ['js'], '*'

maxFilesCount:
values: [number]

maxFileSize:
values: number

totalFilesSize:
values: number

Template

<ng5-files-click (filesSelect)="YOUR_HANDLER($event)" [configId]="YOUR_CONFIG">

filesSelect
emit when files attached and pass Ng5FilesSelected object to YOUR_HANDLER:

export enum Ng5FilesStatus {
    STATUS_SUCCESS,
    STATUS_MAX_FILES_COUNT_EXCEED,
    STATUS_MAX_FILE_SIZE_EXCEED,
    STATUS_MAX_FILES_TOTAL_SIZE_EXCEED,
    STATUS_NOT_MATCH_EXTENSIONS
}

export interface Ng5FilesSelected {
  status: Ng5FilesStatus;
  files: File[];
}

! Note on statuses STATUS_MAX_FILE_SIZE_EXCEED or STATUS_NOT_MATCH_EXTENSIONS you get files not passed validation, so you shouldn't filter it manually to find all invalid files.

configId
Pass your named config with configId

Caveat

Please don't use button tag in template inside ng5-files-click
Don't: html <ng5-files-click> <button></button> </ng5-files-click>

ng5-files-click content is wrapped in label tag, so prefer something like

<ng5-files-click>
    <span role="button" style="btn">Give me file ^.^</button>
</ng5-files-click>```

Package Sidebar

Install

npm i ng5-files

Weekly Downloads

1

Version

1.0.6

License

MIT

Unpacked Size

84.1 kB

Total Files

51

Last publish

Collaborators

  • aztech