推进 INI 面板 control view helper
This commit is contained in:
@@ -22,6 +22,7 @@ For control-page polling, use
|
||||
`window.linuxCncIniPanelApi.getMachineSessionWorkflowStatus()`. It returns a
|
||||
smaller workflow-facing object derived from the same report data.
|
||||
For a single read call, use `window.linuxCncIniPanelApi.getMachineSessionStateBundle()`.
|
||||
For direct rendering, use `window.linuxCncIniPanelApi.getMachineSessionControlView()`.
|
||||
|
||||
## `createIniPanelStateSummary(input)`
|
||||
|
||||
@@ -142,6 +143,24 @@ It is the preferred single-entry helper for control-page polling and other
|
||||
upper-level UI consumers that want one stable read instead of stitching the
|
||||
three views together themselves.
|
||||
|
||||
## `createMachineSessionControlView(bundle)`
|
||||
|
||||
This helper maps a bundle into UI-ready status and sections:
|
||||
|
||||
```js
|
||||
{
|
||||
status: { lastAction: "run-gcode", error: null, runStatus: "ok" },
|
||||
sections: [
|
||||
{ id: "readiness", title: "Readiness", rows: [{ label: "INI", value: "..." }] },
|
||||
{ id: "session", title: "Session", rows: [{ label: "Workflow", value: "..." }] },
|
||||
{ id: "run", title: "Run", rows: [{ label: "Canonical events", value: 2 }] }
|
||||
]
|
||||
}
|
||||
```
|
||||
|
||||
It is a presentation mapping over the bundle only. It does not parse G-code,
|
||||
canonical events, or LinuxCNC-owned runtime content.
|
||||
|
||||
## Boundary Rules
|
||||
|
||||
- Do not parse G-code text in this helper.
|
||||
|
||||
@@ -46,6 +46,7 @@ import {
|
||||
saveMachineSessionSnapshotWorkflow,
|
||||
} from "./session-workflow.js";
|
||||
import {
|
||||
createMachineSessionControlView,
|
||||
createMachineSessionStateSnapshot,
|
||||
createMachineSessionStateBundle,
|
||||
createMachineSessionStateReport,
|
||||
@@ -171,6 +172,10 @@ function getMachineSessionStateBundle() {
|
||||
return createMachineSessionStateBundle(window.linuxCncIniPanelMachineSessionState);
|
||||
}
|
||||
|
||||
function getMachineSessionControlView() {
|
||||
return createMachineSessionControlView(getMachineSessionStateBundle());
|
||||
}
|
||||
|
||||
function updatePanelMachineSessionState(patch = {}) {
|
||||
panelMachineSessionState = createMachineSessionStateSnapshot({
|
||||
...panelMachineSessionState,
|
||||
@@ -185,11 +190,13 @@ function updatePanelMachineSessionState(patch = {}) {
|
||||
}
|
||||
|
||||
window.linuxCncIniPanelApi = {
|
||||
getMachineSessionControlView,
|
||||
getMachineSessionStateBundle,
|
||||
getMachineSessionStateReport,
|
||||
getMachineSessionStateReportExport,
|
||||
getMachineSessionWorkflowStatus,
|
||||
};
|
||||
window.getMachineSessionControlView = getMachineSessionControlView;
|
||||
window.getMachineSessionStateBundle = getMachineSessionStateBundle;
|
||||
window.getMachineSessionStateReport = getMachineSessionStateReport;
|
||||
window.getMachineSessionStateReportExport = getMachineSessionStateReportExport;
|
||||
|
||||
@@ -140,3 +140,48 @@ export function createMachineSessionStateBundle(state = {}, options = {}) {
|
||||
workflowStatus,
|
||||
};
|
||||
}
|
||||
|
||||
export function createMachineSessionControlView(bundle = {}) {
|
||||
const report = bundle.report ?? {};
|
||||
const workflowStatus = bundle.workflowStatus ?? {};
|
||||
const session = workflowStatus.session ?? report.session ?? {};
|
||||
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: "run",
|
||||
title: "Run",
|
||||
rows: [
|
||||
{ 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 },
|
||||
],
|
||||
},
|
||||
],
|
||||
};
|
||||
}
|
||||
|
||||
@@ -369,6 +369,7 @@ TOOL_TABLE = browser-tool.tbl
|
||||
);
|
||||
const uiApi = uiDocument.defaultView.linuxCncIniPanelApi;
|
||||
if (
|
||||
!uiApi?.getMachineSessionControlView ||
|
||||
!uiApi?.getMachineSessionStateBundle ||
|
||||
!uiApi?.getMachineSessionStateReport ||
|
||||
!uiApi?.getMachineSessionStateReportExport ||
|
||||
@@ -830,6 +831,32 @@ TOOL_TABLE = browser-tool.tbl
|
||||
machineSessionStateBundle.workflowStatus.lastAction,
|
||||
"UI legacy machine session state bundle getter matches API namespace",
|
||||
);
|
||||
const machineSessionControlView = uiApi.getMachineSessionControlView();
|
||||
assertEqual(
|
||||
machineSessionControlView.status.runStatus,
|
||||
"ok",
|
||||
"UI machine session control view run status",
|
||||
);
|
||||
assertEqual(
|
||||
machineSessionControlView.sections[0].id,
|
||||
"readiness",
|
||||
"UI machine session control view readiness section",
|
||||
);
|
||||
assertEqual(
|
||||
machineSessionControlView.sections[1].rows[1].value,
|
||||
"save-session-snapshot",
|
||||
"UI machine session control view session workflow row",
|
||||
);
|
||||
assertEqual(
|
||||
machineSessionControlView.sections[2].rows[1].value,
|
||||
2,
|
||||
"UI machine session control view canonical event row",
|
||||
);
|
||||
assertEqual(
|
||||
uiDocument.defaultView.getMachineSessionControlView().status.lastAction,
|
||||
machineSessionControlView.status.lastAction,
|
||||
"UI legacy machine session control view getter matches API namespace",
|
||||
);
|
||||
assertEqual(
|
||||
uiDocument.defaultView.getMachineSessionStateReport().status.lastAction,
|
||||
machineSessionStateReport.status.lastAction,
|
||||
|
||||
@@ -2,6 +2,7 @@ import assert from "node:assert/strict";
|
||||
|
||||
import {
|
||||
createIniPanelStateSummary,
|
||||
createMachineSessionControlView,
|
||||
createMachineSessionStateSnapshot,
|
||||
createMachineSessionStateBundle,
|
||||
createMachineSessionStateReport,
|
||||
@@ -473,17 +474,92 @@ assert.deepEqual(
|
||||
);
|
||||
|
||||
assert.deepEqual(
|
||||
createMachineSessionControlView({
|
||||
report: expectedBundleReport,
|
||||
export: {
|
||||
filename: "machine-session-state-report.json",
|
||||
mediaType: "application/json",
|
||||
report: expectedBundleReport,
|
||||
text: `${JSON.stringify(expectedBundleReport, null, 2)}\n`,
|
||||
},
|
||||
workflowStatus: {
|
||||
readiness: {
|
||||
ini: "INI WASM: ready",
|
||||
interp: "Interpreter WASM: ready",
|
||||
opfs: "OPFS: ready",
|
||||
},
|
||||
lastAction: "run-gcode",
|
||||
error: null,
|
||||
session: {
|
||||
snapshotLabel: "ui-machine-session/ui-machine-session.json",
|
||||
workflow: "save-session-snapshot",
|
||||
ini: "/work/session-machine.ini",
|
||||
parameters: null,
|
||||
toolTable: null,
|
||||
gcode: "linuxcnc/gcode/ui-session.ngc",
|
||||
},
|
||||
run: {
|
||||
status: "ok",
|
||||
canonicalEventCount: 2,
|
||||
motionSnapshotCount: 2,
|
||||
iniWasmPath: null,
|
||||
},
|
||||
},
|
||||
}),
|
||||
{
|
||||
status: {
|
||||
lastAction: "run-gcode",
|
||||
error: null,
|
||||
runStatus: "ok",
|
||||
},
|
||||
sections: [
|
||||
{
|
||||
id: "readiness",
|
||||
title: "Readiness",
|
||||
rows: [
|
||||
{ label: "INI", value: "INI WASM: ready" },
|
||||
{ label: "Interpreter", value: "Interpreter WASM: ready" },
|
||||
{ label: "OPFS", value: "OPFS: ready" },
|
||||
],
|
||||
},
|
||||
{
|
||||
id: "session",
|
||||
title: "Session",
|
||||
rows: [
|
||||
{ label: "Snapshot", value: "ui-machine-session/ui-machine-session.json" },
|
||||
{ label: "Workflow", value: "save-session-snapshot" },
|
||||
{ label: "INI", value: "/work/session-machine.ini" },
|
||||
{ label: "G-code", value: "linuxcnc/gcode/ui-session.ngc" },
|
||||
],
|
||||
},
|
||||
{
|
||||
id: "run",
|
||||
title: "Run",
|
||||
rows: [
|
||||
{ label: "Status", value: "ok" },
|
||||
{ label: "Canonical events", value: 2 },
|
||||
{ label: "Motion snapshots", value: 2 },
|
||||
{ label: "INI WASM", value: null },
|
||||
],
|
||||
},
|
||||
],
|
||||
},
|
||||
);
|
||||
|
||||
assert.deepEqual(
|
||||
{
|
||||
getMachineSessionControlView: typeof globalThis.window?.linuxCncIniPanelApi?.getMachineSessionControlView,
|
||||
getMachineSessionStateBundle: typeof globalThis.window?.linuxCncIniPanelApi?.getMachineSessionStateBundle,
|
||||
getMachineSessionStateReport: typeof globalThis.window?.linuxCncIniPanelApi?.getMachineSessionStateReport,
|
||||
getMachineSessionStateReportExport: typeof globalThis.window?.linuxCncIniPanelApi?.getMachineSessionStateReportExport,
|
||||
getMachineSessionWorkflowStatus: typeof globalThis.window?.linuxCncIniPanelApi?.getMachineSessionWorkflowStatus,
|
||||
getMachineSessionStateBundle: typeof globalThis.window?.linuxCncIniPanelApi?.getMachineSessionStateBundle,
|
||||
},
|
||||
{
|
||||
getMachineSessionControlView: "undefined",
|
||||
getMachineSessionStateBundle: "undefined",
|
||||
getMachineSessionStateReport: "undefined",
|
||||
getMachineSessionStateReportExport: "undefined",
|
||||
getMachineSessionWorkflowStatus: "undefined",
|
||||
getMachineSessionStateBundle: "undefined",
|
||||
},
|
||||
);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user