2011-10-08 17:36:38 -04:00
|
|
|
module IssuesHelper
|
2011-11-09 14:26:24 -05:00
|
|
|
def project_issues_filter_path project, params = {}
|
|
|
|
params[:f] ||= cookies['issue_filter']
|
|
|
|
project_issues_path project, params
|
|
|
|
end
|
2012-02-05 05:58:02 -05:00
|
|
|
|
|
|
|
def link_to_issue_assignee(issue)
|
|
|
|
project = issue.project
|
|
|
|
|
|
|
|
tm = project.team_member_by_id(issue.assignee_id)
|
|
|
|
if tm
|
2012-08-10 18:07:50 -04:00
|
|
|
link_to issue.assignee_name, project_team_member_path(project, tm), class: "author_link"
|
2012-02-05 05:58:02 -05:00
|
|
|
else
|
|
|
|
issue.assignee_name
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def link_to_issue_author(issue)
|
|
|
|
project = issue.project
|
|
|
|
|
|
|
|
tm = project.team_member_by_id(issue.author_id)
|
|
|
|
if tm
|
2012-08-10 18:07:50 -04:00
|
|
|
link_to issue.author_name, project_team_member_path(project, tm), class: "author_link"
|
2012-02-05 05:58:02 -05:00
|
|
|
else
|
|
|
|
issue.author_name
|
|
|
|
end
|
|
|
|
end
|
2012-06-21 01:29:53 -04:00
|
|
|
|
|
|
|
def issue_css_classes issue
|
|
|
|
classes = "issue"
|
|
|
|
classes << " closed" if issue.closed
|
|
|
|
classes << " today" if issue.today?
|
|
|
|
classes
|
|
|
|
end
|
2012-06-27 14:20:35 -04:00
|
|
|
|
2012-10-01 09:39:19 -04:00
|
|
|
def issue_tags
|
2012-06-27 14:20:35 -04:00
|
|
|
@project.issues.tag_counts_on(:labels).map(&:name)
|
|
|
|
end
|
2012-08-13 01:38:00 -04:00
|
|
|
|
2012-08-16 18:13:22 -04:00
|
|
|
# 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')
|
2012-08-13 20:49:18 -04:00
|
|
|
end
|
2012-10-09 15:09:46 -04:00
|
|
|
|
|
|
|
def issues_filter
|
|
|
|
{
|
|
|
|
all: "all",
|
|
|
|
closed: "closed",
|
|
|
|
to_me: "assigned-to-me",
|
|
|
|
open: "open"
|
|
|
|
}
|
|
|
|
end
|
2011-10-08 17:36:38 -04:00
|
|
|
end
|