blob: e3b08a86b80be26b5cb63120df46bc232354fc21 (
plain) (
blame)
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
|
import Product from "../models/product";
import PhotoSet from "../models/photo_set";
import ApiError from "./error";
export default class Dichroism {
_base_addr = "http://localhost:8000/";
async createPhoto(file) {
const fd = new FormData();
fd.append(file.name, file);
const options = {
method: "POST",
body: fd
};
const photos = await self._sendRequest("photos", options);
return photos.map(p => new PhotoSet(p));
}
async getProducts() {
const products = await self._sendRequest("products", null);
return products.map(p => new Product(p));
}
async updateProduct(fieldDiff) {
const options = {
method: "PATCH",
body: fieldDiff
};
const product = await self._sendRequest("products", options);
return new Product(product);
}
async createProduct(newProduct) {
const options = {
method: "POST",
body: newProduct
};
const product = await self._sendRequest("products", options);
return new Product(product);
}
async _sendRequest(endpoint, options) {
const response = await fetch(self.base_addr + endpoint, options);
if (response.ok) {
return await response.json();
} else {
return new ApiError(await response.text());
}
}
}
|