frontend/src/routes/list/technology-sector/+page.ts
2024-08-12 13:24:40 +02:00

40 lines
1001 B
TypeScript

import { getCache, setCache } from '$lib/store';
export const load = async ({parent}) => {
const getTechnologySector = async () => {
let output;
// Get cached data for the specific tickerID
const cachedData = getCache('', 'getTechnologySector');
if (cachedData) {
output = cachedData;
} else {
const {apiKey, apiURL} = await parent();
const postData = {'filterList': 'technology'}
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();
// Cache the data for this specific tickerID with a specific name 'getTechnologySector'
setCache('', output, 'getTechnologySector');
}
return output;
};
// Make sure to return a promise
return {
getTechnologySector: await getTechnologySector()
};
};