frontend/src/routes/stocks/[tickerID]/stats/ratios/+page.ts
MuslemRahimi ffc89f518f ui fix
2024-08-05 08:57:58 +02:00

43 lines
1.1 KiB
TypeScript

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