Open In App

Angular PrimeNG FileUpload Custom Upload

Angular PrimeNG is an open-source framework with a rich set of native Angular UI components that are used for great styling and this framework is used to make responsive websites with very much ease. In this article, we will see how to use the FileUpload Custom Upload in Angular PrimeNG.

Angular PrimeNG FileUpload Custom Upload is used to override uploading implementation by defining a custom upload handler event.



Angular PrimeNG FileUpload Custom Upload Properties:

 



Syntax:

// In app.component.html
<p-fileUpload name="..."
                url="..."
              [customUpload]="true"
              (uploadHandler)="function()">
</p-fileUpload>

// In app.component.ts
function() {
  // function content
}

Creating Angular application & Module Installation:

Step 1: Create an Angular application using the following command.

ng new appname

Step 2: After creating your project folder i.e. appname, move to it using the following command.

cd appname

Step 3: Install PrimeNG in your given directory.

npm install primeng --save
npm install primeicons --save

Project Structure: It will look like the following:

 

Example 1: Below is a simple example demonstrating the use of the Angular PrimeNG FileUpload Custom Upload.




<h2 style="color: green">
  GeeksforGeeks
</h2>
<h4>
      Angular PrimeNG FileUpload Custom Upload
</h4>
  
<p-fileUpload name="myfile[]"
              url="./upload.php"
              [customUpload]="true"
              (uploadHandler)="uploadfun($event)"
              [auto]="true">
</p-fileUpload>




import { Component, OnInit } from '@angular/core';
  
@Component({
    selector: 'app-root',
    templateUrl: './app.component.html',
    providers: [],
})
export class AppComponent {
    constructor() { }
    ngOnInit() { }
    uploadfun(event) {
        console.log(event);
    }
}




import { NgModule } from '@angular/core';
import { BrowserModule } 
    from '@angular/platform-browser';
import { BrowserAnimationsModule } 
    from '@angular/platform-browser/animations';
import { FileUploadModule } from 'primeng/fileupload';
import { AppComponent } from './app.component';
import { HttpClientModule } from '@angular/common/http';
import { ButtonModule } from 'primeng/button';
  
@NgModule({
    imports: [
        BrowserModule,
        BrowserAnimationsModule,
        ButtonModule,
        HttpClientModule,
        FileUploadModule,
    ],
    declarations: [AppComponent],
    bootstrap: [AppComponent],
})
export class AppModule { }

Output:

 

Example 2: Below is another example demonstrating the use of the Angular PrimeNG FileUpload Custom Upload, where we are uploading multiple files using drag and drop with a custom upload function.




<h2 style="color: green">
  GeeksforGeeks
</h2>
<h4>
      Angular PrimeNG FileUpload Custom Upload
</h4>
  
<p-fileUpload name="myfile[]"
              url="./upload.php"
              multiple="multiple"
              [customUpload]="true"
              (uploadHandler)="uploadfun($event)"
              [auto]="true">
</p-fileUpload>




import { Component, OnInit } from '@angular/core';
  
@Component({
    selector: 'app-root',
    templateUrl: './app.component.html',
    providers: [],
})
export class AppComponent {
    constructor() { }
    ngOnInit() { }
    uploadfun(event) {
        console.log("Multiple Files are uploaded: ", event.files);
    }
}




import { NgModule } from '@angular/core';
import { BrowserModule } 
    from '@angular/platform-browser';
import { BrowserAnimationsModule } 
    from '@angular/platform-browser/animations';
import { FileUploadModule } from 'primeng/fileupload';
import { AppComponent } from './app.component';
import { HttpClientModule } from '@angular/common/http';
import { ButtonModule } from 'primeng/button';
  
@NgModule({
    imports: [
        BrowserModule,
        BrowserAnimationsModule,
        ButtonModule,
        HttpClientModule,
        FileUploadModule,
    ],
    declarations: [AppComponent],
    bootstrap: [AppComponent],
})
export class AppModule { }

Output:

 

Reference: https://primefaces.org/primeng/fileupload


Article Tags :