89 lines
2.9 KiB
TypeScript
89 lines
2.9 KiB
TypeScript
import Link from 'next/link';
|
|
import { Server, ServiceStatus, getStatusColor, serviceStatusToString } from '@/lib/types';
|
|
import {
|
|
startServerEventAction,
|
|
restartServerEventAction,
|
|
stopServerEventAction
|
|
} from '@/lib/actions/servers';
|
|
|
|
interface ServerCardProps {
|
|
server: Server;
|
|
}
|
|
|
|
export function ServerCard({ server }: ServerCardProps) {
|
|
return (
|
|
<div className="overflow-hidden rounded-lg border border-gray-700 bg-gray-800 shadow-lg">
|
|
<Link href={`/dashboard/server/${server.id}`} className="block">
|
|
<div className="p-6">
|
|
<div className="flex items-start justify-between">
|
|
<div>
|
|
<h3 className="text-lg font-medium text-white">{server.name}</h3>
|
|
<div className="mt-2 flex items-center">
|
|
<span
|
|
className={`inline-block h-2 w-2 rounded-full ${getStatusColor(server.status)} mr-2`}
|
|
/>
|
|
<span className="text-sm text-gray-300 capitalize">
|
|
{serviceStatusToString(server.status)}
|
|
</span>
|
|
</div>
|
|
</div>
|
|
<div className="text-gray-400 hover:text-white">
|
|
<svg
|
|
xmlns="http://www.w3.org/2000/svg"
|
|
className="h-5 w-5"
|
|
viewBox="0 0 20 20"
|
|
fill="currentColor"
|
|
>
|
|
<path d="M13.586 3.586a2 2 0 112.828 2.828l-.793.793-2.828-2.828.793-.793zM11.379 5.793L3 14.172V17h2.828l8.38-8.379-2.83-2.828z" />
|
|
</svg>
|
|
</div>
|
|
</div>
|
|
|
|
<div className="mt-4 grid grid-cols-2 gap-4 text-sm text-gray-300">
|
|
<div>
|
|
<span className="text-gray-500">Track:</span>
|
|
<span className="ml-2">{server.state?.track || 'N/A'}</span>
|
|
</div>
|
|
<div>
|
|
<span className="text-gray-500">Players:</span>
|
|
<span className="ml-2">{server.state?.playerCount || 0}</span>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</Link>
|
|
|
|
<div className="flex justify-between gap-2 bg-gray-900 px-4 py-3">
|
|
<form action={startServerEventAction.bind(null, server.id)}>
|
|
<button
|
|
type="submit"
|
|
disabled={server.status === ServiceStatus.Running}
|
|
className="rounded bg-green-600 px-3 py-2 text-xs font-medium text-white transition-colors hover:bg-green-700 disabled:cursor-not-allowed disabled:opacity-50"
|
|
>
|
|
Start
|
|
</button>
|
|
</form>
|
|
|
|
<form action={restartServerEventAction.bind(null, server.id)}>
|
|
<button
|
|
type="submit"
|
|
disabled={server.status === ServiceStatus.Stopped}
|
|
className="rounded bg-yellow-600 px-3 py-2 text-xs font-medium text-white transition-colors hover:bg-yellow-700 disabled:cursor-not-allowed disabled:opacity-50"
|
|
>
|
|
Restart
|
|
</button>
|
|
</form>
|
|
|
|
<form action={stopServerEventAction.bind(null, server.id)}>
|
|
<button
|
|
type="submit"
|
|
disabled={server.status === ServiceStatus.Stopped}
|
|
className="rounded bg-red-600 px-3 py-2 text-xs font-medium text-white transition-colors hover:bg-red-700 disabled:cursor-not-allowed disabled:opacity-50"
|
|
>
|
|
Stop
|
|
</button>
|
|
</form>
|
|
</div>
|
|
</div>
|
|
);
|
|
}
|