Files
automatic/ui/history.ts
T
2026-05-20 18:08:10 +02:00

84 lines
2.9 KiB
TypeScript

import { Timesheet } from './timesheet';
import { log } from './logger';
import { authFetch } from './authWrap';
interface HistoryEntry {
timestamp: number;
id: string;
job: string;
op: string;
duration?: number;
outputs: string[];
type?: 'inference' | 'io' | 'default';
}
interface TimelineEntry {
start: number;
end: number;
label: string;
type: 'inference' | 'io' | 'default';
}
const inferenceTypes = ['inference', 'vae', 'te'];
const ioTypes = ['load', 'save'];
export function refreshHistory() {
log('refreshHistory');
authFetch(`${window.api}/history`, { priority: 'low' }).then((res) => {
if (!res) return;
const timeline = document.getElementById('history_timeline');
const table = document.getElementById('history_table');
if (!timeline || !table) return;
timeline.innerHTML = '';
res.json().then((rawData) => {
let data = rawData as HistoryEntry[];
if (!data || !data.length) {
table.innerHTML = '<p>No history data available.</p>';
return;
}
// build table
let html = '<table><thead><tr><th>Time</th><th>ID</th><th>Job</th><th>Action</th><th>Duration</th><th>Outputs</th></tr></thead><tbody>';
for (const entry of data) {
const ts = new Date(1000 * entry.timestamp).toLocaleString();
const duration = entry.duration ? (entry.duration).toFixed(3) : '';
const outputs = entry.outputs.join(', ');
html += `<tr><td>${ts}</td><td>${entry.id}</td><td>${entry.job}</td><td>${entry.op}</td><td>${duration}</td><td>${outputs}</td></tr>`;
}
html += '</tbody></table>';
table.innerHTML = html;
// crop data to last processing session
let startIdx = -1;
for (let i = data.length - 1; i >= 0; --i) {
const e = data[i];
if ((e.job === 'control' || e.job === 'text' || e.job === 'control' || e.job === 'image') && (e.op === 'begin')) {
startIdx = i;
break;
}
}
if (startIdx >= 0) data = data.slice(startIdx);
// build timeline
const ts: TimelineEntry[] = [];
for (const entry of data) {
if (entry.op === 'begin') {
const start = entry.timestamp;
const endEntry = data.find((e) => (e.id === entry.id && e.op === 'end'));
const end = endEntry?.timestamp ?? data[data.length - 1].timestamp;
if (end - start < 0.02) continue; // skip very short entries
if (inferenceTypes.some((type) => entry.job.toLowerCase().startsWith(type))) entry.type = 'inference';
else if (ioTypes.some((type) => entry.job.toLowerCase().startsWith(type))) entry.type = 'io';
else entry.type = 'default';
if (start && end) ts.push({ start, end, label: entry.job, type: entry.type });
}
}
if (!ts.length) return;
// eslint-disable-next-line no-new
new Timesheet(timeline, ts);
});
});
}
window.refreshHistory = refreshHistory;