Files
metabuilder/qml/MetaBuilder/DashboardDBAL.js
johndoe6345789 491c4cffed refactor(qt6): push for sub-100 LOC — JS modules, JSON configs, compact formatting
WorkflowEditor (325→80): CWorkflowState.qml + WorkflowConnectionState.js
DashboardView (121→95): DashboardDBAL.js + config/dashboard-config.json
Storybook (114→78): StorybookSidebar + config/storybook-components.json
+ 7 components compacted to under 100 via formatting (no logic changes)
+ Multiple view/component splits across all remaining 100+ LOC files

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
2026-03-19 14:58:28 +00:00

15 lines
380 B
JavaScript

.pragma library
// DBAL health-check helper for the dashboard view.
// Keeps the ping + health fetch logic out of the QML file.
function refreshHealth(dbal, callback) {
dbal.ping(function(success, error) {
if (success) {
dbal.execute("health", {}, function(result, err) {
if (result) callback(result);
});
}
});
}