root 2018-06-06 12:26:56 +02:00
commit 0439506dd1
3 changed files with 20 additions and 19 deletions

Binary file not shown.

After

Width:  |  Height:  |  Size: 15 KiB

View File

@ -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>

View File

@ -50,11 +50,11 @@ class App extends Component {
score: 0
});
axios.get(this.state.baseRoute+"/questions" +"?q="+new Date().getTime())
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
@ -96,11 +96,11 @@ class App extends Component {
componentWillMount() {
if (this.state.start === true) {
axios.get(this.state.baseRoute+"/questions" +"?q="+new Date().getTime())
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
})