Phase A — HTML removed from PHP files: - RateLimitMiddleware.php: heredoc moved to views/errors/429.php - public/index.php: inline HTML replaced with View::error() - AuthMiddleware.php: <script> redirect replaced with <meta refresh> Phase B — Inline CSS/JS extracted from views: - CSS: landing.css (459 lines), legal.css (shared by terms+privacy) - JS: 17 new files extracted from ~20 view files - main.js (layout sidebar + notifications) - dashboard-chart.js, server-show.js, server-services.js - nginx-manager.js, database-manager.js - terminal.js, team-show.js, team-index.js - server-list.js, server-permissions.js (shared by edit+create) - server-ssl.js, server-processes.js, system-users.js - admin-users.js, audit-log.js, admin-notifications.js, admin-security.js - notifications.js Total: -3264 lines from views, +288 lines in new assets
137 lines
4.7 KiB
JavaScript
137 lines
4.7 KiB
JavaScript
let aggregatedChart = null;
|
|
|
|
function initAggregatedChart(data) {
|
|
const container = document.getElementById('aggregatedChart').parentNode;
|
|
const oldCanvas = document.getElementById('aggregatedChart');
|
|
const newCanvas = document.createElement('canvas');
|
|
newCanvas.id = 'aggregatedChart';
|
|
newCanvas.height = 300;
|
|
container.replaceChild(newCanvas, oldCanvas);
|
|
const ctx = newCanvas.getContext('2d');
|
|
const labels = data.map(m => {
|
|
const d = new Date(m.time_bucket);
|
|
return d.getHours().toString().padStart(2, '0') + ':' + d.getMinutes().toString().padStart(2, '0');
|
|
});
|
|
|
|
aggregatedChart = new Chart(ctx, {
|
|
type: 'line',
|
|
data: {
|
|
labels: labels,
|
|
datasets: [
|
|
{
|
|
label: 'CPU',
|
|
data: data.map(m => parseFloat(m.avg_cpu)),
|
|
borderColor: '#3b82f6',
|
|
backgroundColor: 'rgba(59, 130, 246, 0.1)',
|
|
fill: true,
|
|
tension: 0.3,
|
|
pointRadius: 1,
|
|
},
|
|
{
|
|
label: 'RAM',
|
|
data: data.map(m => parseFloat(m.avg_ram)),
|
|
borderColor: '#22c55e',
|
|
backgroundColor: 'rgba(34, 197, 94, 0.1)',
|
|
fill: true,
|
|
tension: 0.3,
|
|
pointRadius: 1,
|
|
},
|
|
{
|
|
label: 'Disk',
|
|
data: data.map(m => parseFloat(m.avg_disk)),
|
|
borderColor: '#8b5cf6',
|
|
backgroundColor: 'rgba(139, 92, 246, 0.1)',
|
|
fill: true,
|
|
tension: 0.3,
|
|
pointRadius: 1,
|
|
},
|
|
],
|
|
},
|
|
options: {
|
|
responsive: true,
|
|
maintainAspectRatio: false,
|
|
interaction: {
|
|
intersect: false,
|
|
mode: 'index',
|
|
},
|
|
plugins: {
|
|
legend: {
|
|
labels: {
|
|
color: '#9ca3af',
|
|
font: { family: "'Inter', sans-serif" },
|
|
boxWidth: 12,
|
|
padding: 16,
|
|
},
|
|
},
|
|
tooltip: {
|
|
backgroundColor: '#1a1d2b',
|
|
borderColor: '#2a2d3d',
|
|
borderWidth: 1,
|
|
titleColor: '#e1e4ed',
|
|
bodyColor: '#9ca3af',
|
|
padding: 10,
|
|
cornerRadius: 8,
|
|
callbacks: {
|
|
label: function(ctx) {
|
|
return ctx.dataset.label + ': ' + ctx.parsed.y.toFixed(1) + '%';
|
|
},
|
|
},
|
|
},
|
|
},
|
|
scales: {
|
|
x: {
|
|
ticks: {
|
|
color: '#6b7280',
|
|
maxTicksLimit: 12,
|
|
font: { size: 11 },
|
|
},
|
|
grid: {
|
|
color: 'rgba(255,255,255,0.04)',
|
|
},
|
|
},
|
|
y: {
|
|
min: 0,
|
|
max: 100,
|
|
ticks: {
|
|
color: '#6b7280',
|
|
font: { size: 11 },
|
|
callback: function(v) { return v + '%'; },
|
|
},
|
|
grid: {
|
|
color: 'rgba(255,255,255,0.04)',
|
|
},
|
|
},
|
|
},
|
|
},
|
|
});
|
|
}
|
|
|
|
function refreshAggregatedChart() {
|
|
fetch('/dashboard/chart-data')
|
|
.then(r => r.json())
|
|
.then(response => {
|
|
if (response.success && response.data) {
|
|
const data = response.data;
|
|
const labels = data.map(m => {
|
|
const d = new Date(m.time_bucket);
|
|
return d.getHours().toString().padStart(2, '0') + ':' + d.getMinutes().toString().padStart(2, '0');
|
|
});
|
|
if (aggregatedChart) {
|
|
aggregatedChart.data.labels = labels;
|
|
aggregatedChart.data.datasets[0].data = data.map(m => parseFloat(m.avg_cpu));
|
|
aggregatedChart.data.datasets[1].data = data.map(m => parseFloat(m.avg_ram));
|
|
aggregatedChart.data.datasets[2].data = data.map(m => parseFloat(m.avg_disk));
|
|
aggregatedChart.update('none');
|
|
} else if (data.length > 0) {
|
|
initAggregatedChart(data);
|
|
}
|
|
}
|
|
});
|
|
}
|
|
|
|
if (aggregatedData.length > 0) {
|
|
initAggregatedChart(aggregatedData);
|
|
}
|
|
|
|
setInterval(refreshAggregatedChart, 30000);
|