0
0
Fork 0
mirror of https://github.com/healthchecks/healthchecks.git synced 2025-04-03 04:15:29 +00:00

Implement "no matching checks" message when searching/filtering

(instead of showing a table with a header row and no data rows)
This commit is contained in:
Pēteris Caune 2024-11-15 12:11:18 +02:00
parent 2ef550e16e
commit 62b10be5fe
No known key found for this signature in database
GPG key ID: E28D7679E9A9EDE2
5 changed files with 69 additions and 33 deletions

View file

@ -314,6 +314,7 @@ def checks(request: AuthenticatedHttpRequest, code: UUID) -> HttpResponse:
"selected_statuses": selected_statuses,
"search": search,
"hidden_checks": hidden_checks,
"num_visible": len(checks) - len(hidden_checks),
"ambiguous": ambiguous,
"show_last_duration": show_last_duration,
}

View file

@ -164,3 +164,10 @@
width: 650px;
}
}
#no-checks {
padding: 1em;
text-align: center;
font-size: 36px;
opacity: 0.3;
}

View file

@ -128,44 +128,50 @@ $(function () {
a.setAttribute("href", url.toString());
});
// No checked tags, no search string, no status filters: show all
if (checked.length == 0 && !search && statuses.length == 0) {
// No checked tags, no search string, no status filters: show all
$("#checks-table tr.checks-row").show();
return;
}
function applySingle(index, element) {
var nameData = element.querySelector(".my-checks-name").dataset;
if (search) {
var haystack = [nameData.name, nameData.slug, element.id].join("\n");
if (haystack.toLowerCase().indexOf(search) == -1) {
$(element).hide();
return;
}
}
if (checked.length) {
var tags = nameData.tags.split(" ");
for (var i = 0, checkedTag; (checkedTag = checked[i]); i++) {
if (tags.indexOf(checkedTag) == -1) {
var numVisible = $("#checks-table tr.checks-row").length;
} else {
var numVisible = 0;
function applySingle(index, element) {
var nameData = element.querySelector(".my-checks-name").dataset;
if (search) {
var parts = [nameData.name, nameData.slug, element.id];
var haystack = parts.join("\n").toLowerCase();
if (haystack.indexOf(search) == -1) {
$(element).hide();
return;
}
}
}
if (statuses.length) {
if (!statusMatch(element, statuses)) {
$(element).hide();
return;
if (checked.length) {
var tags = nameData.tags.split(" ");
for (var i = 0, checkedTag; (checkedTag = checked[i]); i++) {
if (tags.indexOf(checkedTag) == -1) {
$(element).hide();
return;
}
}
}
if (statuses.length) {
if (!statusMatch(element, statuses)) {
$(element).hide();
return;
}
}
$(element).show();
numVisible += 1;
}
$(element).show();
// For each row, see if it needs to be shown or hidden
$("#checks-table tr.checks-row").each(applySingle);
}
// For each row, see if it needs to be shown or hidden
$("#checks-table tr.checks-row").each(applySingle);
$("#checks-table").toggle(numVisible > 0);
$("#no-checks").toggle(numVisible == 0);
}
// User clicks on tags: apply filters

View file

@ -70,7 +70,8 @@
<input
id="search"
type="text"
class="form-control">
class="form-control"
value="{{ search }}">
<div id="filters" class="input-group-btn">
<button type="button" class="btn btn-default dropdown-toggle" data-toggle="dropdown">
<span class="caret"></span>
@ -146,17 +147,38 @@
</button>
{% endif %}
</div>
{% endif %}
<div class="row">
<div class="col-sm-12">
{% if checks %}
{% include "front/checks_table.html" %}
{% else %}
<div class="alert alert-info">The project <strong>{{ project }}</strong> does not have any checks yet.</div>
{% endif %}
<div id="no-checks" {% if num_visible > 0 %}style="display: none"{% endif %}>
no matching checks found
</div>
</div>
</div>
{% else %}
<div class="row">
<div class="col-sm-12">
<div class="alert alert-info">
The project <strong>{{ project }}</strong> does not have any checks yet.
{% if rw and num_available > 0 %}
<br><br>
<button
class="btn btn-primary"
data-toggle="modal"
data-target="#add-check-modal"
{% if num_available <= 0 %}disabled{% endif %}>
Add Check
</button>
{% endif %}
</div>
</div>
</div>
{% endif %}
{% if num_available == 0 %}
<div id="my-checks-bottom-actions" class="row">

View file

@ -2,6 +2,7 @@
<table
id="checks-table"
class="table {% if rw %}rw{% endif%}"
{% if num_visible == 0 %}style="display: none"{% endif %}
data-status-url="{% url 'hc-status' project.code %}">
<tr>
<th></th>
@ -132,7 +133,6 @@
</td>
</tr>
{% endfor %}
</table>
{% for channel in channels %}