headplane/app/layouts/dashboard.tsx

74 lines
1.9 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';
2025-01-28 17:46:16 -05:00
import cn from '~/utils/cn';
2025-01-28 16:06:41 -05:00
import { HeadscaleError, healthcheck, pull } from '~/utils/headscale';
import { destroySession, getSession } from '~/utils/sessions.server';
import { useLiveData } from '~/utils/useLiveData';
import log from '~server/utils/log';
2024-03-25 17:51:11 -04:00
export async function loader({ request }: LoaderFunctionArgs) {
let healthy = false;
try {
healthy = await healthcheck();
} catch (error) {
log.debug('APIC', 'Healthcheck failed %o', error);
}
// We shouldn't session invalidate if Headscale is down
if (healthy) {
// We can assert because shell ensures this is set
const session = await getSession(request.headers.get('Cookie'));
const apiKey = session.get('hsApiKey')!;
try {
await pull('v1/apikey', apiKey);
} catch (error) {
if (error instanceof HeadscaleError) {
log.debug('APIC', 'API Key validation failed %o', error);
return redirect('/login', {
headers: {
'Set-Cookie': await destroySession(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() {
useLiveData({ interval: 3000 });
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
}