mirror of
https://github.com/healthchecks/healthchecks.git
synced 2025-04-03 04:15:29 +00:00
Update timezone dropdowns to show frequently used timezones at the top
This commit is contained in:
parent
b859a71920
commit
3fbba0c2f0
5 changed files with 30 additions and 7 deletions
|
@ -7,6 +7,7 @@ All notable changes to this project will be documented in this file.
|
|||
- Improve performance of loading ping body previews (#1023)
|
||||
- Implement MS Teams Workflows integration (#1024)
|
||||
- Add "uuid" field in API responses when read/write key is used (#1007)
|
||||
- Update timezone dropdowns to show frequently used timezones at the top
|
||||
|
||||
### Bug Fixes
|
||||
- Fix Check.ping() to lock the check before updating (#1023)
|
||||
|
|
|
@ -108,6 +108,14 @@ def _tags_counts(checks: Iterable[Check]) -> tuple[list[tuple[str, str, str]], i
|
|||
return result, num_down
|
||||
|
||||
|
||||
def _common_timezones(checks: Iterable[Check]) -> list[str]:
|
||||
counter: Counter[str] = Counter()
|
||||
for check in checks:
|
||||
counter[check.tz] += 1
|
||||
|
||||
return [tz for tz, _ in counter.most_common(3)]
|
||||
|
||||
|
||||
def _get_check_for_user(
|
||||
request: HttpRequest, code: UUID, preload_owner_profile: bool = False
|
||||
) -> tuple[Check, bool]:
|
||||
|
@ -280,6 +288,7 @@ def checks(request: AuthenticatedHttpRequest, code: UUID) -> HttpResponse:
|
|||
"num_down": num_down,
|
||||
"tags": tags_counts,
|
||||
"ping_endpoint": settings.PING_ENDPOINT,
|
||||
"common_timezones": _common_timezones(checks),
|
||||
"timezones": all_timezones,
|
||||
"project": project,
|
||||
"num_available": project.num_checks_available(),
|
||||
|
@ -976,9 +985,10 @@ def details(request: AuthenticatedHttpRequest, code: UUID) -> HttpResponse:
|
|||
channels.append(channel)
|
||||
|
||||
all_tags = set()
|
||||
q = Check.objects.filter(project=check.project).exclude(tags="")
|
||||
for tags in q.values_list("tags", flat=True):
|
||||
all_tags.update(tags.split(" "))
|
||||
sibling_checks = Check.objects.filter(project=check.project).only("tags", "tz")
|
||||
for sibling in sibling_checks:
|
||||
if sibling.tags:
|
||||
all_tags.update(sibling.tags.split(" "))
|
||||
|
||||
ctx = {
|
||||
"page": "details",
|
||||
|
@ -988,6 +998,7 @@ def details(request: AuthenticatedHttpRequest, code: UUID) -> HttpResponse:
|
|||
"channels": regular_channels,
|
||||
"group_channels": group_channels,
|
||||
"enabled_channels": list(check.channel_set.all()),
|
||||
"common_timezones": _common_timezones(sibling_checks),
|
||||
"timezones": all_timezones,
|
||||
"downtimes": check.downtimes(3, request.profile.tz),
|
||||
"tz": request.profile.tz,
|
||||
|
|
|
@ -1,8 +1,17 @@
|
|||
$(function() {
|
||||
var timezones = document.getElementById("all-timezones").textContent;
|
||||
function makeOptions(domId) {
|
||||
var s = document.getElementById(domId).textContent;
|
||||
return s.split(",").map(tz => ({value: tz, group: domId}))
|
||||
}
|
||||
|
||||
$("select[name=tz]").selectize({
|
||||
labelField: "value",
|
||||
searchField: ["value"],
|
||||
options: timezones.split(",").map(tz => ({value: tz}))
|
||||
options: makeOptions("common-timezones").concat(makeOptions("all-timezones")),
|
||||
optgroups: [
|
||||
{label: "Common time zones", value: "common-timezones"},
|
||||
{label: "All time zones (search by typing)", value: "all-timezones"}
|
||||
],
|
||||
optgroupField: "group"
|
||||
});
|
||||
});
|
|
@ -145,7 +145,8 @@
|
|||
{% endblock %}
|
||||
|
||||
{% block scripts %}
|
||||
<script id="all-timezones" type="data">UTC,{{ timezones|join:"," }}</script>
|
||||
<script id="common-timezones" type="data">{{ common_timezones|join:"," }}</script>
|
||||
<script id="all-timezones" type="data">{{ timezones|join:"," }}</script>
|
||||
{% compress js %}
|
||||
<script src="{% static 'js/selectize.min.js' %}"></script>
|
||||
<script src="{% static 'js/nouislider.min.js' %}"></script>
|
||||
|
|
|
@ -386,7 +386,8 @@
|
|||
{% endblock %}
|
||||
|
||||
{% block scripts %}
|
||||
<script id="all-timezones" type="data">UTC,{{ timezones|join:"," }}</script>
|
||||
<script id="common-timezones" type="data">{{ common_timezones|join:"," }}</script>
|
||||
<script id="all-timezones" type="data">{{ timezones|join:"," }}</script>
|
||||
{% compress js %}
|
||||
<script src="{% static 'js/selectize.min.js' %}"></script>
|
||||
<script src="{% static 'js/nouislider.min.js' %}"></script>
|
||||
|
|
Loading…
Add table
Reference in a new issue