375 lines
12 KiB
React
375 lines
12 KiB
React
import React, { useEffect, useState } from "react";
|
||
import axios from "axios";
|
||
import { io } from "socket.io-client";
|
||
|
||
const REDEPLOY_STATE = {
|
||
IDLE: "idle",
|
||
QUEUED: "queued",
|
||
RUNNING: "running"
|
||
};
|
||
|
||
export default function Stacks() {
|
||
const [stacks, setStacks] = useState([]);
|
||
const [loading, setLoading] = useState(true);
|
||
const [error, setError] = useState("");
|
||
const [selectedStackIds, setSelectedStackIds] = useState([]);
|
||
|
||
const mergeStackState = (previousStacks, incomingStacks) => {
|
||
const prevMap = new Map(previousStacks.map((stack) => [stack.Id, stack]));
|
||
const sortedIncoming = [...incomingStacks].sort((a, b) => a.Name.localeCompare(b.Name));
|
||
|
||
return sortedIncoming.map((stack) => {
|
||
const previous = prevMap.get(stack.Id);
|
||
const redeployState = stack.redeployState
|
||
?? previous?.redeployState
|
||
?? (previous?.redeploying ? REDEPLOY_STATE.RUNNING : REDEPLOY_STATE.IDLE);
|
||
|
||
return {
|
||
...stack,
|
||
redeployState,
|
||
redeploying: redeployState === REDEPLOY_STATE.RUNNING,
|
||
redeployQueued: redeployState === REDEPLOY_STATE.QUEUED,
|
||
redeployDisabled: stack.redeployDisabled ?? previous?.redeployDisabled ?? false
|
||
};
|
||
});
|
||
};
|
||
|
||
useEffect(() => {
|
||
const socket = io("/", {
|
||
path: "/socket.io",
|
||
transports: ["websocket"]
|
||
});
|
||
console.log("🔌 Socket connected");
|
||
|
||
socket.on("redeployStatus", async ({ stackId, status }) => {
|
||
const nextState = status || REDEPLOY_STATE.IDLE;
|
||
console.log(`🔄 Stack ${stackId} Redeploy Status: ${nextState}`);
|
||
|
||
setStacks(prev =>
|
||
prev.map(stack => {
|
||
if (stack.Id !== stackId) return stack;
|
||
const updated = {
|
||
...stack,
|
||
redeployState: nextState,
|
||
redeploying: nextState === REDEPLOY_STATE.RUNNING,
|
||
redeployQueued: nextState === REDEPLOY_STATE.QUEUED
|
||
};
|
||
if (nextState === REDEPLOY_STATE.IDLE) {
|
||
updated.updateStatus = "✅";
|
||
}
|
||
return updated;
|
||
})
|
||
);
|
||
|
||
if (nextState === REDEPLOY_STATE.IDLE) {
|
||
try {
|
||
const res = await axios.get("/api/stacks");
|
||
setStacks(prev => mergeStackState(prev, res.data));
|
||
} catch (err) {
|
||
console.error("Fehler beim Aktualisieren nach Redeploy:", err);
|
||
}
|
||
}
|
||
});
|
||
|
||
return () => socket.disconnect();
|
||
}, []);
|
||
|
||
const fetchStacks = async () => {
|
||
setLoading(true);
|
||
try {
|
||
const res = await axios.get("/api/stacks");
|
||
setStacks(prev => mergeStackState(prev, res.data));
|
||
} catch (err) {
|
||
console.error("❌ Fehler beim Abrufen der Stacks:", err);
|
||
setError("Fehler beim Laden der Stacks");
|
||
} finally {
|
||
setLoading(false);
|
||
}
|
||
};
|
||
|
||
useEffect(() => {
|
||
fetchStacks();
|
||
}, []);
|
||
|
||
useEffect(() => {
|
||
setSelectedStackIds(prev => {
|
||
const filtered = prev.filter(id => {
|
||
const match = stacks.find(stack => stack.Id === id);
|
||
return match
|
||
&& match.updateStatus !== "✅"
|
||
&& !match.redeployDisabled
|
||
&& (match.redeployState ?? REDEPLOY_STATE.IDLE) === REDEPLOY_STATE.IDLE;
|
||
});
|
||
return filtered.length === prev.length ? prev : filtered;
|
||
});
|
||
}, [stacks]);
|
||
|
||
const toggleStackSelection = (stackId, disabled) => {
|
||
if (disabled) return;
|
||
setSelectedStackIds(prev =>
|
||
prev.includes(stackId)
|
||
? prev.filter(id => id !== stackId)
|
||
: [...prev, stackId]
|
||
);
|
||
};
|
||
|
||
const handleRedeploy = async (stackId) => {
|
||
const targetStack = stacks.find((stack) => stack.Id === stackId);
|
||
if (!targetStack || targetStack.redeployDisabled || targetStack.redeployState !== REDEPLOY_STATE.IDLE) return;
|
||
|
||
setSelectedStackIds((prev) => prev.filter((id) => id !== stackId));
|
||
setStacks((prev) =>
|
||
prev.map((stack) =>
|
||
stack.Id === stackId
|
||
? {
|
||
...stack,
|
||
redeployState: REDEPLOY_STATE.RUNNING,
|
||
redeploying: true,
|
||
redeployQueued: false
|
||
}
|
||
: stack
|
||
)
|
||
);
|
||
|
||
try {
|
||
await axios.put(`/api/stacks/${stackId}/redeploy`);
|
||
// Statusupdates kommen über Socket.IO
|
||
} catch (err) {
|
||
console.error("❌ Fehler beim Redeploy:", err);
|
||
setStacks((prev) =>
|
||
prev.map((stack) =>
|
||
stack.Id === stackId
|
||
? {
|
||
...stack,
|
||
redeployState: REDEPLOY_STATE.IDLE,
|
||
redeploying: false,
|
||
redeployQueued: false
|
||
}
|
||
: stack
|
||
)
|
||
);
|
||
}
|
||
};
|
||
|
||
const handleRedeployAll = async () => {
|
||
const outdatedStacks = stacks.filter((stack) =>
|
||
stack.updateStatus !== "✅"
|
||
&& !stack.redeployDisabled
|
||
&& (stack.redeployState ?? REDEPLOY_STATE.IDLE) === REDEPLOY_STATE.IDLE
|
||
);
|
||
if (!outdatedStacks.length) return;
|
||
|
||
const outdatedIds = new Set(outdatedStacks.map((stack) => stack.Id));
|
||
|
||
setStacks(prev =>
|
||
prev.map(stack =>
|
||
outdatedIds.has(stack.Id)
|
||
? {
|
||
...stack,
|
||
redeployState: REDEPLOY_STATE.QUEUED,
|
||
redeploying: false,
|
||
redeployQueued: true
|
||
}
|
||
: stack
|
||
)
|
||
);
|
||
|
||
try {
|
||
await axios.put("/api/stacks/redeploy-all");
|
||
setSelectedStackIds((prev) => prev.filter((id) => !outdatedIds.has(id)));
|
||
// Statusupdates kommen über Socket.IO
|
||
} catch (err) {
|
||
console.error("❌ Fehler beim Redeploy ALL:", err);
|
||
setStacks(prev =>
|
||
prev.map(stack =>
|
||
outdatedIds.has(stack.Id)
|
||
? {
|
||
...stack,
|
||
redeployState: REDEPLOY_STATE.IDLE,
|
||
redeploying: false,
|
||
redeployQueued: false
|
||
}
|
||
: stack
|
||
)
|
||
);
|
||
}
|
||
};
|
||
|
||
const handleRedeploySelection = async () => {
|
||
if (!selectedStackIds.length) return;
|
||
|
||
const eligibleIds = selectedStackIds.filter((id) => {
|
||
const stack = stacks.find((entry) => entry.Id === id);
|
||
return stack
|
||
&& stack.updateStatus !== "✅"
|
||
&& !stack.redeployDisabled
|
||
&& (stack.redeployState ?? REDEPLOY_STATE.IDLE) === REDEPLOY_STATE.IDLE;
|
||
});
|
||
|
||
if (!eligibleIds.length) {
|
||
setSelectedStackIds([]);
|
||
return;
|
||
}
|
||
|
||
const eligibleSet = new Set(eligibleIds);
|
||
|
||
setStacks(prev =>
|
||
prev.map(stack =>
|
||
eligibleSet.has(stack.Id)
|
||
? {
|
||
...stack,
|
||
redeployState: REDEPLOY_STATE.QUEUED,
|
||
redeploying: false,
|
||
redeployQueued: true
|
||
}
|
||
: stack
|
||
)
|
||
);
|
||
|
||
try {
|
||
await axios.put("/api/stacks/redeploy-selection", { stackIds: eligibleIds });
|
||
setSelectedStackIds((prev) => prev.filter((id) => !eligibleSet.has(id)));
|
||
// Statusupdates kommen über Socket.IO
|
||
} catch (err) {
|
||
console.error("❌ Fehler beim Redeploy Auswahl:", err);
|
||
setStacks(prev =>
|
||
prev.map(stack =>
|
||
eligibleSet.has(stack.Id)
|
||
? {
|
||
...stack,
|
||
redeployState: REDEPLOY_STATE.IDLE,
|
||
redeploying: false,
|
||
redeployQueued: false
|
||
}
|
||
: stack
|
||
)
|
||
);
|
||
}
|
||
};
|
||
|
||
const hasSelection = selectedStackIds.length > 0;
|
||
const hasRedeployableStacks = stacks.some((stack) =>
|
||
stack.updateStatus !== "✅"
|
||
&& !stack.redeployDisabled
|
||
&& (stack.redeployState ?? REDEPLOY_STATE.IDLE) === REDEPLOY_STATE.IDLE
|
||
);
|
||
const bulkButtonLabel = hasSelection
|
||
? `Redeploy Auswahl (${selectedStackIds.length})`
|
||
: "Redeploy All";
|
||
|
||
const bulkActionDisabled = hasSelection
|
||
? selectedStackIds.length === 0 || selectedStackIds.every(id => {
|
||
const targetStack = stacks.find(stack => stack.Id === id);
|
||
return !targetStack
|
||
|| targetStack.updateStatus === "✅"
|
||
|| targetStack.redeployDisabled
|
||
|| (targetStack.redeployState ?? REDEPLOY_STATE.IDLE) !== REDEPLOY_STATE.IDLE;
|
||
})
|
||
: !hasRedeployableStacks;
|
||
|
||
const handleBulkRedeploy = () => {
|
||
if (hasSelection) {
|
||
handleRedeploySelection();
|
||
} else {
|
||
handleRedeployAll();
|
||
}
|
||
};
|
||
|
||
if (loading) return <p className="text-gray-400">Lade Stacks...</p>;
|
||
if (error) return <p className="text-red-400">{error}</p>;
|
||
|
||
return (
|
||
<div className="p-6">
|
||
<div className="flex justify-end mb-4">
|
||
<button
|
||
onClick={handleBulkRedeploy}
|
||
disabled={bulkActionDisabled}
|
||
className={`px-5 py-2 rounded-lg font-medium transition ${bulkActionDisabled ? 'bg-purple-900 cursor-not-allowed text-gray-400' : 'bg-purple-500 hover:bg-purple-600'}`}
|
||
>
|
||
{bulkButtonLabel}
|
||
</button>
|
||
</div>
|
||
|
||
<div className="grid grid-cols-1 md:grid-cols-2 gap-6">
|
||
{stacks.map(stack => {
|
||
const redeployState = stack.redeployState ?? REDEPLOY_STATE.IDLE;
|
||
const isRunning = redeployState === REDEPLOY_STATE.RUNNING;
|
||
const isQueued = redeployState === REDEPLOY_STATE.QUEUED;
|
||
const isBusy = isRunning || isQueued;
|
||
const isSelected = selectedStackIds.includes(stack.Id);
|
||
const isCurrent = stack.updateStatus === "✅";
|
||
const isSelfStack = Boolean(stack.redeployDisabled);
|
||
const isSelectable = !isBusy && !isCurrent && !isSelfStack;
|
||
|
||
return (
|
||
<div
|
||
key={stack.Id}
|
||
className={`flex justify-between items-center p-5 rounded-xl shadow-lg transition border
|
||
${isSelected ? 'border-purple-500 ring-1 ring-purple-500/40' : 'border-transparent'}
|
||
${isBusy ? 'bg-gray-700 cursor-wait' : 'bg-gray-800 hover:bg-gray-700'}
|
||
${!isSelectable && !isBusy ? 'opacity-75' : ''}`}
|
||
>
|
||
<div className="flex items-center space-x-4">
|
||
<input
|
||
type="checkbox"
|
||
checked={isSelected}
|
||
onChange={() => toggleStackSelection(stack.Id, !isSelectable)}
|
||
className={`h-5 w-5 text-purple-500 focus:ring-purple-400 border-gray-600 bg-gray-900 rounded ${!isSelectable ? 'opacity-40 cursor-not-allowed' : ''}`}
|
||
disabled={!isSelectable}
|
||
/>
|
||
<div className={`w-12 h-12 flex items-center justify-center rounded-full
|
||
${stack.updateStatus === "✅" ? 'bg-green-500' :
|
||
stack.updateStatus === "⚠️" ? 'bg-yellow-500' :
|
||
'bg-red-500'}`}
|
||
/>
|
||
<div>
|
||
<p className="text-lg font-semibold text-white">{stack.Name}</p>
|
||
<p className="text-sm text-gray-400">ID: {stack.Id}</p>
|
||
{stack.duplicateName && (
|
||
<p className="text-xs text-amber-300">⚠️ Doppelter Name erkannt</p>
|
||
)}
|
||
</div>
|
||
</div>
|
||
|
||
<div className="flex flex-col items-end gap-1 text-sm">
|
||
{isRunning ? (
|
||
<>
|
||
<span className="text-xs uppercase tracking-wide text-orange-300">Redeploy</span>
|
||
<span className="text-orange-200">läuft…</span>
|
||
</>
|
||
) : isQueued ? (
|
||
<>
|
||
<span className="text-xs uppercase tracking-wide text-orange-300">Redeploy</span>
|
||
<span className="text-orange-200">in Warteliste…</span>
|
||
</>
|
||
) : isSelfStack ? (
|
||
<>
|
||
<span className="text-xs uppercase tracking-wide text-gray-400">System</span>
|
||
<span className="text-gray-300">Redeploy deaktiviert</span>
|
||
</>
|
||
) : isCurrent ? (
|
||
<>
|
||
<span className="text-xs uppercase tracking-wide text-gray-400">Status</span>
|
||
<span className="text-green-300">Aktuell</span>
|
||
</>
|
||
) : (
|
||
<>
|
||
<button
|
||
onClick={() => handleRedeploy(stack.Id)}
|
||
disabled={isBusy}
|
||
className="px-5 py-2 rounded-lg font-medium transition bg-blue-500 hover:bg-blue-600"
|
||
>
|
||
Redeploy
|
||
</button>
|
||
</>
|
||
)}
|
||
</div>
|
||
</div>
|
||
);
|
||
})}
|
||
{stacks.length === 0 && <p className="text-gray-400">Keine Stacks gefunden.</p>}
|
||
</div>
|
||
</div>
|
||
);
|
||
}
|