clean code

This commit is contained in:
MuslemRahimi 2024-07-29 23:04:52 +02:00
parent 35370a6482
commit 377a55574d
2 changed files with 5 additions and 23 deletions

View File

@ -4,9 +4,9 @@ import { redirect } from '@sveltejs/kit';
export const load = async ({parent}) => {
const data = await parent();
const { user } = await parent();
if (data?.user) {
if (user) {
redirect(303, '/home');
}

View File

@ -1,16 +1,9 @@
import { userRegion, getCache, setCache } from '$lib/store';
import { getCache, setCache } from '$lib/store';
import defaultAvatar from '$lib/images/senator/default-avatar.png';
import { getPartyForPoliticians } from '$lib/utils';
import { redirect } from '@sveltejs/kit';
const usRegion = ['cle1','iad1','pdx1','sfo1'];
let apiURL;
let apiKey = import.meta.env.VITE_STOCKNEAR_API_KEY;
let images = {};
// Function to load images only when they are viewed
async function loadImages() {
@ -30,22 +23,11 @@ async function loadImages() {
}
userRegion.subscribe(value => {
if (usRegion.includes(value)) {
apiURL = import.meta.env.VITE_USEAST_API_URL;
} else {
apiURL = import.meta.env.VITE_EU_API_URL;
}
});
export const load = async ({ parent}) => {
const data = await parent();
const { user, apiKey, apiURL } = await parent();
if (!data?.user) {
if (!user) {
redirect(303, '/');
}