From 6cbdcb81ffcac6f59466f092ed20a5de373b5bbd Mon Sep 17 00:00:00 2001 From: gabriel Date: Sun, 23 Mar 2025 03:41:05 +0100 Subject: [PATCH] qs --- src/components/ServerCard.tsx | 59 ++++++++++++++++++++++++++++++----- 1 file changed, 52 insertions(+), 7 deletions(-) diff --git a/src/components/ServerCard.tsx b/src/components/ServerCard.tsx index acf5098..c191540 100644 --- a/src/components/ServerCard.tsx +++ b/src/components/ServerCard.tsx @@ -1,5 +1,5 @@ -import React from 'react'; -import { Server, Cpu, MemoryStick as Memory, Trash2, ExternalLink } from 'lucide-react'; +import React, { useState } from 'react'; +import { Server, Cpu, MemoryStick as Memory, Trash2, ExternalLink, AlertCircle } from 'lucide-react'; import type { Server as ServerType } from '../types'; interface ServerCardProps { @@ -8,18 +8,66 @@ interface ServerCardProps { } export function ServerCard({ server, onDelete }: ServerCardProps) { + const [showConfirmation, setShowConfirmation] = useState(false); + const handleProxmoxClick = () => { window.open(server.proxmox_url, '_blank'); }; + const handleDeleteClick = (e: React.MouseEvent) => { + e.stopPropagation(); + setShowConfirmation(true); + }; + + const handleConfirmDelete = (e: React.MouseEvent) => { + e.stopPropagation(); + onDelete(server.id); + setShowConfirmation(false); + }; + + const handleCancelDelete = (e: React.MouseEvent) => { + e.stopPropagation(); + setShowConfirmation(false); + }; + const totalCores = server.cpus.reduce((sum, cpu) => sum + cpu.cores, 0); const firstCpu = server.cpus[0]; return (
+ {showConfirmation && ( +
e.stopPropagation()} + > + +

+ Delete {server.name}? +

+

+ This action cannot be undone. The server will be removed from the dashboard. +

+
+ + +
+
+ )} +

@@ -27,10 +75,7 @@ export function ServerCard({ server, onDelete }: ServerCardProps) {