summaryrefslogtreecommitdiff
path: root/src/clients/loaders.ts
diff options
context:
space:
mode:
Diffstat (limited to 'src/clients/loaders.ts')
-rw-r--r--src/clients/loaders.ts16
1 files changed, 16 insertions, 0 deletions
diff --git a/src/clients/loaders.ts b/src/clients/loaders.ts
new file mode 100644
index 0000000..43c1581
--- /dev/null
+++ b/src/clients/loaders.ts
@@ -0,0 +1,16 @@
+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);
+
+ return response;
+}
+
+export async function productLoader({ params }) {
+ const client = new ApiClient();
+ const response = await client.getProduct(params.productId);
+
+ return [response[0], response[1]];
+} \ No newline at end of file