frontend/src/routes/list/uk-stocks-us/+page.ts
MuslemRahimi c1386f0015 bugfixing
2024-09-05 23:35:46 +02:00

38 lines
872 B
TypeScript

import { getCache, setCache } from "$lib/store";
export const load = async ({ parent }) => {
const getUKStocksUS = async () => {
let output;
// Get cached data for the specific tickerID
const cachedData = getCache("", "getUKStocksUS");
if (cachedData) {
output = cachedData;
} else {
const { apiURL, apiKey } = await parent();
const postData = { filterList: "GB" };
const response = await fetch(apiURL + "/filter-stock-list", {
method: "POST",
headers: {
"Content-Type": "application/json",
"X-API-KEY": apiKey,
},
body: JSON.stringify(postData),
});
output = await response.json();
setCache("", output, "getUKStocksUS");
}
return output;
};
// Make sure to return a promise
return {
getUKStocksUS: await getUKStocksUS(),
};
};