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
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
gitlab-ce
Commits
4ce034ca
Commit
4ce034ca
authored
Aug 16, 2012
by
Dmitriy Zaporozhets
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #1247 from tsigo/feature/no_milestone_filter
Allow filtering issues that have no milestone or assignee
parents
b2c6ba97
feee3838
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
69 additions
and
4 deletions
+69
-4
app/controllers/issues_controller.rb
app/controllers/issues_controller.rb
+11
-2
app/helpers/issues_helper.rb
app/helpers/issues_helper.rb
+7
-0
app/views/issues/index.html.haml
app/views/issues/index.html.haml
+2
-2
spec/requests/issues_spec.rb
spec/requests/issues_spec.rb
+49
-0
No files found.
app/controllers/issues_controller.rb
View file @
4ce034ca
...
...
@@ -144,10 +144,19 @@ class IssuesController < ApplicationController
else
@project
.
issues
.
opened
end
@issues
=
@issues
.
where
(
assignee_id:
params
[
:assignee_id
])
if
params
[
:assignee_id
].
present?
@issues
=
@issues
.
where
(
milestone_id:
params
[
:milestone_id
])
if
params
[
:milestone_id
].
present?
@issues
=
@issues
.
tagged_with
(
params
[
:label_name
])
if
params
[
:label_name
].
present?
@issues
=
@issues
.
includes
(
:author
,
:project
).
order
(
"updated_at"
)
# Filter by specific assignee_id (or lack thereof)?
if
params
[
:assignee_id
].
present?
@issues
=
@issues
.
where
(
assignee_id:
(
params
[
:assignee_id
]
==
'0'
?
nil
:
params
[
:assignee_id
]))
end
# Filter by specific milestone_id (or lack thereof)?
if
params
[
:milestone_id
].
present?
@issues
=
@issues
.
where
(
milestone_id:
(
params
[
:milestone_id
]
==
'0'
?
nil
:
params
[
:milestone_id
]))
end
@issues
end
...
...
app/helpers/issues_helper.rb
View file @
4ce034ca
...
...
@@ -36,4 +36,11 @@ module IssuesHelper
def
issue_tags
@project
.
issues
.
tag_counts_on
(
:labels
).
map
(
&
:name
)
end
# Returns an OpenStruct object suitable for use by <tt>options_from_collection_for_select</tt>
# to allow filtering issues by an unassigned User or Milestone
def
unassigned_filter
# Milestone uses :title, Issue uses :name
OpenStruct
.
new
(
id:
0
,
title:
'Unspecified'
,
name:
'Unassigned'
)
end
end
app/views/issues/index.html.haml
View file @
4ce034ca
...
...
@@ -49,8 +49,8 @@
.right
=
form_tag
project_issues_path
(
@project
),
method: :get
,
class: :right
do
=
select_tag
(
:label_name
,
options_for_select
(
issue_tags
,
params
[
:label_name
]),
prompt:
"Labels"
)
=
select_tag
(
:assignee_id
,
options_from_collection_for_select
(
@project
.
users
.
all
,
"id"
,
"name"
,
params
[
:assignee_id
]),
prompt:
"Assignee"
)
=
select_tag
(
:milestone_id
,
options_from_collection_for_select
(
@project
.
milestones
.
order
(
"id desc"
).
all
,
"id"
,
"title"
,
params
[
:milestone_id
]),
prompt:
"Milestone"
)
=
select_tag
(
:assignee_id
,
options_from_collection_for_select
(
[
unassigned_filter
]
+
@project
.
users
.
all
,
"id"
,
"name"
,
params
[
:assignee_id
]),
prompt:
"Assignee"
)
=
select_tag
(
:milestone_id
,
options_from_collection_for_select
(
[
unassigned_filter
]
+
@project
.
milestones
.
order
(
"id desc"
).
all
,
"id"
,
"title"
,
params
[
:milestone_id
]),
prompt:
"Milestone"
)
=
hidden_field_tag
:f
,
params
[
:f
]
.clearfix
...
...
spec/requests/issues_spec.rb
View file @
4ce034ca
...
...
@@ -89,4 +89,53 @@ describe "Issues" do
page
.
should
have_content
'gitlab'
end
end
describe
"Filter issue"
do
before
do
[
'foobar'
,
'barbaz'
,
'gitlab'
].
each
do
|
title
|
@issue
=
Factory
:issue
,
author:
@user
,
assignee:
@user
,
project:
project
,
title:
title
end
@issue
=
Issue
.
first
@issue
.
milestone
=
Factory
(
:milestone
,
project:
project
)
@issue
.
assignee
=
nil
@issue
.
save
end
it
"should allow filtering by issues with no specified milestone"
do
visit
project_issues_path
(
project
,
milestone_id:
'0'
)
page
.
should_not
have_content
'foobar'
page
.
should
have_content
'barbaz'
page
.
should
have_content
'gitlab'
end
it
"should allow filtering by a specified milestone"
do
visit
project_issues_path
(
project
,
milestone_id:
@issue
.
milestone
.
id
)
page
.
should
have_content
'foobar'
page
.
should_not
have_content
'barbaz'
page
.
should_not
have_content
'gitlab'
end
it
"should allow filtering by issues with no specified assignee"
do
visit
project_issues_path
(
project
,
assignee_id:
'0'
)
page
.
should
have_content
'foobar'
page
.
should_not
have_content
'barbaz'
page
.
should_not
have_content
'gitlab'
end
it
"should allow filtering by a specified assignee"
do
visit
project_issues_path
(
project
,
assignee_id:
@user
.
id
)
page
.
should_not
have_content
'foobar'
page
.
should
have_content
'barbaz'
page
.
should
have_content
'gitlab'
end
end
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