feat: show member details

This commit is contained in:
2025-08-24 21:20:18 +02:00
parent 4ab19e9ded
commit a437fb0eea
3 changed files with 249 additions and 12 deletions

View File

@@ -4,4 +4,5 @@
- [x] bootstrap an express.js app that serves a simple html page
- [x] generate js client from api/openapi.yaml
- [x] use getClusterStatus client function to get all members and display these members on the html page, use only vanilla JS
- [x] use getClusterStatus client function to get all members and display these members on the html page, use only vanilla JS
- [x] when clicking on one of the members in the UI, it should expand and display all informations from /api/node/status

View File

@@ -58,6 +58,25 @@ app.get('/api/node/status', async (req, res) => {
}
});
// Proxy endpoint to get status from a specific node
app.get('/api/node/status/:ip', async (req, res) => {
try {
const nodeIp = req.params.ip;
// Create a temporary client for the specific node
const nodeClient = new SporeApiClient(`http://${nodeIp}`);
const nodeStatus = await nodeClient.getSystemStatus();
res.json(nodeStatus);
} catch (error) {
console.error(`Error fetching status from node ${req.params.ip}:`, error);
res.status(500).json({
error: `Failed to fetch status from node ${req.params.ip}`,
message: error.message
});
}
});
// Start the server
app.listen(PORT, () => {
console.log(`Server is running on http://localhost:${PORT}`);

View File

@@ -105,6 +105,7 @@
border-radius: 12px;
padding: 1.5rem;
transition: all 0.3s ease;
cursor: pointer;
}
.member-card:hover {
@@ -112,6 +113,102 @@
box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}
.member-card.expanded {
background: rgba(255, 255, 255, 0.15);
border-color: rgba(255, 255, 255, 0.4);
box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
transform: scale(1.02);
}
.member-card.expanded:hover {
transform: none;
}
.member-card.expanded .expand-icon {
transform: rotate(180deg);
}
.member-header {
display: flex;
justify-content: space-between;
align-items: flex-start;
margin-bottom: 1rem;
}
.member-info {
flex: 1;
}
.expand-icon {
font-size: 1.2rem;
opacity: 0.7;
transition: transform 0.3s ease;
}
.member-card.expanded .expand-icon {
transform: rotate(180deg);
}
.member-details {
display: none;
opacity: 0;
margin-top: 0;
padding-top: 0;
border-top: 1px solid transparent;
transition: opacity 0.3s ease;
}
.member-card.expanded .member-details {
display: block;
opacity: 1;
margin-top: 1rem;
padding-top: 1rem;
border-top: 1px solid rgba(255, 255, 255, 0.2);
}
.detail-row {
display: flex;
justify-content: space-between;
margin-bottom: 0.5rem;
font-size: 0.9rem;
}
.detail-label {
opacity: 0.7;
font-weight: 500;
}
.detail-value {
font-family: 'Courier New', monospace;
opacity: 0.9;
}
.api-endpoints {
margin-top: 1rem;
}
.api-endpoints h4 {
margin-bottom: 0.5rem;
font-size: 0.9rem;
opacity: 0.8;
}
.endpoint-item {
background: rgba(255, 255, 255, 0.1);
padding: 0.5rem;
border-radius: 6px;
margin-bottom: 0.5rem;
font-size: 0.8rem;
font-family: 'Courier New', monospace;
}
.loading-details {
text-align: center;
padding: 1rem;
opacity: 0.7;
font-size: 0.9rem;
}
.member-name {
font-size: 1.2rem;
font-weight: 600;
@@ -196,6 +293,7 @@
<div>Loading cluster members...</div>
</div>
</div>
</div>
</div>
@@ -224,6 +322,26 @@
throw new Error(`Request failed: ${error.message}`);
}
}
async getNodeStatus(ip) {
try {
// Create a proxy endpoint that forwards the request to the specific node
const response = await fetch(`/api/node/status/${encodeURIComponent(ip)}`, {
method: 'GET',
headers: {
'Accept': 'application/json'
}
});
if (!response.ok) {
throw new Error(`HTTP ${response.status}: ${response.statusText}`);
}
return await response.json();
} catch (error) {
throw new Error(`Request failed: ${error.message}`);
}
}
}
// Global client instance
@@ -255,6 +373,60 @@
}
}
// Function to load detailed node information
async function loadNodeDetails(card, memberIp) {
console.log('Loading node details for IP:', memberIp);
const memberDetails = card.querySelector('.member-details');
console.log('Member details element:', memberDetails);
try {
console.log('Fetching node status...');
const nodeStatus = await client.getNodeStatus(memberIp);
console.log('Node status received:', nodeStatus);
displayNodeDetails(memberDetails, nodeStatus);
} catch (error) {
console.error('Failed to load node details:', error);
memberDetails.innerHTML = `
<div class="error">
<strong>Error loading node details:</strong><br>
${error.message}
</div>
`;
}
}
// Function to display node details
function displayNodeDetails(container, nodeStatus) {
container.innerHTML = `
<div class="detail-row">
<span class="detail-label">Free Heap:</span>
<span class="detail-value">${Math.round(nodeStatus.freeHeap / 1024)}KB</span>
</div>
<div class="detail-row">
<span class="detail-label">Chip ID:</span>
<span class="detail-value">${nodeStatus.chipId}</span>
</div>
<div class="detail-row">
<span class="detail-label">SDK Version:</span>
<span class="detail-value">${nodeStatus.sdkVersion}</span>
</div>
<div class="detail-row">
<span class="detail-label">CPU Frequency:</span>
<span class="detail-value">${nodeStatus.cpuFreqMHz}MHz</span>
</div>
<div class="detail-row">
<span class="detail-label">Flash Size:</span>
<span class="detail-value">${Math.round(nodeStatus.flashChipSize / 1024)}KB</span>
</div>
<div class="api-endpoints">
<h4>Available API Endpoints:</h4>
${nodeStatus.api ? nodeStatus.api.map(endpoint =>
`<div class="endpoint-item">${endpoint.method === 1 ? 'GET' : 'POST'} ${endpoint.uri}</div>`
).join('') : '<div class="endpoint-item">No API endpoints available</div>'}
</div>
`;
}
// Function to display cluster members
function displayClusterMembers(members) {
const container = document.getElementById('cluster-members-container');
@@ -278,29 +450,74 @@
const statusIcon = member.status === 'active' ? '🟢' : '🔴';
return `
<div class="member-card">
<div class="member-name">${member.hostname || 'Unknown Device'}</div>
<div class="member-ip">${member.ip || 'No IP'}</div>
<div class="member-status ${statusClass}">
${statusIcon} ${statusText}
<div class="member-card" data-member-ip="${member.ip}">
<div class="member-header">
<div class="member-info">
<div class="member-name">${member.hostname || 'Unknown Device'}</div>
<div class="member-ip">${member.ip || 'No IP'}</div>
<div class="member-status ${statusClass}">
${statusIcon} ${statusText}
</div>
</div>
<div class="expand-icon">▶️</div>
</div>
<div style="font-size: 0.8rem; opacity: 0.7; margin-top: 0.5rem;">
Latency: ${member.latency}ms | Heap: ${Math.round(member.resources?.freeHeap / 1024)}KB
<div class="member-details">
<div class="loading-details">Loading detailed information...</div>
</div>
</div>
`;
}).join('');
container.innerHTML = membersHTML;
}
// Add event listeners for expand/collapse
console.log('Setting up event listeners for', members.length, 'member cards');
// Small delay to ensure DOM is ready
setTimeout(() => {
document.querySelectorAll('.member-card').forEach((card, index) => {
const expandIcon = card.querySelector('.expand-icon');
const memberDetails = card.querySelector('.member-details');
const memberIp = card.dataset.memberIp;
console.log(`Setting up card ${index} with IP: ${memberIp}`);
if (expandIcon) {
expandIcon.addEventListener('click', async (e) => {
e.stopPropagation();
console.log('Expand icon clicked for IP:', memberIp);
const isExpanding = !card.classList.contains('expanded');
console.log('Is expanding:', isExpanding);
if (isExpanding) {
// Expanding - fetch detailed status
console.log('Starting to expand...');
await loadNodeDetails(card, memberIp);
card.classList.add('expanded');
expandIcon.classList.add('expanded');
console.log('Card expanded successfully');
} else {
// Collapsing
console.log('Collapsing...');
card.classList.remove('expanded');
expandIcon.classList.remove('expanded');
console.log('Card collapsed successfully');
}
});
console.log(`Event listener added for card ${index}`);
} else {
console.error(`No expand icon found for card ${index}`);
}
});
}, 100);
}
// Load cluster members when page loads
document.addEventListener('DOMContentLoaded', function() {
refreshClusterMembers();
});
// Auto-refresh every 30 seconds
setInterval(refreshClusterMembers, 30000);
</script>
</body>
</html>