frontend/src/routes/cramer-tracker/+page.ts
2024-07-27 18:07:29 +02:00

39 lines
835 B
TypeScript

import {getCache, setCache } from '$lib/store';
export const load = async ({parent}) => {
const getCramerTracker = async () => {
let output;
const cachedData = getCache('', 'getCramerTracker');
if (cachedData) {
output = cachedData;
} else {
const { apiKey, apiURL } = await parent();
const response = await fetch(apiURL + '/cramer-tracker', {
method: 'GET',
headers: {
"Content-Type": "application/json", "X-API-KEY": apiKey
},
});
output = await response.json();
setCache('', output, 'getCramerTracker');
}
//output = data?.user?.tier !== 'Pro' ? output?.slice(0,6) : output;
return output;
};
// Make sure to return a promise
return {
getCramerTracker: await getCramerTracker()
};
};