summaryrefslogtreecommitdiff
path: root/src/clients/loaders.ts
blob: 9f5a131094ac152141fd101f1cb4d3705df43f22 (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
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
import { redirect } from "react-router-dom";
import { ApiClient } from "./api_client";
import { Product, mapProduct } from "../models/product";
import Token from "../lib/token";

export async function loader({ request }) {
  const client = new ApiClient();
  const url = new URL(request.url)
  const response = await client.get(`${url.pathname}${url.search}`);
  
  return response;
}

export async function cartLoader() {
  const data = new Array<Product>();
  const token = new Token();
  const client = new ApiClient();
  const request = await client.authenticatedGet("/account/cart");

  if(request.response) {
    token.logout();

    return redirect("/products")
  }

  request.data.data.attributes.products.data.map(response_data => {
    data.push(mapProduct(response_data));
  });

  return data;
}

export async function addressLoader({ params }) {
  const client = new ApiClient();
  const path = `/account/addresses/${params.addressId}`;
  const request = await client.authenticatedGet(path);
  
  if(request.response)
    return redirect("/account");

  return request;
}

export async function cardLoader({ params }) {
  const client = new ApiClient();
  const path = `/account/cards/${ params.cardId }`;
  const request = await client.authenticatedGet(path);

  if(request.response)
    return redirect("/account");
    
  return request;
}

export async function accountLoader() {
  const client = new ApiClient();
  
  const account_response = await client.authenticatedGet("/account");
  const addresses_response = await client.authenticatedGet("/account/addresses");
  const cards_response = await client.authenticatedGet("/account/cards");

  // Authentication error handling.
  if(account_response.response || addresses_response.response || cards_response.response)
    return redirect("/products");

  return [account_response, addresses_response, cards_response];
}

export async function productLoader({ params }) {
  const client = new ApiClient();
  const response = await client.getProduct(params.productId);
  
  return [response[0], response[1]];
}