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

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 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]];
}