schala/static/main.jsx

51 lines
1.1 KiB
React
Raw Normal View History

const React = require("react");
const ReactDOM = require("react-dom");
2017-09-21 00:01:54 -07:00
const request = require("request");
2017-09-21 00:01:54 -07:00
const serverAddress = "http://localhost:8000";
2017-09-20 23:46:46 -07:00
class CodeArea extends React.Component {
constructor(props) {
super(props);
this.state = {value: ""};
this.handleChange = this.handleChange.bind(this);
this.submit = this.submit.bind(this);
}
handleChange(event) {
this.setState({value: event.target.value});
}
submit(event) {
2017-09-21 09:25:39 -07:00
/*
2017-09-20 23:46:46 -07:00
console.log("This", this.state.value);
2017-09-21 00:01:54 -07:00
const options = {
url: `${serverAddress}/input`,
json: true,
body: {source: this.state.value}
};
request.post(options, (error, response, body) => {
console.log("resp", response);
console.log("body", body);
});
2017-09-21 09:25:39 -07:00
*/
2017-09-20 23:46:46 -07:00
}
render() {
return (<div>
<textarea value={ this.state.value } onChange={this.handleChange}>
</textarea>
<button onClick={ this.submit }>Run!</button>
</div>);
}
}
const main = (<div>
<h1>Schala web input</h1>
<p>Write your source code here</p>
2017-09-20 23:46:46 -07:00
<CodeArea/>
</div>);
const rootDom = document.getElementById("main");
2017-09-20 23:46:46 -07:00
ReactDOM.render(main, rootDom);