Merge branch 'master' of https://github.com/SundownDEV/Am-I-late
commit
0439506dd1
Binary file not shown.
After Width: | Height: | Size: 15 KiB |
|
@ -7,6 +7,7 @@
|
|||
<!-- Latest compiled and minified CSS -->
|
||||
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" integrity="sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u" crossorigin="anonymous">
|
||||
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap-theme.min.css" integrity="sha384-rHyoN1iRsVXV4nD0JutlnGaslCJuC7uwjduW9SVrLvRYooPp2bWYgmgJQIXwl/Sp" crossorigin="anonymous">
|
||||
<link rel="icon" href="./img/favicon.png" />
|
||||
<title>Am I late ?</title>
|
||||
</head>
|
||||
<body>
|
||||
|
|
|
@ -50,11 +50,11 @@ class App extends Component {
|
|||
score: 0
|
||||
});
|
||||
|
||||
axios.get(this.state.baseRoute+"/questions" +"?q="+new Date().getTime())
|
||||
.then(((data) => {
|
||||
this.fetchQuestion(this.state.baseRoute+"/questions/"+data.data[0].id);
|
||||
this.fetchResponses(this.state.baseRoute+"/questions/"+data.data[0].id+"/responses");
|
||||
}));
|
||||
axios.get(this.state.baseRoute + "/questions/first"+ "?q=" + new Date().getTime())
|
||||
.then(((data) => {
|
||||
this.fetchQuestion(this.state.baseRoute+"/questions/"+data.data[0].id);
|
||||
this.fetchResponses(this.state.baseRoute + "/questions/" + data.data[0].id + "/responses");
|
||||
}))
|
||||
}
|
||||
|
||||
_handleClick(element) {
|
||||
|
@ -74,7 +74,7 @@ class App extends Component {
|
|||
}
|
||||
|
||||
fetchQuestion(url) {
|
||||
axios.get(url +"?q="+new Date().getTime())
|
||||
axios.get(url)
|
||||
.then(((data) => {
|
||||
console.log(data.data);
|
||||
this.setState({
|
||||
|
@ -86,7 +86,7 @@ class App extends Component {
|
|||
}
|
||||
|
||||
fetchResponses(url) {
|
||||
axios.get(url +"?q="+new Date().getTime())
|
||||
axios.get(url)
|
||||
.then(((data) => {
|
||||
this.setState({
|
||||
currentResponses : data.data
|
||||
|
@ -94,18 +94,18 @@ class App extends Component {
|
|||
}))
|
||||
}
|
||||
|
||||
componentWillMount(){
|
||||
if(this.state.start === true) {
|
||||
axios.get(this.state.baseRoute+"/questions" +"?q="+new Date().getTime())
|
||||
.then(((data) => {
|
||||
this.fetchQuestion(this.state.baseRoute+"/questions/"+data.data[0].id);
|
||||
this.fetchResponses(this.state.baseRoute+"/questions/"+data.data[0].id+"/responses");
|
||||
}));
|
||||
this.setState ({
|
||||
start: false
|
||||
})
|
||||
}
|
||||
}
|
||||
componentWillMount() {
|
||||
if (this.state.start === true) {
|
||||
axios.get(this.state.baseRoute + "/questions/first"+ "?q=" + new Date().getTime())
|
||||
.then(((data) => {
|
||||
this.fetchQuestion(this.state.baseRoute+"/questions/"+data.data[0].id);
|
||||
this.fetchResponses(this.state.baseRoute + "/questions/" + data.data[0].id + "/responses");
|
||||
}))
|
||||
this.setState({
|
||||
start: false
|
||||
})
|
||||
}
|
||||
}
|
||||
|
||||
render() {
|
||||
let currentOptions = this.state.currentResponses.map((element, index) => (
|
||||
|
|
Loading…
Reference in New Issue