Skip to content
This repository has been archived by the owner on Nov 24, 2020. It is now read-only.

jrel/angular-file-form-control

Repository files navigation

angular-file-form-control

The angular-file-form-control transform the files received in input of type file to object with data in base64!

The secture f object is:

  interface File {
      name: string;
      type: string;
      value: string;
  }

Installation

To install this library, run:

$ npm install angular-file-form-control --save

Consuming your library

Once you have published your library to npm, you can import your library in any Angular Module:

import { BrowserModule } from '@angular/platform-browser';
import { NgModule } from '@angular/core';

import { AppComponent } from './app.component';

// Import your library
import { FileFormControlModule } from 'angular-file-form-control';

@NgModule({
  declarations: [
    AppComponent
  ],
  imports: [
    BrowserModule,

    // Specify your library as an import
    FileFormControlModule
  ],
  providers: [],
  bootstrap: [AppComponent]
})
export class AppModule { }

Once your library is imported, you can use the directive in your Angular application:

<!-- You can now use your library component in app.component.html -->
<input type="file" [fileFormControl]="fileFormControl"><

License

MIT © João Lourenço

About

Directive to convert files submitted in an input type file to base64

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published