mirror of
https://github.com/immich-app/immich
synced 2025-11-07 17:27:20 +00:00
26 lines
442 B
TypeScript
26 lines
442 B
TypeScript
|
|
import { api } from '../api';
|
||
|
|
import type { LayoutLoad } from './$types';
|
||
|
|
|
||
|
|
const getUser = async () => {
|
||
|
|
try {
|
||
|
|
const { data: user } = await api.userApi.getMyUserInfo();
|
||
|
|
return user;
|
||
|
|
} catch {
|
||
|
|
return null;
|
||
|
|
}
|
||
|
|
};
|
||
|
|
|
||
|
|
export const ssr = false;
|
||
|
|
export const csr = true;
|
||
|
|
|
||
|
|
export const load = (async () => {
|
||
|
|
const user = await getUser();
|
||
|
|
|
||
|
|
return {
|
||
|
|
user,
|
||
|
|
meta: {
|
||
|
|
title: 'Immich',
|
||
|
|
},
|
||
|
|
};
|
||
|
|
}) satisfies LayoutLoad;
|