Skip to content
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

Closed
wants to merge 0 commits into from

Conversation

destrex271
Copy link
Contributor

Fixes #20

  • Uses a new hidden form field called sortorder
  • sortorder has 3 possible values
    • -1: Descending order
    • 0 : Default Order
    • 1 : Ascending order

Copy link
Collaborator

@JelteF JelteF left a 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.

@@ -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
Copy link
Collaborator

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.

Copy link
Contributor Author

@destrex271 destrex271 Feb 15, 2025

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

Copy link
Collaborator

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

Copy link
Contributor Author

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

Copy link
Collaborator

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:

  1. sortkey = 3, with caret down in the header
  2. sortkey = -3, with caret up in the header
  3. sortkey = 0, without caret in the header

Comment on lines 265 to 268
if sortorder == 1:
orderby_str += " ASC"
elif sortorder == -1:
orderby_str += " DESC"
Copy link
Collaborator

@JelteF JelteF Feb 15, 2025

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.

Copy link
Contributor Author

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

function sortpatches(sortby) {
if ($('#id_sortkey').val() == sortby) {
$('#id_sortkey').val(0);
if($('#id_sortorder').val() == 1){
Copy link
Collaborator

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.

Copy link
Contributor Author

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

@JelteF JelteF force-pushed the main branch 2 times, most recently from 32d0e40 to 0f23363 Compare February 16, 2025 11:13
@JelteF
Copy link
Collaborator

JelteF commented Feb 16, 2025

I rebased the main branch onto the prod branch to resolve a CI issue. Could you rebase now too, with git rebase -i just remove all the commits that you didn't write and it should be fine.

Makefile Outdated
@@ -8,4 +8,4 @@ lint:

lint-fix:
ruff check --fix
npx @biomejs/biome check --fix
npx @biomejs/biome check --fix
Copy link
Collaborator

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/

@JelteF
Copy link
Collaborator

JelteF commented Feb 16, 2025

The commits in this branch still look strange. You should be able to fix it by doing the following

git fetch
git rebase -i origin/main
# Remove the lines with commits that you didn't write
git push --force

@destrex271 destrex271 force-pushed the feature/reverse_sorting branch from 1fb78f3 to 98543b3 Compare February 16, 2025 11:54
@destrex271
Copy link
Contributor Author

I think this has become really messy right now, how bout I create a new branch from the updated main branch ?

@destrex271 destrex271 closed this Feb 16, 2025
@destrex271 destrex271 force-pushed the feature/reverse_sorting branch from 98543b3 to 0f23363 Compare February 16, 2025 12:05
JelteF added a commit that referenced this pull request Feb 16, 2025
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]>
JelteF added a commit that referenced this pull request Mar 4, 2025
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]>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

Implement reverse sorting
2 participants