frontend/src/routes/industry/sectors/+page.ts
2024-09-17 14:02:43 +02:00

35 lines
837 B
TypeScript

import { getCache, setCache } from "$lib/store";
export const load = async ({ parent }) => {
const getSectorOverview = async () => {
let output;
// Get cached data for the specific tickerID
const cachedData = getCache("", "getSectorOverview");
if (cachedData) {
output = cachedData;
} else {
const { apiKey, apiURL } = await parent();
const response = await fetch(apiURL + "/sector-overview", {
method: "GET",
headers: {
"Content-Type": "application/json",
"X-API-KEY": apiKey,
},
});
output = await response.json();
setCache("", output, "getSectorOverview");
}
return output;
};
// Make sure to return a promise
return {
getSectorOverview: await getSectorOverview(),
};
};