Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
G
gitlab-ce
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Boxiang Sun
gitlab-ce
Commits
ab5d5b7e
Commit
ab5d5b7e
authored
Sep 26, 2017
by
Bob Van Landuyt
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Make sure all queries are limited to the page size
And fix some pagination bugs
parent
7a3ba8e9
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
30 additions
and
20 deletions
+30
-20
app/finders/group_descendants_finder.rb
app/finders/group_descendants_finder.rb
+27
-17
spec/controllers/groups_controller_spec.rb
spec/controllers/groups_controller_spec.rb
+3
-3
No files found.
app/finders/group_descendants_finder.rb
View file @
ab5d5b7e
...
...
@@ -10,23 +10,20 @@ class GroupDescendantsFinder
end
def
execute
Kaminari
.
paginate_array
(
children
)
# The children array might be extended with the ancestors of projects when
# filtering. In that case, take the maximum so the aray does not get limited
# Otherwise, allow paginating through the search results
#
total_count
=
[
children
.
size
,
subgroup_count
+
project_count
].
max
Kaminari
.
paginate_array
(
children
,
total_count:
total_count
)
end
def
subgroup_count
@subgroup_count
||=
if
defined?
(
@children
)
children
.
count
{
|
child
|
child
.
is_a?
(
Group
)
}
else
subgroups
.
count
end
@subgroup_count
||=
subgroups
.
count
end
def
project_count
@project_count
||=
if
defined?
(
@children
)
children
.
count
{
|
child
|
child
.
is_a?
(
Project
)
}
else
projects
.
count
end
@project_count
||=
projects
.
count
end
private
...
...
@@ -57,14 +54,19 @@ class GroupDescendantsFinder
member_count
]
subgroups_with_counts
=
subgroups
.
with_route
.
select
(
group_selects
)
subgroups_with_counts
=
subgroups
.
with_route
.
page
(
params
[
:page
]).
per
(
per_page
).
select
(
group_selects
)
group_page_count
=
subgroups_with_counts
.
total_pages
subgroup_page
=
subgroups_with_counts
.
current_page
paginated_projects
=
projects
.
with_route
.
page
(
subgroup_page
-
group_page_count
)
.
per
(
per_page
-
subgroups_with_counts
.
size
)
if
params
[
:filter
]
ancestors_for_project_search
=
ancestors_for_groups
(
Group
.
where
(
id:
p
rojects_matching_filter
.
select
(
:namespace_id
)))
ancestors_for_project_search
=
ancestors_for_groups
(
Group
.
where
(
id:
p
aginated_projects
.
select
(
:namespace_id
)))
subgroups_with_counts
=
ancestors_for_project_search
.
with_route
.
select
(
group_selects
)
|
subgroups_with_counts
end
@children
=
subgroups_with_counts
+
p
rojects
.
with_route
@children
=
subgroups_with_counts
+
p
aginated_projects
end
def
direct_child_groups
...
...
@@ -110,7 +112,7 @@ class GroupDescendantsFinder
else
direct_child_groups
end
groups
.
sort
(
params
[
:sort
]
)
groups
.
order_by
(
sort
)
end
def
projects_for_user
...
...
@@ -123,7 +125,7 @@ class GroupDescendantsFinder
def
projects_matching_filter
projects_for_user
.
search
(
params
[
:filter
])
.
where
(
namespace:
all_descendant_groups
)
.
where
(
namespace:
all_
visible_
descendant_groups
)
end
def
projects
...
...
@@ -134,6 +136,14 @@ class GroupDescendantsFinder
else
direct_child_projects
end
projects
.
sort
(
params
[
:sort
])
projects
.
order_by
(
sort
)
end
def
sort
params
.
fetch
(
:sort
,
'id_asc'
)
end
def
per_page
params
.
fetch
(
:per_page
,
Kaminari
.
config
.
default_per_page
)
end
end
spec/controllers/groups_controller_spec.rb
View file @
ab5d5b7e
...
...
@@ -174,18 +174,18 @@ describe GroupsController do
end
context
'with subgroups and projects'
,
:nested_groups
do
let!
(
:first_page_subgroups
)
{
create_list
(
:group
,
Kaminari
.
config
.
default_per_page
,
parent:
group
)
}
let!
(
:other_subgroup
)
{
create
(
:group
,
:public
,
parent:
group
)
}
let!
(
:project
)
{
create
(
:project
,
:public
,
namespace:
group
)
}
let!
(
:first_page_subgroups
)
{
create_list
(
:group
,
Kaminari
.
config
.
default_per_page
,
parent:
group
)
}
it
'contains all subgroups'
do
get
:children
,
id:
group
.
to_param
,
sort:
'id_
de
sc'
,
format: :json
get
:children
,
id:
group
.
to_param
,
sort:
'id_
a
sc'
,
format: :json
expect
(
assigns
(
:children
)).
to
contain_exactly
(
*
first_page_subgroups
)
end
it
'contains the project and group on the second page'
do
get
:children
,
id:
group
.
to_param
,
sort:
'id_
de
sc'
,
page:
2
,
format: :json
get
:children
,
id:
group
.
to_param
,
sort:
'id_
a
sc'
,
page:
2
,
format: :json
expect
(
assigns
(
:children
)).
to
contain_exactly
(
other_subgroup
,
project
)
end
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment