import { Bomb } from 'lucide-react'; import { Authorized } from '@/react/hooks/useUser'; import { EnvironmentId } from '@/react/portainer/environments/types'; import { notifySuccess } from '@/portainer/services/notifications'; import { LoadingButton } from '@@/buttons'; import { ContainerId } from '../../../types'; import { useKillContainer } from '../queries/useKillContainer'; interface KillButtonProps { environmentId: EnvironmentId; containerId: ContainerId; nodeName?: string; isRunning: boolean; isPortainer: boolean; onSuccess?(): void; } export function KillButton({ environmentId, containerId, nodeName, isRunning, isPortainer, onSuccess = () => {}, }: KillButtonProps) { const killMutation = useKillContainer(); function handleKill() { killMutation.mutate( { environmentId, containerId, nodeName }, { onSuccess() { notifySuccess('Success', 'Container successfully killed'); onSuccess(); }, } ); } return ( Kill ); }