How to make pagination with json file in react?












0















I want to get .csv file from user and show as a table. And I need to do pagination for that table. I used for that react-pagination-table. First I get from .csv file from react-file-reader. I did but showing error.
Here is my Code:



import React, { Component } from 'react';
import axios from 'axios';
import ReactFileReader from 'react-file-reader';
import { TablePagination } from 'react-pagination-table';

const sampleData = ``;
var result = ;
var data;
const Header = ["Name", "Department", "Designation", "Salary", "Joining Date"
];

class Main extends Component {

constructor(props) {
super(props);
this.state={
//csvData: null
data:
};
}

handleFiles = files => {
var reader = new FileReader();
reader.onload = function(e) {
var csv = reader.result;
var lines = csv.split("n");
console.log(lines.length);
var headers=lines[0].split(",");
for(var i=1;i<lines.length;i++){
var obj = {};
var currentline=lines[i].split(",");
for(var j=0;j<headers.length;j++){
obj[headers[j]] = currentline[j];
}
result.push(obj);
}
//return result; //JavaScript object
result = JSON.stringify(result); //JSON
console.log(result);
// Use reader.result
this.setState({
//csvData: reader.result
data: result
})
}.bind(this);
reader.readAsText(files[0]);
}

render() {
return(
<div className="Main">
<h1>Upload Your CSV File</h1>
<div>
<ReactFileReader
multipleFiles={false}
fileTypes={[".csv"]}
handleFiles={this.handleFiles}>
<button className='btn'>Upload</button>
</ReactFileReader>
<TablePagination
title="TablePagination"
subTitle="Sub Title"
headers={ Header }
data={ data }
columns="Name.Department.Designation.Salary.Joining Date"
perPageItemCount={ 5 }
totalCount={ data.length }
arrayOption={ [["size", 'all', ' ']] }
/>
</div>
</div>
);
}

}

export default Main;


Here is my csv file:
https://drive.google.com/open?id=11vehP4swgVU5tRWB635kmDJd-4ZywGQaZ4kE5C4yaLo










share|improve this question























  • What is the error?

    – Ali Gajani
    Nov 18 '18 at 16:55











  • TypeError: Cannot read property 'length' of undefined This error.

    – Falak
    Nov 18 '18 at 18:02
















0















I want to get .csv file from user and show as a table. And I need to do pagination for that table. I used for that react-pagination-table. First I get from .csv file from react-file-reader. I did but showing error.
Here is my Code:



import React, { Component } from 'react';
import axios from 'axios';
import ReactFileReader from 'react-file-reader';
import { TablePagination } from 'react-pagination-table';

const sampleData = ``;
var result = ;
var data;
const Header = ["Name", "Department", "Designation", "Salary", "Joining Date"
];

class Main extends Component {

constructor(props) {
super(props);
this.state={
//csvData: null
data:
};
}

handleFiles = files => {
var reader = new FileReader();
reader.onload = function(e) {
var csv = reader.result;
var lines = csv.split("n");
console.log(lines.length);
var headers=lines[0].split(",");
for(var i=1;i<lines.length;i++){
var obj = {};
var currentline=lines[i].split(",");
for(var j=0;j<headers.length;j++){
obj[headers[j]] = currentline[j];
}
result.push(obj);
}
//return result; //JavaScript object
result = JSON.stringify(result); //JSON
console.log(result);
// Use reader.result
this.setState({
//csvData: reader.result
data: result
})
}.bind(this);
reader.readAsText(files[0]);
}

render() {
return(
<div className="Main">
<h1>Upload Your CSV File</h1>
<div>
<ReactFileReader
multipleFiles={false}
fileTypes={[".csv"]}
handleFiles={this.handleFiles}>
<button className='btn'>Upload</button>
</ReactFileReader>
<TablePagination
title="TablePagination"
subTitle="Sub Title"
headers={ Header }
data={ data }
columns="Name.Department.Designation.Salary.Joining Date"
perPageItemCount={ 5 }
totalCount={ data.length }
arrayOption={ [["size", 'all', ' ']] }
/>
</div>
</div>
);
}

}

export default Main;


Here is my csv file:
https://drive.google.com/open?id=11vehP4swgVU5tRWB635kmDJd-4ZywGQaZ4kE5C4yaLo










share|improve this question























  • What is the error?

    – Ali Gajani
    Nov 18 '18 at 16:55











  • TypeError: Cannot read property 'length' of undefined This error.

    – Falak
    Nov 18 '18 at 18:02














0












0








0








I want to get .csv file from user and show as a table. And I need to do pagination for that table. I used for that react-pagination-table. First I get from .csv file from react-file-reader. I did but showing error.
Here is my Code:



import React, { Component } from 'react';
import axios from 'axios';
import ReactFileReader from 'react-file-reader';
import { TablePagination } from 'react-pagination-table';

const sampleData = ``;
var result = ;
var data;
const Header = ["Name", "Department", "Designation", "Salary", "Joining Date"
];

