headplane/app/routes/machines/machine.tsx

280 lines
8.1 KiB
TypeScript
Raw Normal View History

2025-02-04 17:21:03 -05:00
import { CheckCircle, CircleSlash, Info, UserCircle } from 'lucide-react';
2024-12-31 10:30:14 +05:30
import { useMemo, useState } from 'react';
2025-01-23 11:16:56 -05:00
import type { ActionFunctionArgs, LoaderFunctionArgs } from 'react-router';
import { Link as RemixLink, useLoaderData } from 'react-router';
2025-04-18 14:40:56 -04:00
import { mapTag } from 'yaml/util';
2024-12-31 10:30:14 +05:30
import Attribute from '~/components/Attribute';
import Button from '~/components/Button';
import Card from '~/components/Card';
import Chip from '~/components/Chip';
2025-01-23 11:16:56 -05:00
import Link from '~/components/Link';
2024-12-31 10:30:14 +05:30
import StatusCircle from '~/components/StatusCircle';
2025-01-23 11:16:56 -05:00
import Tooltip from '~/components/Tooltip';
2025-03-22 01:36:27 -04:00
import type { LoadContext } from '~/server';
2024-12-31 10:31:50 +05:30
import type { Machine, Route, User } from '~/types';
2025-01-28 17:46:16 -05:00
import cn from '~/utils/cn';
2025-04-18 14:40:56 -04:00
import { mapNodes } from '~/utils/node-info';
import { mapTagsToComponents, uiTagsForNode } from './components/machine-row';
2024-12-31 10:30:14 +05:30
import MenuOptions from './components/menu';
import Routes from './dialogs/routes';
import { machineAction } from './machine-actions';
2025-03-22 01:36:27 -04:00
export async function loader({
request,
params,
context,
}: LoaderFunctionArgs<LoadContext>) {
const session = await context.sessions.auth(request);
2024-03-26 09:28:52 -04:00
if (!params.id) {
2024-12-31 10:30:14 +05:30
throw new Error('No machine ID provided');
2024-03-26 09:28:52 -04:00
}
2024-12-31 10:30:14 +05:30
let magic: string | undefined;
2025-03-22 01:36:27 -04:00
if (context.hs.readable()) {
if (context.hs.c?.dns.magic_dns) {
magic = context.hs.c.dns.base_domain;
}
}
2025-04-18 14:40:56 -04:00
const [machine, { routes }, { users }] = await Promise.all([
2025-03-22 01:36:27 -04:00
context.client.get<{ node: Machine }>(
`v1/node/${params.id}`,
session.get('api_key')!,
),
context.client.get<{ routes: Route[] }>(
'v1/routes',
session.get('api_key')!,
),
context.client.get<{ users: User[] }>('v1/user', session.get('api_key')!),
2024-12-31 10:30:14 +05:30
]);
2025-04-18 14:40:56 -04:00
const [node] = mapNodes([machine.node], routes);
return {
2025-04-18 14:40:56 -04:00
node,
users,
magic,
2025-04-18 14:40:56 -04:00
agent: context.agents?.agentID(),
2024-12-31 10:30:14 +05:30
};
2024-03-26 09:28:52 -04:00
}
2025-03-22 01:36:27 -04:00
export async function action(request: ActionFunctionArgs) {
return machineAction(request);
}
2024-03-26 09:28:52 -04:00
export default function Page() {
2025-04-18 14:40:56 -04:00
const { node, magic, users, agent } = useLoaderData<typeof loader>();
const [showRouting, setShowRouting] = useState(false);
2024-03-26 09:28:52 -04:00
2025-04-18 14:40:56 -04:00
const uiTags = useMemo(() => {
const tags = uiTagsForNode(node, agent === node.nodeKey);
return tags;
}, [node, agent]);
2024-03-26 09:28:52 -04:00
return (
<div>
<p className="mb-8 text-md">
2024-12-31 10:30:14 +05:30
<RemixLink to="/machines" className="font-medium">
2024-03-26 09:28:52 -04:00
All Machines
</RemixLink>
2024-12-31 10:30:14 +05:30
<span className="mx-2">/</span>
2025-04-18 14:40:56 -04:00
{node.givenName}
2024-03-26 09:28:52 -04:00
</p>
2024-12-31 10:30:14 +05:30
<div
className={cn(
2025-02-04 17:21:03 -05:00
'flex justify-between items-center pb-2',
'border-b border-headplane-100 dark:border-headplane-800',
2024-12-31 10:30:14 +05:30
)}
>
2025-02-04 17:21:03 -05:00
<span className="flex items-baseline gap-x-4 text-sm">
2025-04-18 14:40:56 -04:00
<h1 className="text-2xl font-medium">{node.givenName}</h1>
<StatusCircle isOnline={node.online} className="w-4 h-4" />
</span>
2025-04-18 14:40:56 -04:00
<MenuOptions isFullButton node={node} users={users} magic={magic} />
</div>
<div className="flex gap-1 mb-4">
2025-02-04 17:21:03 -05:00
<div className="border-r border-headplane-100 dark:border-headplane-800 p-2 pr-4">
<span className="text-sm text-headplane-600 dark:text-headplane-300 flex items-center gap-x-1">
Managed by
<Tooltip>
2025-02-04 17:21:03 -05:00
<Info className="p-1" />
<Tooltip.Body>
By default, a machines permissions match its creators.
</Tooltip.Body>
</Tooltip>
</span>
<div className="flex items-center gap-x-2.5 mt-1">
2025-02-04 17:21:03 -05:00
<UserCircle />
2025-04-18 14:40:56 -04:00
{node.user.name}
</div>
</div>
2025-04-18 14:40:56 -04:00
<div className="p-2 pl-4">
<p className="text-sm text-headplane-600 dark:text-headplane-300">
Status
</p>
<div className="flex gap-1 mt-1 mb-8">
{mapTagsToComponents(node, uiTags)}
{node.validTags.map((tag) => (
<Chip key={tag} text={tag} />
))}
</div>
2025-04-18 14:40:56 -04:00
</div>
</div>
2024-12-31 10:30:14 +05:30
<h2 className="text-xl font-medium mb-4 mt-8">Subnets & Routing</h2>
2025-04-18 14:40:56 -04:00
<Routes node={node} isOpen={showRouting} setIsOpen={setShowRouting} />
<div className="flex items-center justify-between mb-4">
<p>
2024-12-31 10:30:14 +05:30
Subnets let you expose physical network routes onto Tailscale.{' '}
<Link
to="https://tailscale.com/kb/1019/subnets"
name="Tailscale Subnets Documentation"
>
Learn More
</Link>
</p>
2025-01-23 11:16:56 -05:00
<Button onPress={() => setShowRouting(true)}>Review</Button>
</div>
<Card
variant="flat"
className={cn(
'w-full max-w-full grid sm:grid-cols-2',
'md:grid-cols-4 gap-8 mr-2 text-sm mb-8',
)}
>
<div>
2025-02-04 17:21:03 -05:00
<span className="text-headplane-600 dark:text-headplane-300 flex items-center gap-x-1">
Approved
<Tooltip>
2025-02-04 17:21:03 -05:00
<Info className="w-3.5 h-3.5" />
<Tooltip.Body>
2024-12-31 10:30:14 +05:30
Traffic to these routes are being routed through this machine.
</Tooltip.Body>
</Tooltip>
</span>
<div className="mt-1">
2025-04-18 14:40:56 -04:00
{node.customRouting.subnetApprovedRoutes.length === 0 ? (
2025-02-04 17:21:03 -05:00
<span className="opacity-50"></span>
) : (
<ul className="leading-normal">
2025-04-18 14:40:56 -04:00
{node.customRouting.subnetApprovedRoutes.map((route) => (
2024-12-31 10:30:14 +05:30
<li key={route.id}>{route.prefix}</li>
))}
</ul>
)}
</div>
<Button
onPress={() => setShowRouting(true)}
className={cn(
'px-1.5 py-0.5 rounded-md mt-1.5',
'text-blue-500 dark:text-blue-400',
)}
>
Edit
</Button>
</div>
<div>
2025-02-04 17:21:03 -05:00
<span className="text-headplane-600 dark:text-headplane-300 flex items-center gap-x-1">
Awaiting Approval
<Tooltip>
2025-02-04 17:21:03 -05:00
<Info className="w-3.5 h-3.5" />
<Tooltip.Body>
2024-12-31 10:30:14 +05:30
This machine is advertising these routes, but they must be
approved before traffic will be routed to them.
</Tooltip.Body>
</Tooltip>
</span>
<div className="mt-1">
2025-04-18 14:40:56 -04:00
{node.customRouting.subnetWaitingRoutes.length === 0 ? (
2025-02-04 17:21:03 -05:00
<span className="opacity-50"></span>
) : (
<ul className="leading-normal">
2025-04-18 14:40:56 -04:00
{node.customRouting.subnetWaitingRoutes.map((route) => (
2024-12-31 10:30:14 +05:30
<li key={route.id}>{route.prefix}</li>
))}
</ul>
)}
</div>
<Button
onPress={() => setShowRouting(true)}
className={cn(
'px-1.5 py-0.5 rounded-md mt-1.5',
'text-blue-500 dark:text-blue-400',
)}
>
Edit
</Button>
</div>
<div>
2025-02-04 17:21:03 -05:00
<span className="text-headplane-600 dark:text-headplane-300 flex items-center gap-x-1">
Exit Node
<Tooltip>
2025-02-04 17:21:03 -05:00
<Info className="w-3.5 h-3.5" />
<Tooltip.Body>
2024-12-31 10:30:14 +05:30
Whether this machine can act as an exit node for your tailnet.
</Tooltip.Body>
</Tooltip>
</span>
<div className="mt-1">
2025-04-18 14:40:56 -04:00
{node.customRouting.exitRoutes.length === 0 ? (
2025-02-04 17:21:03 -05:00
<span className="opacity-50"></span>
2025-04-18 14:40:56 -04:00
) : node.customRouting.exitApproved ? (
<span className="flex items-center gap-x-1">
2025-02-04 17:21:03 -05:00
<CheckCircle className="w-3.5 h-3.5 text-green-700" />
Allowed
</span>
) : (
<span className="flex items-center gap-x-1">
2025-02-04 17:21:03 -05:00
<CircleSlash className="w-3.5 h-3.5 text-red-700" />
Awaiting Approval
</span>
)}
</div>
<Button
onPress={() => setShowRouting(true)}
className={cn(
'px-1.5 py-0.5 rounded-md mt-1.5',
'text-blue-500 dark:text-blue-400',
)}
>
Edit
</Button>
</div>
</Card>
2024-12-31 10:30:14 +05:30
<h2 className="text-xl font-medium mb-4">Machine Details</h2>
<Card variant="flat" className="w-full max-w-full">
2025-04-18 14:40:56 -04:00
<Attribute name="Creator" value={node.user.name} />
<Attribute name="Node ID" value={node.id} />
<Attribute name="Node Name" value={node.givenName} />
<Attribute name="Hostname" value={node.name} />
<Attribute isCopyable name="Node Key" value={node.nodeKey} />
2024-03-26 09:28:52 -04:00
<Attribute
suppressHydrationWarning
name="Created"
2025-04-18 14:40:56 -04:00
value={new Date(node.createdAt).toLocaleString()}
2024-03-26 09:28:52 -04:00
/>
<Attribute
suppressHydrationWarning
name="Last Seen"
2025-04-18 14:40:56 -04:00
value={new Date(node.lastSeen).toLocaleString()}
2024-03-26 09:28:52 -04:00
/>
<Attribute
suppressHydrationWarning
name="Expiry"
2025-04-18 14:40:56 -04:00
value={
node.expiry !== null
? new Date(node.expiry).toLocaleString()
: 'Never'
}
2024-03-26 09:28:52 -04:00
/>
2024-12-31 10:30:14 +05:30
{magic ? (
<Attribute
isCopyable
name="Domain"
2025-04-18 14:40:56 -04:00
value={`${node.givenName}.${magic}`}
2024-12-31 10:30:14 +05:30
/>
) : undefined}
</Card>
2024-03-26 09:28:52 -04:00
</div>
2024-12-31 10:30:14 +05:30
);
2024-03-26 09:28:52 -04:00
}