diff --git a/modules/openstack_project/files/zuul/status.html b/modules/openstack_project/files/zuul/status.html index 7486afb4a8..310ddb2f03 100644 --- a/modules/openstack_project/files/zuul/status.html +++ b/modules/openstack_project/files/zuul/status.html @@ -85,7 +85,7 @@ td.tree { .change > .header { background: #E2ECEF; color: black; - margin: -2px -2px 2px -2px; + margin: -2px; padding: 4px; } .change > .header > .changeid { @@ -97,6 +97,9 @@ td.tree { .change > .hover { background: #F3FDFF; } +.jobs { + padding-top: 4px; +} .jobwrapper { display: table; width: 100%; @@ -111,12 +114,19 @@ td.tree { .result_success { color: #007f00; } + +.queue_bad, .result_failure { color: #cf2f19; } +.queue_warn, .result_unstable { color: #e39f00; } +.queue_good { + color: #888888; +} + #graph-container img { margin-left: 10px; } diff --git a/modules/openstack_project/files/zuul/status.js b/modules/openstack_project/files/zuul/status.js index 2602dcc2fb..0c22ec3218 100644 --- a/modules/openstack_project/files/zuul/status.js +++ b/modules/openstack_project/files/zuul/status.js @@ -16,6 +16,20 @@ window.zuul_enable_status_updates = true; window.zuul_filter = []; window.zuul_collapsed_exceptions = []; +function format_enqueue_time(time) { + var hours = 60 * 60 * 1000; + var now = Date.now(); + var delta = now - time; + var status = "queue_good"; + var text = format_time(delta, true); + if (delta > (4 * hours)) { + status = "queue_bad"; + } else if (delta > (2 * hours)) { + status = "queue_warn"; + } + return '' + text + ''; +} + function format_time(ms, words) { if (ms == null) { return "unknown"; @@ -235,21 +249,6 @@ function format_change(change, change_queue) { 'onmouseout="$(this).removeClass(\'hover\')">'; html += '' + change['project'] + ''; - var id = change['id']; - var url = change['url']; - if (id !== null) { - if (id.length == 40) { - id = id.substr(0,7); - } - html += ''; - if (url !== null) { - html += ''; - } - html += id; - if (url !== null) { - html += ''; - } - } display = $('#expandByDefault').is(':checked'); safe_change_id = safe_id(change['id']); @@ -259,9 +258,37 @@ function format_change(change, change_queue) { display = !display; } - html += ''; + html += ''; html += format_time(change['remaining_time'], true); - html += '
'; + } + html += id; + if (url !== null) { + html += ''; + } + } else { + // if there is not changeset we still need forced content, otherwise + // the layout doesn't work + html += ' '; + } + html += ''; + html += '' + format_enqueue_time(change['enqueue_time']) + ''; + + html += '
'; + + // Job listing from here down + html += '