summaryrefslogtreecommitdiff
path: root/src/clients/loaders.ts
diff options
context:
space:
mode:
authorHombreLaser <sebastian-440@live.com>2023-04-26 21:37:38 -0600
committerHombreLaser <sebastian-440@live.com>2023-04-26 21:37:38 -0600
commitc7e493ce3d2855e61787d86714625bc7fc51f9bd (patch)
treeb7b9b97fbe26d6258a553c8dc4655d5fcf7cdb92 /src/clients/loaders.ts
parent70db52d02dfe5da7397e5ba801b01739a5d0ceaa (diff)
Añade vista de producto individual
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