frontend/src/routes/stocks/[tickerID]/news/+page.ts
2024-07-30 01:00:35 +02:00

43 lines
1.0 KiB
TypeScript

import { getCache, setCache } from '$lib/store';
export const load = async ({ parent, params }) => {
const getStockNews = async () => {
let output;
// Get cached data for the specific tickerID
const cachedData = getCache(params.tickerID, 'getStockNews');
if (cachedData) {
output = cachedData;
} else {
const {apiURL, apiKey} = await parent();
const postData = {
ticker: params.tickerID
};
// make the POST request to the endpoint
const response = await fetch(apiURL + '/stock-news', {
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 'getStockNews'
setCache(params.tickerID, output, 'getStockNews');
}
return output;
};
// Make sure to return a promise
return {
getStockNews: await getStockNews()
};
};