-
Notifications
You must be signed in to change notification settings - Fork 12
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat: added reverse sorting to commitfest form #28
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks for the contribution, but I think this needs some changes.
pgcommitfest/commitfest/forms.py
Outdated
@@ -17,11 +17,13 @@ class CommitFestFilterForm(forms.Form): | |||
author = forms.ChoiceField(required=False) | |||
reviewer = forms.ChoiceField(required=False) | |||
sortkey = forms.IntegerField(required=False) | |||
sortorder = forms.IntegerField(required=False) # 0 -> no order, 1 -> asc, -1 -> desc |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Instead of adding a new sortorder field, I think we can achieve the same by by allowing negative numbers in the sortkey. That should also make my other comment easy to address.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Sounds reasonable but we actually have 3 sorting cases
- Default order
- Ascending order
- Descending order
So if we rely on negative numbers, it won't be possible to handle these cases, we can only handle ascending and descending.
If we want to avoid using a new form field, we need to come up with some crooked solution like for example
- 10 x sortkey -> ascending
- sortkey -> default
- -sortkey -> descending
Sounds good?
imo, using a new field might make the code more readable
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It could be I'm missing something, but I had this in mind for the meanings of the sortkey
0: topic, created
(i.e. default sorting)
1: modied, created
-1: modified DESC, created DESC
...
3: num_cfs DESC, modified, created
-3: num_cfs ASC, modified DESC, created DESC
...
6: branch.all_additions + branch.all_deletions NULLS LAST, created
-6: branch.all_additions + branch.all_deletions DESC NULLS LAST, created
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
oh okk, I thought that we wanted to just sort based on created
this makes sense, I'll make the necessary changes
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks! And to be clear, clicking the num_cfs header should then result in this cycle:
- sortkey = 3, with caret down in the header
- sortkey = -3, with caret up in the header
- sortkey = 0, without caret in the header
pgcommitfest/commitfest/views.py
Outdated
if sortorder == 1: | ||
orderby_str += " ASC" | ||
elif sortorder == -1: | ||
orderby_str += " DESC" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This doesn't work when sorting by multiple columns. This will only invert the sorting for the last column. We actually need to invert the sorting for all the columns that we're sorting on. So I think we need dedicated strings for each.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Ahh ok, understood. I'll make the necessary changes
media/commitfest/js/commitfest.js
Outdated
function sortpatches(sortby) { | ||
if ($('#id_sortkey').val() == sortby) { | ||
$('#id_sortkey').val(0); | ||
if($('#id_sortorder').val() == 1){ |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I added automated code formatting for JS in #29. So you'll likely have some conflicts now.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
cool, I'll look into it as well
32d0e40
to
0f23363
Compare
I rebased the main branch onto the prod branch to resolve a CI issue. Could you rebase now too, with |
Makefile
Outdated
@@ -8,4 +8,4 @@ lint: | |||
|
|||
lint-fix: | |||
ruff check --fix | |||
npx @biomejs/biome check --fix | |||
npx @biomejs/biome check --fix |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Can you install Editorconfig and resave this file? Because now you removed the trailing newline that we want. https://editorconfig.org/
The commits in this branch still look strange. You should be able to fix it by doing the following
|
1fb78f3
to
98543b3
Compare
I think this has become really messy right now, how bout I create a new branch from the updated main branch ? |
98543b3
to
0f23363
Compare
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]>
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]>
Fixes #20
sortorder
sortorder
has 3 possible values