推进 INI 面板 readonly status API manifest

This commit is contained in:
2026-06-15 05:48:26 +08:00
parent 3280f3a53e
commit f7de24d4a5
7 changed files with 148 additions and 2 deletions

View File

@@ -659,3 +659,73 @@ host_wasm_opfs_browser_smokes=ok
入口或 manifest方便外部页面稳定发现 `readStatus()`、`loadSessionState()`、`refresh()` 和
`renderView()`;仍保持只描述 UI/host boundary facts不在 JS 中解释 G-code、canonical events
或 CNC 运行语义。
七、2026-06-15 继续执行记录INI panel readonly status API manifest
本轮按“第一原则:加快实质性推进”继续推进 SDK/API surface把 readonly status API 的 shape
写入轻量 manifest方便外部页面稳定发现 `readStatus()`、`loadSessionState()`、`refresh()` 和
`renderView()`。
完成内容:
- `wasm-port/runtime/ui/ini-panel/readonly-status-api.js` 新增
`createMachineSessionReadonlyStatusApiManifest()`
- manifest 固定返回:
- `apiName`
- `methods.readStatus`
- `relatedControlPageMethods`
- `statusFields`
- `ui-shell.js` re-export `createMachineSessionReadonlyStatusApiManifest()`
- `createIniPanelShellViewModel()` 的 `controlPage` 新增 `readonlyStatusApiManifest`
- `verify_ini_panel_readonly_status_api.mjs` 覆盖 manifest shape
- `verify_ini_panel_ui_shell.mjs` 覆盖 shell view-model 中的 manifest 暴露;
- `verify_ini_panel_entry_docs.mjs` 与 `docs/panel-entry.md` 同步记录 manifest 入口;
- 未新增控制按钮;
- 未解析 G-code
- 未解释 canonical events
- 未改变 OPFS/session persistence、LinuxCNC interpreter、tool、parameter、planner 或
LinuxCNC-owned runtime semantics。
验证已通过:
```bash
git diff --check
wasm-port/tests/ui/node/verify_ini_panel_readonly_status_api.sh
wasm-port/tests/ui/node/verify_ini_panel_ui_shell.sh
wasm-port/tests/ui/node/verify_ini_panel_entry_docs.sh
wasm-port/tests/ui/node/verify_ui_node_smokes.sh
SKIP_INI_BUILD=1 SKIP_INTERP_BUILD=1 wasm-port/tests/browser/verify_ini_panel_browser.sh
wasm-port/tools/verify_vendor_sync.sh
wasm-port/tools/verify_no_standalone_cnc_semantics.sh
SKIP_INTERP_BUILD=1 wasm-port/tests/wasm/node/verify_interp_wasm.sh
SKIP_INTERP_BUILD=1 wasm-port/tests/wasm/node/verify_sim_configs_inventory_wasm.sh
wasm-port/tests/host/verify_host_smokes.sh
```
关键输出:
```text
ini_panel_readonly_status_api_node_smoke=ok
ini_panel_ui_shell_node_smoke=ok
ini_panel_entry_docs_node_smoke=ok
ui_node_smokes=ok
browser_ini_opfs_smoke=ok
browser_ini_control_page_smoke=ok
browser_ini_launch_smoke=ok
vendor sync up to date
standalone CNC semantics guard complete
interp_wasm_node_smoke=ok
sim_configs_wasm_node_inventory_executed=28
sim_configs_wasm_node_inventory_passed=28
sim_configs_wasm_node_inventory_skipped=131
sim_configs_wasm_node_inventory_unexpected_fail=0
browser_interp_smoke=ok
host_wasm_opfs_browser_smokes=ok
```
下一步建议:
继续推进 SDK/API surface。下一批建议为 shell-facing API 增加一个 focused contract smoke
直接校验 `createIniPanelShellViewModel().controlPage` 的所有方法名、manifest 字段和只读边界,
使外部页面接入前能运行一个快速 contract gate仍保持只描述 UI/host boundary facts不在 JS
中解释 G-code、canonical events 或 CNC 运行语义。