0.1.1 • Published 7 years ago

angular2-txt v0.1.1

Weekly downloads
143
License
MIT
Repository
github
Last release
7 years ago

Angular2-txt | Export to TXT in Angular2

Helper library for create TXT file in Angular2

Installation

npm install --save angular2-txt

Example

import { Angular2Txt } from 'angular2-txt/Angular2-txt';

var data = [
  {
    name: "Test 1",
    age: 13,
    average: 8.2,
    approved: true,
    description: "using 'Content here, content here' "
  },
  {
    name: 'Test 2',
    age: 11,
    average: 8.2,
    approved: true,
    description: "using 'Content here, content here' "
  },
  {
    name: 'Test 4',
    age: 10,
    average: 8.2,
    approved: true,
    description: "using 'Content here, content here' "
  },
];

new Angular2Txt(data, 'My Report');

API | Angular2Txt(data, filename, options)

OptionDefaultDescription
fieldSeparator,Defines the field separator character
quoteStrings"If provided, will use this characters to "escape" fields, otherwise will use double quotes as deafult
decimalseparator.Defines the decimal separator character (default is .). If set to "locale", it uses the language sensitive representation of the number.
showLabelsfalseIf provided, would use this attribute to create a header row. Have not found a use for this.
showTitlefalse
useBomtrueIf true, adds a BOM character at the start of the TXT

Example

  var options = { 
    fieldSeparator: ',',
    quoteStrings: '"',
    decimalseparator: '.',
    showTitle: true,
    useBom: true
  };

  Angular2Txt(data, filename, options);

Example 2

To add the Headers


  var options = { 
    headers: Object.keys(this.data[0]),
    fieldSeparator: ',',
    quoteStrings: '"',
    decimalseparator: '.',
    showTitle: true,
    useBom: true
  };

  Angular2Txt(data, filename, options);

#Credits

| | | sn123 | | arf1980 | Fork | lcborn4 |