class Main extends Component {

constructor(props) {
super(props);
this.state={
//csvData: null
data:
};
}

handleFiles = files => {
var reader = new FileReader();
reader.onload = function(e) {
var csv = reader.result;
var lines = csv.split("n");
console.log(lines.length);
var headers=lines[0].split(",");
for(var i=1;i<lines.length;i++){
var obj = {};
var currentline=lines[i].split(",");
for(var j=0;j<headers.length;j++){
obj[headers[j]] = currentline[j];
}
result.push(obj);
}
//return result; //JavaScript object
result = JSON.stringify(result); //JSON
console.log(result);
// Use reader.result
this.setState({
//csvData: reader.result
data: result
})
}.bind(this);
reader.readAsText(files[0]);
}

render() {
return(
<div className="Main">
<h1>Upload Your CSV File</h1>
<div>
<ReactFileReader
multipleFiles={false}
fileTypes={[".csv"]}
handleFiles={this.handleFiles}>
<button className='btn'>Upload</button>
</ReactFileReader>
<TablePagination
title="TablePagination"
subTitle="Sub Title"
headers={ Header }
data={ data }
columns="Name.Department.Designation.Salary.Joining Date"
perPageItemCount={ 5 }
totalCount={ data.length }
arrayOption={ [["size", 'all', ' ']] }
/>
</div>
</div>
);
}

}

export default Main;


Here is my csv file:
https://drive.google.com/open?id=11vehP4swgVU5tRWB635kmDJd-4ZywGQaZ4kE5C4yaLo










share|improve this question














I want to get .csv file from user and show as a table. And I need to do pagination for that table. I used for that react-pagination-table. First I get from .csv file from react-file-reader. I did but showing error.
Here is my Code:



import React, { Component } from 'react';
import axios from 'axios';
import ReactFileReader from 'react-file-reader';
import { TablePagination } from 'react-pagination-table';

const sampleData = ``;
var result = ;
var data;
const Header = ["Name", "Department", "Designation", "Salary", "Joining Date"
];

class Main extends Component {

constructor(props) {
super(props);
this.state={
//csvData: null
data:
};
}

handleFiles = files => {
var reader = new FileReader();
reader.onload = function(e) {
var csv = reader.result;
var lines = csv.split("n");
console.log(lines.length);
var headers=lines[0].split(",");
for(var i=1;i<lines.length;i++){
var obj = {};
var currentline=lines[i].split(",");
for(var j=0;j<headers.length;j++){
obj[headers[j]] = currentline[j];
}
result.push(obj);
}
//return result; //JavaScript object
result = JSON.stringify(result); //JSON
console.log(result);
// Use reader.result
this.setState({
//csvData: reader.result
data: result
})
}.bind(this);
reader.readAsText(files[0]);
}

render() {
return(
<div className="Main">
<h1>Upload Your CSV File</h1>
<div>
<ReactFileReader
multipleFiles={false}
fileTypes={[".csv"]}
handleFiles={this.handleFiles}>
<button className='btn'>Upload</button>
</ReactFileReader>
<TablePagination
title="TablePagination"
subTitle="Sub Title"
headers={ Header }
data={ data }
columns="Name.Department.Designation.Salary.Joining Date"
perPageItemCount={ 5 }
totalCount={ data.length }
arrayOption={ [["size", 'all', ' ']] }
/>
</div>
</div>
);
}

}

export default Main;


Here is my csv file:
https://drive.google.com/open?id=11vehP4swgVU5tRWB635kmDJd-4ZywGQaZ4kE5C4yaLo







javascript reactjs






share|improve this question













share|improve this question











share|improve this question




share|improve this question










asked Nov 18 '18 at 16:53









Falak Falak

224




224













  • What is the error?

    – Ali Gajani
    Nov 18 '18 at 16:55











  • TypeError: Cannot read property 'length' of undefined This error.

    – Falak
    Nov 18 '18 at 18:02



















  • What is the error?

    – Ali Gajani
    Nov 18 '18 at 16:55











  • TypeError: Cannot read property 'length' of undefined This error.

    – Falak
    Nov 18 '18 at 18:02

















What is the error?

– Ali Gajani
Nov 18 '18 at 16:55





What is the error?

– Ali Gajani
Nov 18 '18 at 16:55













TypeError: Cannot read property 'length' of undefined This error.

– Falak
Nov 18 '18 at 18:02





TypeError: Cannot read property 'length' of undefined This error.

– Falak
Nov 18 '18 at 18:02












0






active

oldest

votes











Your Answer






StackExchange.ifUsing("editor", function () {
StackExchange.using("externalEditor", function () {
StackExchange.using("snippets", function () {
StackExchange.snippets.init();
});
});
}, "code-snippets");

StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "1"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);

StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});

function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});


}
});














draft saved

draft discarded


















StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53363294%2fhow-to-make-pagination-with-json-file-in-react%23new-answer', 'question_page');
}
);

Post as a guest















Required, but never shown

























0






active

oldest

votes








0






active

oldest

votes









active

oldest

votes






active

oldest

votes
















draft saved

draft discarded




















































Thanks for contributing an answer to Stack Overflow!


  • Please be sure to answer the question. Provide details and share your research!

But avoid



  • Asking for help, clarification, or responding to other answers.

  • Making statements based on opinion; back them up with references or personal experience.


To learn more, see our tips on writing great answers.




draft saved


draft discarded














StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53363294%2fhow-to-make-pagination-with-json-file-in-react%23new-answer', 'question_page');
}
);

Post as a guest















Required, but never shown





















































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown

































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown







這個網誌中的熱門文章

Tangent Lines Diagram Along Smooth Curve

Yusuf al-Mu'taman ibn Hud

Zucchini