summaryrefslogtreecommitdiff
path: root/iridescence/src/api/dichroism.js
blob: c2cc93c764a74ec207204cb39854ef19ca665d01 (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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
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
    };

    try {
      const photos = await this._sendRequest("photos", options);
      return photos.map(p => new PhotoSet(p));
    } catch (err) {
      console.error("Dichroism: " + err.message);
      return null;
    }
  }

  async getProducts() {
    try {
      const products = await this._sendRequest("products", null);
      return products.map(p => new Product(p));
    } catch (err) {
      console.error("Dichroism: " + err.message);
      return [];
    }
  }

  async updateProduct(fieldDiff) {
    const options = {
      method: "PATCH",
      headers: {
        "Content-Type": "application/json"
      },
      body: JSON.stringify(fieldDiff)
    };

    try {
      const product = await this._sendRequest("products", options);
      return new Product(product);
    } catch (err) {
      console.error("Dichroism: " + err.message);
      return null;
    }
  }

  async createProduct(newProduct) {
    const options = {
      method: "POST",
      headers: {
        "Content-Type": "application/json"
      },
      body: JSON.stringify(newProduct)
    };

    try {
      const product = await this._sendRequest("products", options);
      return new Product(product);
    } catch (err) {
      console.error("Dichroism: " + err.message);
      return null;
    }
  }

  async _sendRequest(endpoint, options) {
    const response = await fetch(this._base_addr + endpoint, options);

    if (response.ok) {
      return await response.json();
    } else {
      throw new ApiError(await response.text());
    }
  }
}