273 lines
9.0 KiB
JavaScript
273 lines
9.0 KiB
JavaScript
export function createIniPanelStateSummary({
|
|
badges = {},
|
|
machine = null,
|
|
machineFiles = null,
|
|
sessionSnapshot = null,
|
|
sessionReadiness = null,
|
|
sessionLoad = null,
|
|
runReadiness = null,
|
|
run = null,
|
|
fiveaxisRemap = null,
|
|
} = {}) {
|
|
return {
|
|
badges: {
|
|
ini: badges.ini ?? null,
|
|
interp: badges.interp ?? null,
|
|
opfs: badges.opfs ?? null,
|
|
},
|
|
machine,
|
|
machineFiles,
|
|
sessionSnapshot,
|
|
sessionReadiness,
|
|
sessionLoad,
|
|
runReadiness,
|
|
run,
|
|
fiveaxisRemap: fiveaxisRemap ?? null,
|
|
};
|
|
}
|
|
|
|
export function createMachineSessionStateSnapshot({
|
|
badges = {},
|
|
machine = null,
|
|
machineFiles = null,
|
|
sessionSnapshot = null,
|
|
sessionReadiness = null,
|
|
sessionLoad = null,
|
|
runReadiness = null,
|
|
selectedProgram = null,
|
|
run = null,
|
|
fields = {},
|
|
lastAction = null,
|
|
error = null,
|
|
fiveaxisRemap = null,
|
|
} = {}) {
|
|
return {
|
|
...createIniPanelStateSummary({
|
|
badges,
|
|
machine,
|
|
machineFiles,
|
|
sessionSnapshot,
|
|
sessionReadiness,
|
|
sessionLoad,
|
|
runReadiness,
|
|
run,
|
|
fiveaxisRemap,
|
|
}),
|
|
selectedProgram,
|
|
fields: {
|
|
sessionIni: fields.sessionIni ?? null,
|
|
sessionParameters: fields.sessionParameters ?? null,
|
|
sessionToolTable: fields.sessionToolTable ?? null,
|
|
sessionGcode: fields.sessionGcode ?? null,
|
|
sessionSnapshot: fields.sessionSnapshot ?? null,
|
|
runStatus: fields.runStatus ?? null,
|
|
runSource: fields.runSource ?? null,
|
|
runSnapshot: fields.runSnapshot ?? null,
|
|
runWorkflow: fields.runWorkflow ?? null,
|
|
runOpfsPath: fields.runOpfsPath ?? null,
|
|
runWasmPath: fields.runWasmPath ?? null,
|
|
},
|
|
lastAction: lastAction ?? null,
|
|
error: error ?? null,
|
|
};
|
|
}
|
|
|
|
export function createMachineSessionStateReport(state = {}) {
|
|
const badges = state.badges ?? {};
|
|
const fields = state.fields ?? {};
|
|
const sessionSnapshot = state.sessionSnapshot ?? {};
|
|
const sessionReadiness = state.sessionReadiness ?? null;
|
|
const sessionLoad = state.sessionLoad ?? {};
|
|
const runReadiness = state.runReadiness ?? {};
|
|
const selectedProgram = state.selectedProgram ?? {};
|
|
const run = state.run ?? {};
|
|
return {
|
|
readiness: {
|
|
ini: badges.ini ?? null,
|
|
interp: badges.interp ?? null,
|
|
opfs: badges.opfs ?? null,
|
|
},
|
|
session: {
|
|
snapshotLabel: sessionSnapshot.snapshotLabel ?? fields.sessionSnapshot ?? null,
|
|
workflow: sessionSnapshot.workflow ?? fields.runWorkflow ?? null,
|
|
ini: fields.sessionIni ?? sessionSnapshot.iniOpfsPath ?? sessionLoad.iniWasmPath ?? null,
|
|
parameters: fields.sessionParameters ?? sessionSnapshot.parameterOpfsPath ?? sessionLoad.parameterWasmPath ?? null,
|
|
toolTable: fields.sessionToolTable ?? sessionSnapshot.toolTableOpfsPath ?? sessionLoad.toolTableWasmPath ?? null,
|
|
gcode: fields.sessionGcode ?? sessionSnapshot.gcodeOpfsPath ?? null,
|
|
},
|
|
sessionReadiness,
|
|
loaded: {
|
|
iniWasmPath: sessionLoad.iniWasmPath ?? null,
|
|
parameterWasmPath: sessionLoad.parameterWasmPath ?? null,
|
|
toolTableWasmPath: sessionLoad.toolTableWasmPath ?? null,
|
|
},
|
|
program: {
|
|
source: selectedProgram.source ?? run.programSource ?? fields.runSource ?? null,
|
|
opfsPath: selectedProgram.opfsPath ?? run.programOpfsPath ?? fields.runOpfsPath ?? null,
|
|
wasmPath: selectedProgram.wasmPath ?? run.programWasmPath ?? fields.runWasmPath ?? null,
|
|
},
|
|
runReadiness: {
|
|
phase: runReadiness.phase ?? null,
|
|
canRun: Boolean(runReadiness.canRun),
|
|
missing: Array.isArray(runReadiness.missing) ? runReadiness.missing : [],
|
|
buttonEnabled: Boolean(runReadiness.runButton?.enabled),
|
|
buttonReason: runReadiness.runButton?.reason ?? null,
|
|
programSource: runReadiness.program?.source ?? null,
|
|
programOpfsPath: runReadiness.program?.opfsPath ?? null,
|
|
programWasmPath: runReadiness.program?.wasmPath ?? null,
|
|
iniWasmPath: runReadiness.loadedSession?.iniWasmPath ?? null,
|
|
},
|
|
run: {
|
|
status: run.runStatus ?? fields.runStatus ?? null,
|
|
canonicalEventCount: run.canonicalEventCount ?? 0,
|
|
motionSnapshotCount: run.motionSnapshotCount ?? 0,
|
|
iniWasmPath: run.iniWasmPath ?? null,
|
|
},
|
|
status: {
|
|
lastAction: state.lastAction ?? null,
|
|
error: state.error ?? null,
|
|
fiveaxisRemap: state.fiveaxisRemap ?? null,
|
|
},
|
|
};
|
|
}
|
|
|
|
export function createMachineSessionStateReportExport(state = {}, options = {}) {
|
|
const report = createMachineSessionStateReport(state);
|
|
return {
|
|
filename: options.filename ?? "machine-session-state-report.json",
|
|
mediaType: "application/json",
|
|
report,
|
|
text: `${JSON.stringify(report, null, 2)}\n`,
|
|
};
|
|
}
|
|
|
|
export function createMachineSessionWorkflowStatus(state = {}) {
|
|
const report = createMachineSessionStateReport(state);
|
|
const overview = createMachineSessionWorkflowOverview(report);
|
|
return {
|
|
readiness: report.readiness,
|
|
overview,
|
|
sessionReadiness: report.sessionReadiness ?? null,
|
|
runReadiness: report.runReadiness,
|
|
lastAction: report.status.lastAction,
|
|
error: report.status.error,
|
|
session: report.session,
|
|
run: report.run,
|
|
};
|
|
}
|
|
|
|
export function createMachineSessionWorkflowOverview(report = {}) {
|
|
const readiness = report.readiness ?? {};
|
|
const loaded = report.loaded ?? {};
|
|
const session = report.session ?? {};
|
|
const runReadiness = report.runReadiness ?? {};
|
|
const run = report.run ?? {};
|
|
const status = report.status ?? {};
|
|
const loadedIniWasmPath = loaded.iniWasmPath ?? runReadiness.iniWasmPath ?? null;
|
|
const missing = [];
|
|
if (!loadedIniWasmPath) {
|
|
missing.push("loaded-session");
|
|
}
|
|
if (!session.snapshotLabel) {
|
|
missing.push("session-snapshot");
|
|
}
|
|
if (!runReadiness.canRun) {
|
|
missing.push("run-readiness");
|
|
}
|
|
return {
|
|
phase: run.status ? "ran" : (missing.length === 0 ? "ready" : "waiting"),
|
|
missing,
|
|
readiness,
|
|
session: {
|
|
snapshotLabel: session.snapshotLabel ?? null,
|
|
workflow: session.workflow ?? null,
|
|
ini: session.ini ?? null,
|
|
gcode: session.gcode ?? null,
|
|
},
|
|
loaded,
|
|
runReadiness,
|
|
run: {
|
|
status: run.status ?? null,
|
|
canonicalEventCount: run.canonicalEventCount ?? 0,
|
|
motionSnapshotCount: run.motionSnapshotCount ?? 0,
|
|
iniWasmPath: run.iniWasmPath ?? null,
|
|
},
|
|
status: {
|
|
lastAction: status.lastAction ?? null,
|
|
error: status.error ?? null,
|
|
},
|
|
};
|
|
}
|
|
|
|
export function createMachineSessionStateBundle(state = {}, options = {}) {
|
|
const report = createMachineSessionStateReport(state);
|
|
const exportPayload = createMachineSessionStateReportExport(state, options);
|
|
const workflowStatus = createMachineSessionWorkflowStatus(state);
|
|
const overview = createMachineSessionWorkflowOverview(report);
|
|
return {
|
|
report,
|
|
overview,
|
|
export: exportPayload,
|
|
workflowStatus,
|
|
};
|
|
}
|
|
|
|
export function createMachineSessionControlView(bundle = {}) {
|
|
const report = bundle.report ?? {};
|
|
const workflowStatus = bundle.workflowStatus ?? {};
|
|
const overview = bundle.overview ?? workflowStatus.overview ?? {};
|
|
const session = workflowStatus.session ?? report.session ?? {};
|
|
const runReadiness = workflowStatus.runReadiness ?? report.runReadiness ?? {};
|
|
const run = workflowStatus.run ?? report.run ?? {};
|
|
return {
|
|
status: {
|
|
lastAction: workflowStatus.lastAction ?? report.status?.lastAction ?? null,
|
|
error: workflowStatus.error ?? report.status?.error ?? null,
|
|
runStatus: run.status ?? null,
|
|
},
|
|
sections: [
|
|
{
|
|
id: "readiness",
|
|
title: "Readiness",
|
|
rows: [
|
|
{ label: "INI", value: workflowStatus.readiness?.ini ?? report.readiness?.ini ?? null },
|
|
{ label: "Interpreter", value: workflowStatus.readiness?.interp ?? report.readiness?.interp ?? null },
|
|
{ label: "OPFS", value: workflowStatus.readiness?.opfs ?? report.readiness?.opfs ?? null },
|
|
],
|
|
},
|
|
{
|
|
id: "session",
|
|
title: "Session",
|
|
rows: [
|
|
{ label: "Snapshot", value: session.snapshotLabel ?? null },
|
|
{ label: "Workflow", value: session.workflow ?? null },
|
|
{ label: "INI", value: session.ini ?? null },
|
|
{ label: "G-code", value: session.gcode ?? null },
|
|
],
|
|
},
|
|
{
|
|
id: "workflow",
|
|
title: "Workflow",
|
|
rows: [
|
|
{ label: "Phase", value: overview.phase ?? null },
|
|
{ label: "Missing", value: overview.missing?.join(", ") || null },
|
|
{ label: "Last action", value: overview.status?.lastAction ?? null },
|
|
{ label: "Error", value: overview.status?.error ?? null },
|
|
],
|
|
},
|
|
{
|
|
id: "run",
|
|
title: "Run",
|
|
rows: [
|
|
{ label: "Ready", value: runReadiness.phase ?? null },
|
|
{ label: "Button", value: runReadiness.buttonEnabled ? "enabled" : "disabled" },
|
|
{ label: "Status", value: run.status ?? null },
|
|
{ label: "Canonical events", value: run.canonicalEventCount ?? 0 },
|
|
{ label: "Motion snapshots", value: run.motionSnapshotCount ?? 0 },
|
|
{ label: "INI WASM", value: run.iniWasmPath ?? null },
|
|
],
|
|
},
|
|
],
|
|
};
|
|
}
|