feat: implement firmware page functionality to update specific or all nodes

This commit is contained in:
2025-08-26 12:30:23 +02:00
parent ff43eddd27
commit d712206377
2 changed files with 506 additions and 16 deletions

View File

@@ -1103,4 +1103,246 @@ p {
padding: 0.2rem;
margin-top: 0.5rem;
}
}
/* Firmware upload progress and results styling */
.firmware-upload-progress,
.firmware-upload-results {
background: rgba(0, 0, 0, 0.3);
border-radius: 16px;
backdrop-filter: blur(10px);
box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
border: 1px solid rgba(255, 255, 255, 0.1);
padding: 1.5rem;
margin-top: 1rem;
}
.progress-header,
.results-header {
margin-bottom: 1.5rem;
padding-bottom: 1rem;
border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.progress-header h3,
.results-header h3 {
margin: 0 0 0.5rem 0;
color: #ecf0f1;
font-size: 1.2rem;
font-weight: 600;
}
.progress-info,
.results-summary {
display: flex;
gap: 1rem;
flex-wrap: wrap;
font-size: 0.9rem;
color: rgba(255, 255, 255, 0.7);
}
.progress-info span,
.results-summary span {
padding: 0.25rem 0.5rem;
background: rgba(255, 255, 255, 0.05);
border-radius: 6px;
border: 1px solid rgba(255, 255, 255, 0.1);
}
.overall-progress {
display: flex;
align-items: center;
gap: 1rem;
margin-top: 1rem;
}
.progress-bar-container {
flex: 1;
height: 8px;
background: rgba(255, 255, 255, 0.1);
border-radius: 4px;
overflow: hidden;
}
.progress-bar {
height: 100%;
background: #fbbf24;
border-radius: 4px;
transition: width 0.3s ease, background-color 0.3s ease;
width: 0%;
}
.progress-text {
font-size: 0.9rem;
color: rgba(255, 255, 255, 0.8);
font-weight: 500;
min-width: 80px;
text-align: right;
}
.success-count {
color: #4ade80 !important;
border-color: rgba(74, 222, 128, 0.3) !important;
}
.failure-count {
color: #f87171 !important;
border-color: rgba(248, 113, 113, 0.3) !important;
}
.total-count {
color: #60a5fa !important;
border-color: rgba(96, 165, 250, 0.3) !important;
}
.progress-list,
.results-list {
display: flex;
flex-direction: column;
gap: 0.75rem;
}
.progress-item,
.result-item {
display: flex;
justify-content: space-between;
align-items: center;
padding: 1rem;
background: rgba(255, 255, 255, 0.05);
border-radius: 12px;
border: 1px solid rgba(255, 255, 255, 0.1);
transition: all 0.3s ease;
}
.progress-item:hover,
.result-item:hover {
background: rgba(255, 255, 255, 0.08);
border-color: rgba(255, 255, 255, 0.15);
}
.progress-node-info,
.result-node-info {
display: flex;
flex-direction: column;
gap: 0.25rem;
}
.node-name {
font-weight: 600;
color: #ecf0f1;
}
.node-ip {
font-size: 0.85rem;
color: rgba(255, 255, 255, 0.6);
font-family: 'Monaco', 'Menlo', 'Ubuntu Mono', monospace;
}
.progress-status,
.result-status {
font-weight: 600;
padding: 0.5rem 1rem;
border-radius: 8px;
font-size: 0.9rem;
min-width: 100px;
text-align: center;
}
.progress-time {
font-size: 0.8rem;
color: rgba(255, 255, 255, 0.5);
min-width: 120px;
text-align: right;
}
.progress-status.success,
.result-status.success {
background: rgba(74, 222, 128, 0.1);
color: #4ade80;
border: 1px solid rgba(74, 222, 128, 0.2);
}
.progress-status.error,
.result-status.error {
background: rgba(248, 113, 113, 0.1);
color: #f87171;
border: 1px solid rgba(248, 113, 113, 0.2);
}
.progress-status.uploading {
background: rgba(251, 191, 36, 0.1);
color: #fbbf24;
border: 1px solid rgba(251, 191, 36, 0.2);
animation: pulse 1.5s ease-in-out infinite alternate;
}
.result-details {
font-size: 0.85rem;
color: rgba(255, 255, 255, 0.7);
max-width: 300px;
text-align: right;
}
.results-actions {
display: flex;
gap: 1rem;
margin-top: 1.5rem;
padding-top: 1rem;
border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.clear-btn,
.refresh-btn {
background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
border: 1px solid rgba(255, 255, 255, 0.15);
color: rgba(255, 255, 255, 0.9);
padding: 0.75rem 1.25rem;
border-radius: 12px;
cursor: pointer;
font-size: 0.9rem;
font-weight: 500;
transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.clear-btn:hover,
.refresh-btn:hover {
background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.08) 100%);
border-color: rgba(255, 255, 255, 0.25);
transform: translateY(-2px);
box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}
.clear-btn:active,
.refresh-btn:active {
transform: translateY(0);
}
/* Responsive design for progress and results */
@media (max-width: 768px) {
.progress-item,
.result-item {
flex-direction: column;
align-items: flex-start;
gap: 0.75rem;
}
.progress-status,
.result-status {
align-self: flex-end;
}
.result-details {
text-align: left;
max-width: none;
}
.progress-info,
.results-summary {
flex-direction: column;
gap: 0.5rem;
}
.results-actions {
flex-direction: column;
}
}