Skip to content

Instantly share code, notes, and snippets.

@longsangstan
Created April 27, 2017 03:30
Show Gist options
  • Star 14 You must be signed in to star a gist
  • Fork 3 You must be signed in to fork a gist
  • Save longsangstan/3c259ed76c25784bd17694aab05a37af to your computer and use it in GitHub Desktop.
Save longsangstan/3c259ed76c25784bd17694aab05a37af to your computer and use it in GitHub Desktop.
A React component to read text file.
import React from "react";
/*
Read a text file and out put the content.
Example Usage:
var myTxt = require("./myTxt.txt");
...
<TextFileReader
txt={myTxt}
/>
*/
class TextFileReader extends React.Component {
constructor(props) {
super(props);
this.state = {
text: ""
};
}
componentDidMount() {
this.readTextFile(this.props.txt);
}
readTextFile = file => {
var rawFile = new XMLHttpRequest();
rawFile.open("GET", file, false);
rawFile.onreadystatechange = () => {
if (rawFile.readyState === 4) {
if (rawFile.status === 200 || rawFile.status == 0) {
var allText = rawFile.responseText;
this.setState({
text: allText
});
}
}
};
rawFile.send(null);
};
render() {
return (
<div>
{this.state.text.split("\n").map((item, key) => {
return <span key={key}>{item}<br /></span>;
})}
</div>
);
}
}
export default TextFileReader;
@cengugr
Copy link

cengugr commented Apr 23, 2021

PL3-501

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment