Skip to content

Commit 796c427

Browse files
destrex271JelteF
andauthored
Add reverse sorting on commitfest page (#33)
Implements reverse sorting in the columns of the commitfest pages. This is a cleaned up version of #28 and #32 Fixes #20 --------- Co-authored-by: Jelte Fennema-Nio <[email protected]>
1 parent 0f23363 commit 796c427

File tree

3 files changed

+22
-7
lines changed

3 files changed

+22
-7
lines changed

media/commitfest/js/commitfest.js

+4-1
Original file line numberDiff line numberDiff line change
@@ -257,7 +257,10 @@ function flagCommitted(committer) {
257257
}
258258

259259
function sortpatches(sortby) {
260-
if ($("#id_sortkey").val() === sortby) {
260+
const sortkey = $("#id_sortkey").val();
261+
if (sortkey === sortby) {
262+
$("#id_sortkey").val(-sortby);
263+
} else if (-sortkey === sortby) {
261264
$("#id_sortkey").val(0);
262265
} else {
263266
$("#id_sortkey").val(sortby);

pgcommitfest/commitfest/templates/commitfest.html

+6-6
Original file line numberDiff line numberDiff line change
@@ -60,18 +60,18 @@ <h3>{{p.is_open|yesno:"Active patches,Closed patches"}}</h3>
6060
<table class="table table-striped table-bordered table-hover table-condensed">
6161
<thead>
6262
<tr>
63-
<th><a href="#" style="color:#333333;" onclick="return sortpatches(5);">Patch</a>{%if sortkey == 5%}<div style="float:right;"><i class="glyphicon glyphicon-arrow-down"></i></div>{%endif%}</th>
64-
<th><a href="#" style="color:#333333;" onclick="return sortpatches(4);">ID</a>{%if sortkey == 4%}<div style="float:right;"><i class="glyphicon glyphicon-arrow-down"></i></div>{%endif%}</th>
63+
<th><a href="#" style="color:#333333;" onclick="return sortpatches(5);">Patch</a>{%if sortkey == 5%}<div style="float:right;"><i class="glyphicon glyphicon-arrow-down"></i></div>{%elif sortkey == -5%}<div style="float:right;"><i class="glyphicon glyphicon-arrow-up"></i></div>{%endif%}</th>
64+
<th><a href="#" style="color:#333333;" onclick="return sortpatches(4);">ID</a>{%if sortkey == 4%}<div style="float:right;"><i class="glyphicon glyphicon-arrow-down"></i></div>{%elif sortkey == -4%}<div style="float:right;"><i class="glyphicon glyphicon-arrow-up"></i></div>{%endif%}</th>
6565
<th>Status</th>
6666
<th>Ver</th>
6767
<th>CI status</th>
68-
<th><a href="#" style="color:#333333;" onclick="return sortpatches(6);">Stats</a>{%if sortkey == 6%}<div style="float:right;"><i class="glyphicon glyphicon-arrow-down"></i></div>{%endif%}</th>
68+
<th><a href="#" style="color:#333333;" onclick="return sortpatches(6);">Stats</a>{%if sortkey == 6%}<div style="float:right;"><i class="glyphicon glyphicon-arrow-down"></i></div>{%elif sortkey == -6%}<div style="float:right;"><i class="glyphicon glyphicon-arrow-up"></i></div>{%endif%}</th>
6969
<th>Author</th>
7070
<th>Reviewers</th>
7171
<th>Committer</th>
72-
<th><a href="#" style="color:#333333;" onclick="return sortpatches(3);">Num cfs</a>{%if sortkey == 3%}<div style="float:right;"><i class="glyphicon glyphicon-arrow-down"></i></div>{%endif%}</th>
73-
<th><a href="#" style="color:#333333;" onclick="return sortpatches(1);">Latest activity</a>{%if sortkey == 1%}<div style="float:right;"><i class="glyphicon glyphicon-arrow-down"></i></div>{%endif%}</th>
74-
<th><a href="#" style="color:#333333;" onclick="return sortpatches(2);">Latest mail</a>{%if sortkey == 2%}<div style="float:right;"><i class="glyphicon glyphicon-arrow-down"></i></div>{%endif%}</th>
72+
<th><a href="#" style="color:#333333;" onclick="return sortpatches(3);">Num cfs</a>{%if sortkey == 3%}<div style="float:right;"><i class="glyphicon glyphicon-arrow-down"></i></div>{%elif sortkey == -3%}<div style="float:right;"><i class="glyphicon glyphicon-arrow-up"></i></div>{%endif%}</th>
73+
<th><a href="#" style="color:#333333;" onclick="return sortpatches(1);">Latest activity</a>{%if sortkey == 1%}<div style="float:right;"><i class="glyphicon glyphicon-arrow-down"></i></div>{%elif sortkey == -1%}<div style="float:right;"><i class="glyphicon glyphicon-arrow-up"></i></div>{%endif%}</th>
74+
<th><a href="#" style="color:#333333;" onclick="return sortpatches(2);">Latest mail</a>{%if sortkey == 2%}<div style="float:right;"><i class="glyphicon glyphicon-arrow-down"></i></div>{%elif sortkey == -2%}<div style="float:right;"><i class="glyphicon glyphicon-arrow-up"></i></div>{%endif%}</th>
7575
{%if user.is_staff%}
7676
<th>Select</th>
7777
{%endif%}

pgcommitfest/commitfest/views.py

+12
Original file line numberDiff line numberDiff line change
@@ -241,18 +241,30 @@ def commitfest(request, cfid):
241241

242242
if sortkey == 1:
243243
orderby_str = "modified, created"
244+
elif sortkey == -1:
245+
orderby_str = "modified DESC, created DESC"
244246
elif sortkey == 2:
245247
orderby_str = "lastmail, created"
248+
elif sortkey == -2:
249+
orderby_str = "lastmail DESC, created DESC"
246250
elif sortkey == 3:
247251
orderby_str = "num_cfs DESC, modified, created"
252+
elif sortkey == -3:
253+
orderby_str = "num_cfs ASC, modified DESC, created DESC"
248254
elif sortkey == 4:
249255
orderby_str = "p.id"
256+
elif sortkey == -4:
257+
orderby_str = "p.id DESC"
250258
elif sortkey == 5:
251259
orderby_str = "p.name, created"
260+
elif sortkey == -5:
261+
orderby_str = "p.name DESC, created DESC"
252262
elif sortkey == 6:
253263
orderby_str = (
254264
"branch.all_additions + branch.all_deletions NULLS LAST, created"
255265
)
266+
elif sortkey == -6:
267+
orderby_str = "branch.all_additions + branch.all_deletions DESC NULLS LAST, created DESC"
256268
else:
257269
orderby_str = "p.id"
258270
sortkey = 0

0 commit comments

Comments
 (0)