summaryrefslogtreecommitdiff
path: root/src/clients/api_client.ts
blob: 7d2cf34945f18a2bc2f8cd4c276edb4e6a16a96f (plain)
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
import axios from "axios";

export class ApiClient {
  readonly url = "http://localhost:3000/api";

  async get(path: string, params?: URLSearchParams, headers?: object) {
    const request_url = `${ this.url }${ path }`;
    const response = await this.makeGetRequest(request_url, headers);

    return response;
  }

  async post(path: string, data: FormData, headers?: object) {
    const request_url = `${ this.url }${ path }`;
    const response = await axios.post(request_url, data, headers);

    return response;
  }

  async getProduct(id: string) {
    const request_url = `${ this.url }/products/${ id }`;
    const [product_response, product_reviews] = await Promise.all([
      this.makeGetRequest(request_url),
      this.makeGetRequest(`${ request_url }/reviews`)
    ]);

    return [product_response, product_reviews];
  }

  private async makeGetRequest(request_url: string, headers?: object) {
    try {
      const response = await axios.get(request_url, headers);

      return response
    } catch(error) {
      return error;
    }
  }
}