-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
api.js
68 lines (59 loc) · 1.53 KB
/
api.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
const API_URL = 'http://localhost:8080'; //url do app, vou add dps
export const productService = {
async getProducts() {
const response = await fetch(`${API_URL}/products`);
return response.json();
},
async createProduct(product) {
const response = await fetch(`${API_URL}/products`, {
method: 'POST',
headers: {
'Content-Type': 'application/json',
},
body: JSON.stringify(product),
});
return response.json();
},
async getProduct(id) {
const response = await fetch(`${API_URL}/products/${id}`);
return response.json();
},
async updateProduct(id, product) {
const response = await fetch(`${API_URL}/products/${id}`, {
method: 'PUT',
headers: {
'Content-Type': 'application/json',
},
body: JSON.stringify(product),
});
return response.json();
},
async deleteProduct(id) {
await fetch(`${API_URL}/products/${id}`, {
method: 'DELETE',
});
},
};
// Exemplo de componente React so pra deixar de base
import { useEffect, useState } from 'react';
function ProductList() {
const [products, setProducts] = useState([]);
useEffect(() => {
async function loadProducts() {
const data = await productService.getProducts();
setProducts(data);
}
loadProducts();
}, []);
return (
<div>
{products.map(product => (
<div key={product.id}>
<h3>{product.name}</h3>
<p>{product.description}</p>
<p>R$ {product.price}</p>
</div>
))}
</div>
);
}