From 6b23778092a20f58c8f1d6629636a496fb31554a Mon Sep 17 00:00:00 2001 From: Joshua Tauberer Date: Sun, 15 Jan 2023 09:57:32 -0500 Subject: [PATCH] simplify a bit --- management/templates/system-status.html | 33 ++++++++++--------------- 1 file changed, 13 insertions(+), 20 deletions(-) diff --git a/management/templates/system-status.html b/management/templates/system-status.html index 8b0c9605..12c8aa0b 100644 --- a/management/templates/system-status.html +++ b/management/templates/system-status.html @@ -103,9 +103,7 @@ function show_system_status() { const error_symbol = "✖"; const warning_symbol = "?"; - let num_ok = 0; - let num_error = 0; - let num_warning = 0; + let count_by_status = { ok: 0, error: 0, warning: 0 }; for (var i = 0; i < r.length; i++) { var n = $("

"); @@ -115,18 +113,10 @@ function show_system_status() { else n.addClass("status-" + r[i].type) - if (r[i].type == "ok") { - ++num_ok; - n.find('td.status').text(ok_symbol); - } - else if (r[i].type == "error") { - ++num_error; - n.find('td.status').text(error_symbol); - } - else if (r[i].type == "warning") { - ++num_warning; - n.find('td.status').text(warning_symbol); - } + if (r[i].type == "ok") n.find('td.status').text(ok_symbol); + if (r[i].type == "error") n.find('td.status').text(error_symbol); + if (r[i].type == "warning") n.find('td.status').text(warning_symbol); + count_by_status[r[i].type]++; n.find('td.message p').text(r[i].text) $('#system-checks tbody').append(n); @@ -149,11 +139,14 @@ function show_system_status() { } // Summary counts - const all_ok = (num_error + num_warning == 0) ? 'All ' : ''; - summary.append($('').text(`${all_ok}${num_ok} ${ok_symbol} Ok`)); - if (num_error > 0) summary.append($('').text(`, ${num_error} ${error_symbol} Error`)); - if (num_warning > 0) summary.append($('').text(`, ${num_warning} ${warning_symbol} Warning`)); - if (num_error > 0 || num_warning > 0) summary.append($('').text(`, out of ${num_ok + num_error + num_warning} checks`)); + summary.html("Summary: "); + if (count_by_status['error'] + count_by_status['warning'] == 0) { + summary.append($('').text(`All ${count_by_status['ok']} ${ok_symbol} OK`)); + } else { + summary.append($('').text(`${count_by_status['ok']} ${ok_symbol} OK, `)); + summary.append($('').text(`${count_by_status['error']} ${error_symbol} Error, `)); + summary.append($('').text(`${count_by_status['warning']} ${warning_symbol} Warning`)); + } }) }