Add sort dropdown to project labels page and group labels page
Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
This commit is contained in:
parent
a5517ada11
commit
8d19f4b4a6
11 changed files with 142 additions and 2 deletions
|
@ -12,6 +12,7 @@ class Groups::LabelsController < Groups::ApplicationController
|
|||
format.html do
|
||||
@labels = @group.labels
|
||||
.optionally_search(params[:search])
|
||||
.order_by(sort)
|
||||
.page(params[:page])
|
||||
end
|
||||
format.json do
|
||||
|
@ -117,4 +118,8 @@ class Groups::LabelsController < Groups::ApplicationController
|
|||
include_descendant_groups: params[:include_descendant_groups],
|
||||
search: params[:search]).execute
|
||||
end
|
||||
|
||||
def sort
|
||||
@sort ||= params[:sort] || 'name_asc'
|
||||
end
|
||||
end
|
||||
|
|
|
@ -163,7 +163,12 @@ class Projects::LabelsController < Projects::ApplicationController
|
|||
LabelsFinder.new(current_user,
|
||||
project_id: @project.id,
|
||||
include_ancestor_groups: params[:include_ancestor_groups],
|
||||
search: params[:search]).execute
|
||||
search: params[:search],
|
||||
sort: sort).execute
|
||||
end
|
||||
|
||||
def sort
|
||||
@sort ||= params[:sort] || 'name_asc'
|
||||
end
|
||||
|
||||
def authorize_admin_labels!
|
||||
|
|
|
@ -54,7 +54,11 @@ class LabelsFinder < UnionFinder
|
|||
end
|
||||
|
||||
def sort(items)
|
||||
items.reorder(title: :asc)
|
||||
if params[:sort]
|
||||
items.order_by(params[:sort])
|
||||
else
|
||||
items.reorder(title: :asc)
|
||||
end
|
||||
end
|
||||
|
||||
def with_title(items)
|
||||
|
|
|
@ -101,6 +101,17 @@ module SortingHelper
|
|||
}
|
||||
end
|
||||
|
||||
def label_sort_options_hash
|
||||
{
|
||||
sort_value_name => sort_title_name,
|
||||
sort_value_name_desc => sort_title_name_desc,
|
||||
sort_value_recently_created => sort_title_recently_created,
|
||||
sort_value_oldest_created => sort_title_oldest_created,
|
||||
sort_value_recently_updated => sort_title_recently_updated,
|
||||
sort_value_oldest_updated => sort_title_oldest_updated
|
||||
}
|
||||
end
|
||||
|
||||
def sortable_item(item, path, sorted_by)
|
||||
link_to item, path, class: sorted_by == item ? 'is-active' : ''
|
||||
end
|
||||
|
|
|
@ -6,6 +6,7 @@ class Label < ActiveRecord::Base
|
|||
include Subscribable
|
||||
include Gitlab::SQL::Pattern
|
||||
include OptionallySearch
|
||||
include Sortable
|
||||
|
||||
# Represents a "No Label" state used for filtering Issues and Merge
|
||||
# Requests that have no label assigned.
|
||||
|
@ -41,6 +42,8 @@ class Label < ActiveRecord::Base
|
|||
scope :with_lists_and_board, -> { joins(lists: :board).merge(List.movable) }
|
||||
scope :on_group_boards, ->(group_id) { with_lists_and_board.where(boards: { group_id: group_id }) }
|
||||
scope :on_project_boards, ->(project_id) { with_lists_and_board.where(boards: { project_id: project_id }) }
|
||||
scope :order_name_asc, -> { reorder(title: :asc) }
|
||||
scope :order_name_desc, -> { reorder(title: :desc) }
|
||||
|
||||
def self.prioritized(project)
|
||||
joins(:priorities)
|
||||
|
|
|
@ -22,6 +22,7 @@
|
|||
%span.input-group-append
|
||||
%button.btn.btn-default{ type: "submit", "aria-label" => _('Submit search') }
|
||||
= icon("search")
|
||||
= render 'shared/labels/sort_dropdown'
|
||||
|
||||
.labels-container.prepend-top-5
|
||||
- if @labels.any?
|
||||
|
|
|
@ -22,6 +22,7 @@
|
|||
%span.input-group-append
|
||||
%button.btn.btn-default{ type: "submit", "aria-label" => _('Submit search') }
|
||||
= icon("search")
|
||||
= render 'shared/labels/sort_dropdown'
|
||||
|
||||
.labels-container.prepend-top-10
|
||||
- if can_admin_label
|
||||
|
|
9
app/views/shared/labels/_sort_dropdown.html.haml
Normal file
9
app/views/shared/labels/_sort_dropdown.html.haml
Normal file
|
@ -0,0 +1,9 @@
|
|||
- sort_title = label_sort_options_hash[@sort] || sort_title_name_desc
|
||||
.dropdown.inline
|
||||
%button.dropdown-toggle{ type: 'button', data: { toggle: 'dropdown' } }
|
||||
= sort_title
|
||||
= icon('chevron-down')
|
||||
%ul.dropdown-menu.dropdown-menu-right.dropdown-menu-sort
|
||||
%li
|
||||
- label_sort_options_hash.each do |value, title|
|
||||
= sortable_item(title, page_filter_path(sort: value, label: true), sort_title)
|
|
@ -0,0 +1,5 @@
|
|||
---
|
||||
title: Add sorting for labels on labels page
|
||||
merge_request: 21642
|
||||
author:
|
||||
type: added
|
48
spec/features/groups/labels/sort_labels_spec.rb
Normal file
48
spec/features/groups/labels/sort_labels_spec.rb
Normal file
|
@ -0,0 +1,48 @@
|
|||
# frozen_string_literal: true
|
||||
|
||||
require 'spec_helper'
|
||||
|
||||
describe 'Sort labels', :js do
|
||||
let(:user) { create(:user) }
|
||||
let(:group) { create(:group) }
|
||||
let!(:label1) { create(:group_label, title: 'Foo', description: 'Lorem ipsum', group: group) }
|
||||
let!(:label2) { create(:group_label, title: 'Bar', description: 'Fusce consequat', group: group) }
|
||||
|
||||
before do
|
||||
group.add_maintainer(user)
|
||||
sign_in(user)
|
||||
|
||||
visit group_labels_path(group)
|
||||
end
|
||||
|
||||
it 'sorts by title by default' do
|
||||
expect(page).to have_button('Name')
|
||||
|
||||
# assert default sorting
|
||||
within '.other-labels' do
|
||||
expect(page.all('.label-list-item').first.text).to include('Bar')
|
||||
expect(page.all('.label-list-item').last.text).to include('Foo')
|
||||
end
|
||||
end
|
||||
|
||||
it 'sorts by date' do
|
||||
click_button 'Name'
|
||||
|
||||
sort_options = find('ul.dropdown-menu-sort li').all('a').collect(&:text)
|
||||
|
||||
expect(sort_options[0]).to eq('Name')
|
||||
expect(sort_options[1]).to eq('Name, descending')
|
||||
expect(sort_options[2]).to eq('Last created')
|
||||
expect(sort_options[3]).to eq('Oldest created')
|
||||
expect(sort_options[4]).to eq('Last updated')
|
||||
expect(sort_options[5]).to eq('Oldest updated')
|
||||
|
||||
click_link 'Name, descending'
|
||||
|
||||
# assert default sorting
|
||||
within '.other-labels' do
|
||||
expect(page.all('.label-list-item').first.text).to include('Foo')
|
||||
expect(page.all('.label-list-item').last.text).to include('Bar')
|
||||
end
|
||||
end
|
||||
end
|
48
spec/features/projects/labels/sort_labels_spec.rb
Normal file
48
spec/features/projects/labels/sort_labels_spec.rb
Normal file
|
@ -0,0 +1,48 @@
|
|||
# frozen_string_literal: true
|
||||
|
||||
require 'spec_helper'
|
||||
|
||||
describe 'Sort labels', :js do
|
||||
let(:user) { create(:user) }
|
||||
let(:project) { create(:project) }
|
||||
let!(:label1) { create(:label, title: 'Foo', description: 'Lorem ipsum', project: project) }
|
||||
let!(:label2) { create(:label, title: 'Bar', description: 'Fusce consequat', project: project) }
|
||||
|
||||
before do
|
||||
project.add_maintainer(user)
|
||||
sign_in(user)
|
||||
|
||||
visit project_labels_path(project)
|
||||
end
|
||||
|
||||
it 'sorts by title by default' do
|
||||
expect(page).to have_button('Name')
|
||||
|
||||
# assert default sorting
|
||||
within '.other-labels' do
|
||||
expect(page.all('.label-list-item').first.text).to include('Bar')
|
||||
expect(page.all('.label-list-item').last.text).to include('Foo')
|
||||
end
|
||||
end
|
||||
|
||||
it 'sorts by date' do
|
||||
click_button 'Name'
|
||||
|
||||
sort_options = find('ul.dropdown-menu-sort li').all('a').collect(&:text)
|
||||
|
||||
expect(sort_options[0]).to eq('Name')
|
||||
expect(sort_options[1]).to eq('Name, descending')
|
||||
expect(sort_options[2]).to eq('Last created')
|
||||
expect(sort_options[3]).to eq('Oldest created')
|
||||
expect(sort_options[4]).to eq('Last updated')
|
||||
expect(sort_options[5]).to eq('Oldest updated')
|
||||
|
||||
click_link 'Name, descending'
|
||||
|
||||
# assert default sorting
|
||||
within '.other-labels' do
|
||||
expect(page.all('.label-list-item').first.text).to include('Foo')
|
||||
expect(page.all('.label-list-item').last.text).to include('Bar')
|
||||
end
|
||||
end
|
||||
end
|
Loading…
Reference in a new issue