mirror of
https://github.com/immich-app/immich.git
synced 2026-05-18 03:10:24 +03:00
32 lines
854 B
TypeScript
32 lines
854 B
TypeScript
import { AppRoute } from '$lib/constants';
|
|
import { getFormatter } from '$lib/utils/i18n';
|
|
import { getServerConfig } from '@immich/sdk';
|
|
import { redirect } from '@sveltejs/kit';
|
|
import { loadUser } from '../lib/utils/auth';
|
|
import type { PageLoad } from './$types';
|
|
|
|
export const ssr = false;
|
|
export const csr = true;
|
|
|
|
export const load = (async () => {
|
|
const authenticated = await loadUser();
|
|
if (authenticated) {
|
|
redirect(302, AppRoute.PHOTOS);
|
|
}
|
|
|
|
const { isInitialized } = await getServerConfig();
|
|
if (isInitialized) {
|
|
// Redirect to login page if there exists an admin account (i.e. server is initialized)
|
|
redirect(302, AppRoute.AUTH_LOGIN);
|
|
}
|
|
|
|
const $t = await getFormatter();
|
|
|
|
return {
|
|
meta: {
|
|
title: $t('welcome') + ' 🎉',
|
|
description: $t('immich_web_interface'),
|
|
},
|
|
};
|
|
}) satisfies PageLoad;
|