-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCoffeeList.js
69 lines (59 loc) · 1.64 KB
/
CoffeeList.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
import React from "react";
import Table from 'react-bootstrap/Table';
import axios from 'axios'
class CoffeeList extends React.Component {
readData() {
const self = this;
axios.get(window.global.api_location+'/products').then(function(response) {
console.log(response.data);
self.setState({products: response.data});
}).catch(function (error){
console.log(error);
});
}
getProducts() {
let table = []
for (let i=0; i < this.state.products.length; i++) {
table.push(
<tr key={i}>
<td>{this.state.products[i].name}</td>
<td>{this.state.products[i].price}</td>
<td>{this.state.products[i].sku}</td>
</tr>
);
}
return table
}
constructor(props) {
super(props);
this.readData();
this.state = {products: []};
this.readData = this.readData.bind(this);
}
render() {
return (
<div>
<h1 style={{marginBottom: "40px"}}>Menu</h1>
<Table>
<thead>
<tr>
<th>
Name
</th>
<th>
Price
</th>
<th>
SKU
</th>
</tr>
</thead>
<tbody>
{this.getProducts()}
</tbody>
</Table>
</div>
)
}
}
export default CoffeeList;