1.3.6 • Published 3 years ago

@voicenter/excelparser v1.3.6

Weekly downloads
78
License
ISC
Repository
github
Last release
3 years ago

ExcelParser

import Parser from './main'

###1. Create Parser

this.parser = new Parser();
or  
this.parser = new Parser({hasHeader: false});

###2. Read Excel File

Method - readFile(file)

  • @param file - Excel File (evt.target.files0)
  • @returns Promise ({data: ...result})
this.parser.readFile(file).then((r) => {
                    setTimeout(() => {
                        this.loader = false;
                        this.sample = JSON.stringify(r.data);
                        this.isNext = true
                    }, 800)
                })

###Methods

  • readFile() - read file (return Promise)
  • bindColumns(index, headerData) - function bind & validation columns (return Promise) {result: [...result], errors: {...errors}}

Example:

this.header = [
    {
       key: 'F NAME',
       label: 'First Name',
       property: 'firstName',
       validationOptions: {
           required: true,
       }
    },
   {
       key: 'Customer Name',
       label: 'User Name',
       property: 'customerName',
       validationOptions: {
           required: true,
       }
   },
   {
       key: 'Phone',
       label: 'Phone Number',
       property: 'phoneNumber',
       validationOptions: {
           required: true,
       }
   }
]

this.parser.bindColumns(0, this.header).then((res) => {
                this.hasErrors = this.parser.hasErrors();
                this.errors = JSON.stringify(this.parser.getErrors());
                this.countErrors = this.parser.getErrors().length;
                this.bindResult = JSON.stringify(this.parser.getBindData());
                this.bindResultData = {...this.parser.getBindData()};
                this.rowData = {...res.result[0]};
            });
  • hasErrors() - Check is errors (return Boolean)
  • getErrors - Get All errors (return Array)
  • getBindData() - Get Instance BindData after bindColumns()
  • getFileAccept() - Get files accept
  • updateRow() - Update Row in bindData by rowIndex (return rowData) Example:
  this.parser.updateRow(updateRowIndex, rowData);
  • validateRow() - Validate One Row

    @param {Number} index - index of row.
    @param {Object} headerOptions - options of validate (header)
    @returns {{valid: boolean, row: *}}

this.parser.validateRow(index, this.header);
  • validateBindData() - Validate All BindData

    @param {Object} headerOptions - options with validate rules

###Validations (validationOptions)

    required: Boolean,
    numeric: Boolean,
    minLength: Number,
    maxLength: Number,
    alphaNum: Boolean
1.3.6

3 years ago

1.3.5

3 years ago

1.3.4

3 years ago

1.3.3

3 years ago

1.3.2

3 years ago

1.3.1

3 years ago

1.2.1

4 years ago

1.2.0

4 years ago

1.1.0

4 years ago

1.0.8

4 years ago

1.0.7

4 years ago

1.0.6

4 years ago

1.0.5

4 years ago

1.0.4

4 years ago

1.0.3

4 years ago

1.0.2

4 years ago

1.0.1

4 years ago

1.0.0

4 years ago

0.0.4

4 years ago

0.0.3

4 years ago

0.0.2

4 years ago

0.0.1

4 years ago