headplane/app/layouts/dashboard.tsx

73 lines
1.8 KiB
TypeScript
Raw Normal View History

2025-01-28 16:06:41 -05:00
import { XCircleFillIcon } from '@primer/octicons-react';
2024-12-31 10:31:50 +05:30
import { type LoaderFunctionArgs, redirect } from 'react-router';
import { Outlet, useLoaderData } from 'react-router';
import { ErrorPopup } from '~/components/Error';
2025-03-22 01:36:27 -04:00
import type { LoadContext } from '~/server';
import { ResponseError } from '~/server/headscale/api-client';
2025-01-28 17:46:16 -05:00
import cn from '~/utils/cn';
2025-03-22 01:36:27 -04:00
import log from '~/utils/log';
2024-03-25 17:51:11 -04:00
2025-03-22 01:36:27 -04:00
export async function loader({
request,
context,
}: LoaderFunctionArgs<LoadContext>) {
const healthy = await context.client.healthcheck();
const session = await context.sessions.auth(request);
// We shouldn't session invalidate if Headscale is down
// TODO: Notify in the logs or the UI that OIDC auth key is wrong if enabled
if (healthy) {
try {
await context.client.get('v1/apikey', session.get('api_key')!);
} catch (error) {
2025-03-22 01:36:27 -04:00
if (error instanceof ResponseError) {
log.debug('api', 'API Key validation failed %o', error);
return redirect('/login', {
headers: {
2025-03-22 01:36:27 -04:00
'Set-Cookie': await context.sessions.destroy(session),
},
});
}
}
}
2024-03-30 02:44:06 -04:00
return {
healthy,
2025-01-28 16:06:41 -05:00
};
2024-03-25 17:51:11 -04:00
}
export default function Layout() {
2025-01-28 16:06:41 -05:00
const { healthy } = useLoaderData<typeof loader>();
2024-03-25 17:51:11 -04:00
return (
<>
{!healthy ? (
2025-01-28 16:06:41 -05:00
<div
className={cn(
'fixed bottom-0 right-0 z-50 w-fit h-14',
'flex flex-col justify-center gap-1',
)}
>
<div
className={cn(
'flex items-center gap-1.5 mr-1.5 py-2 px-1.5',
'border rounded-lg text-white bg-red-500',
'border-red-600 dark:border-red-400 shadow-sm',
)}
>
<XCircleFillIcon className="w-4 h-4 text-white" />
Headscale is unreachable
</div>
</div>
) : undefined}
<main className="container mx-auto overscroll-contain mt-4 mb-24">
<Outlet />
2024-03-25 17:51:11 -04:00
</main>
2024-03-29 16:14:35 -04:00
</>
2024-12-31 10:30:14 +05:30
);
2024-03-29 16:14:35 -04:00
}
export function ErrorBoundary() {
return <ErrorPopup type="embedded" />;
}