Commit 641eb555 authored by Sean McGivern's avatar Sean McGivern

Allow sorting by due date and label priority

parent a0b78db4
...@@ -18,7 +18,8 @@ module SortingHelper ...@@ -18,7 +18,8 @@ module SortingHelper
sort_value_upvotes => sort_title_upvotes, sort_value_upvotes => sort_title_upvotes,
sort_value_more_weight => sort_title_more_weight, sort_value_more_weight => sort_title_more_weight,
sort_value_less_weight => sort_title_less_weight, sort_value_less_weight => sort_title_less_weight,
sort_value_priority => sort_title_priority sort_value_priority => sort_title_priority,
sort_value_label_priority => sort_title_label_priority
} }
end end
...@@ -52,6 +53,10 @@ module SortingHelper ...@@ -52,6 +53,10 @@ module SortingHelper
end end
def sort_title_priority def sort_title_priority
'Priority'
end
def sort_title_label_priority
'Label priority' 'Label priority'
end end
...@@ -171,6 +176,10 @@ module SortingHelper ...@@ -171,6 +176,10 @@ module SortingHelper
'priority' 'priority'
end end
def sort_value_label_priority
'label_priority'
end
def sort_value_oldest_updated def sort_value_oldest_updated
'updated_asc' 'updated_asc'
end end
......
...@@ -147,7 +147,8 @@ module Issuable ...@@ -147,7 +147,8 @@ module Issuable
when 'milestone_due_desc' then order_milestone_due_desc when 'milestone_due_desc' then order_milestone_due_desc
when 'downvotes_desc' then order_downvotes_desc when 'downvotes_desc' then order_downvotes_desc
when 'upvotes_desc' then order_upvotes_desc when 'upvotes_desc' then order_upvotes_desc
when 'priority' then order_labels_priority(excluded_labels: excluded_labels) when 'label_priority' then order_labels_priority(excluded_labels: excluded_labels)
when 'priority' then order_due_date_and_labels_priority(excluded_labels: excluded_labels)
when 'position_asc' then order_position_asc when 'position_asc' then order_position_asc
else else
order_by(method) order_by(method)
...@@ -157,7 +158,28 @@ module Issuable ...@@ -157,7 +158,28 @@ module Issuable
sorted.order(id: :desc) sorted.order(id: :desc)
end end
def order_labels_priority(excluded_labels: []) def order_due_date_and_labels_priority(excluded_labels: [])
# The order_ methods also modify the query in other ways:
#
# - For milestones, we add a JOIN.
# - For label priority, we change the SELECT, and add a GROUP BY.#
#
# After doing those, we need to reorder to the order we want. The existing
# ORDER BYs won't work because:
#
# 1. We need milestone due date first.
# 2. We can't ORDER BY a column that isn't in the GROUP BY and doesn't
# have an aggregate function applied, so we do a useless MIN() instead.
#
milestones_due_date = 'MIN(milestones.due_date)'
order_milestone_due_asc.
order_labels_priority(excluded_labels: excluded_labels, extra_select_columns: [milestones_due_date]).
reorder(Gitlab::Database.nulls_last_order(milestones_due_date, 'ASC'),
Gitlab::Database.nulls_last_order('highest_priority', 'ASC'))
end
def order_labels_priority(excluded_labels: [], extra_select_columns: [])
params = { params = {
target_type: name, target_type: name,
target_column: "#{table_name}.id", target_column: "#{table_name}.id",
...@@ -167,7 +189,12 @@ module Issuable ...@@ -167,7 +189,12 @@ module Issuable
highest_priority = highest_label_priority(params).to_sql highest_priority = highest_label_priority(params).to_sql
select("#{table_name}.*, (#{highest_priority}) AS highest_priority"). select_columns = [
"#{table_name}.*",
"(#{highest_priority}) AS highest_priority"
] + extra_select_columns
select(select_columns.join(', ')).
group(arel_table[:id]). group(arel_table[:id]).
reorder(Gitlab::Database.nulls_last_order('highest_priority', 'ASC')) reorder(Gitlab::Database.nulls_last_order('highest_priority', 'ASC'))
end end
......
...@@ -48,8 +48,14 @@ class Todo < ActiveRecord::Base ...@@ -48,8 +48,14 @@ class Todo < ActiveRecord::Base
after_save :keep_around_commit after_save :keep_around_commit
class << self class << self
# Priority sorting isn't displayed in the dropdown, because we don't show
# milestones, but still show something if the user has a URL with that
# selected.
def sort(method) def sort(method)
method == "priority" ? order_by_labels_priority : order_by(method) case method.to_s
when 'priority', 'label_priority' then order_by_labels_priority
else order_by(method)
end
end end
# Order by priority depending on which issue/merge request the Todo belongs to # Order by priority depending on which issue/merge request the Todo belongs to
......
...@@ -57,8 +57,8 @@ ...@@ -57,8 +57,8 @@
= icon('chevron-down') = icon('chevron-down')
%ul.dropdown-menu.dropdown-menu-sort %ul.dropdown-menu.dropdown-menu-sort
%li %li
= link_to todos_filter_path(sort: sort_value_priority) do = link_to todos_filter_path(sort: sort_value_label_priority) do
= sort_title_priority = sort_title_label_priority
= link_to todos_filter_path(sort: sort_value_recently_created) do = link_to todos_filter_path(sort: sort_value_recently_created) do
= sort_title_recently_created = sort_title_recently_created
= link_to todos_filter_path(sort: sort_value_oldest_created) do = link_to todos_filter_path(sort: sort_value_oldest_created) do
......
...@@ -10,6 +10,8 @@ ...@@ -10,6 +10,8 @@
%li %li
= link_to page_filter_path(sort: sort_value_priority, label: true) do = link_to page_filter_path(sort: sort_value_priority, label: true) do
= sort_title_priority = sort_title_priority
= link_to page_filter_path(sort: sort_value_label_priority, label: true) do
= sort_title_label_priority
= link_to page_filter_path(sort: sort_value_recently_created, label: true) do = link_to page_filter_path(sort: sort_value_recently_created, label: true) do
= sort_title_recently_created = sort_title_recently_created
= link_to page_filter_path(sort: sort_value_oldest_created, label: true) do = link_to page_filter_path(sort: sort_value_oldest_created, label: true) do
......
...@@ -5,7 +5,7 @@ ...@@ -5,7 +5,7 @@
.col-xs-12.col-sm-6 .col-xs-12.col-sm-6
.text-content .text-content
%h4 Labels can be applied to issues and merge requests to categorize them. %h4 Labels can be applied to issues and merge requests to categorize them.
%p You can also star label to make it a priority label. %p You can also star a label to make it a priority label.
- if can?(current_user, :admin_label, @project) - if can?(current_user, :admin_label, @project)
= link_to 'New label', new_namespace_project_label_path(@project.namespace, @project), class: 'btn btn-new', title: 'New label', id: 'new_label_link' = link_to 'New label', new_namespace_project_label_path(@project.namespace, @project), class: 'btn btn-new', title: 'New label', id: 'new_label_link'
= link_to 'Generate a default set of labels', generate_namespace_project_labels_path(@project.namespace, @project), method: :post, class: 'btn btn-success btn-inverted', title: 'Generate a default set of labels', id: 'generate_labels_link' = link_to 'Generate a default set of labels', generate_namespace_project_labels_path(@project.namespace, @project), method: :post, class: 'btn btn-success btn-inverted', title: 'Generate a default set of labels', id: 'generate_labels_link'
---
title: Allow sorting by due date and priority
merge_request:
author:
...@@ -65,7 +65,7 @@ issues and merge requests assigned to each label. ...@@ -65,7 +65,7 @@ issues and merge requests assigned to each label.
> https://gitlab.com/gitlab-org/gitlab-ce/issues/18554. > https://gitlab.com/gitlab-org/gitlab-ce/issues/18554.
Prioritized labels are like any other label, but sorted by priority. This allows Prioritized labels are like any other label, but sorted by priority. This allows
you to sort issues and merge requests by priority. you to sort issues and merge requests by label priority.
To prioritize labels, navigate to your project's **Issues > Labels** and click To prioritize labels, navigate to your project's **Issues > Labels** and click
on the star icon next to them to put them in the priority list. Click on the on the star icon next to them to put them in the priority list. Click on the
...@@ -77,9 +77,13 @@ having their priority set to null. ...@@ -77,9 +77,13 @@ having their priority set to null.
![Prioritize labels](img/labels_prioritize.png) ![Prioritize labels](img/labels_prioritize.png)
Now that you have labels prioritized, you can use the 'Priority' filter in the Now that you have labels prioritized, you can use the 'Priority' and 'Label
issues or merge requests tracker. Those with the highest priority label, will priority' filters in the issues or merge requests tracker.
appear on top.
The 'Label priority' filter puts issues with the highest priority label on top.
The 'Priority' filter sorts issues by their soonest milestone due date, then by
label priority.
![Filter labels by priority](img/labels_filter_by_priority.png) ![Filter labels by priority](img/labels_filter_by_priority.png)
...@@ -156,4 +160,3 @@ mouse over the label in the issue tracker or wherever else the label is ...@@ -156,4 +160,3 @@ mouse over the label in the issue tracker or wherever else the label is
rendered. rendered.
![Label tooltips](img/labels_description_tooltip.png) ![Label tooltips](img/labels_description_tooltip.png)
...@@ -29,7 +29,7 @@ feature 'Issue prioritization', feature: true do ...@@ -29,7 +29,7 @@ feature 'Issue prioritization', feature: true do
issue_1.labels << label_5 issue_1.labels << label_5
login_as user login_as user
visit namespace_project_issues_path(project.namespace, project, sort: 'priority') visit namespace_project_issues_path(project.namespace, project, sort: 'label_priority')
# Ensure we are indicating that issues are sorted by priority # Ensure we are indicating that issues are sorted by priority
expect(page).to have_selector('.dropdown-toggle', text: 'Label priority') expect(page).to have_selector('.dropdown-toggle', text: 'Label priority')
...@@ -68,7 +68,7 @@ feature 'Issue prioritization', feature: true do ...@@ -68,7 +68,7 @@ feature 'Issue prioritization', feature: true do
issue_6.labels << label_5 # 8 - No priority issue_6.labels << label_5 # 8 - No priority
login_as user login_as user
visit namespace_project_issues_path(project.namespace, project, sort: 'priority') visit namespace_project_issues_path(project.namespace, project, sort: 'label_priority')
expect(page).to have_selector('.dropdown-toggle', text: 'Label priority') expect(page).to have_selector('.dropdown-toggle', text: 'Label priority')
......
...@@ -371,6 +371,46 @@ describe Issue, "Issuable" do ...@@ -371,6 +371,46 @@ describe Issue, "Issuable" do
end end
end end
describe '.order_due_date_and_labels_priority' do
let(:project) { create(:empty_project) }
def create_issue(milestone, labels)
create(:labeled_issue, milestone: milestone, labels: labels, project: project)
end
it 'sorts issues in order of milestone due date, then label priority' do
first_priority = create(:label, project: project, priority: 1)
second_priority = create(:label, project: project, priority: 2)
no_priority = create(:label, project: project)
first_milestone = create(:milestone, project: project, due_date: Time.now)
second_milestone = create(:milestone, project: project, due_date: Time.now + 1.month)
third_milestone = create(:milestone, project: project)
# The issues here are ordered by label priority, to ensure that we don't
# accidentally just sort by creation date.
second_milestone_first_priority = create_issue(second_milestone, [first_priority, second_priority, no_priority])
third_milestone_first_priority = create_issue(third_milestone, [first_priority, second_priority, no_priority])
first_milestone_second_priority = create_issue(first_milestone, [second_priority, no_priority])
second_milestone_second_priority = create_issue(second_milestone, [second_priority, no_priority])
no_milestone_second_priority = create_issue(nil, [second_priority, no_priority])
first_milestone_no_priority = create_issue(first_milestone, [no_priority])
second_milestone_no_labels = create_issue(second_milestone, [])
third_milestone_no_priority = create_issue(third_milestone, [no_priority])
result = Issue.order_due_date_and_labels_priority
expect(result).to eq([first_milestone_second_priority,
first_milestone_no_priority,
second_milestone_first_priority,
second_milestone_second_priority,
second_milestone_no_labels,
third_milestone_first_priority,
no_milestone_second_priority,
third_milestone_no_priority])
end
end
describe '.order_labels_priority' do describe '.order_labels_priority' do
let(:label_1) { create(:label, title: 'label_1', project: issue.project, priority: 1) } let(:label_1) { create(:label, title: 'label_1', project: issue.project, priority: 1) }
let(:label_2) { create(:label, title: 'label_2', project: issue.project, priority: 2) } let(:label_2) { create(:label, title: 'label_2', project: issue.project, priority: 2) }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment