2012-09-07 18:57:13 +02:00
|
|
|
module ProjectsHelper
|
|
|
|
def grouper_project_members(project)
|
|
|
|
@project.users_projects.sort_by(&:project_access).reverse.group_by(&:project_access)
|
|
|
|
end
|
2012-09-10 08:13:45 +02:00
|
|
|
|
|
|
|
def remove_from_team_message(project, member)
|
|
|
|
"You are going to remove #{member.user_name} from #{project.name}. Are you sure?"
|
|
|
|
end
|
2012-10-01 15:39:19 +02:00
|
|
|
|
|
|
|
def link_to_project project
|
2012-12-09 09:56:15 +01:00
|
|
|
link_to project do
|
|
|
|
title = content_tag(:strong, project.name)
|
|
|
|
|
|
|
|
if project.namespace
|
|
|
|
namespace = content_tag(:span, "#{project.namespace.human_name} / ", class: 'tiny')
|
|
|
|
title = namespace + title
|
|
|
|
end
|
|
|
|
|
|
|
|
title
|
|
|
|
end
|
2012-10-01 15:39:19 +02:00
|
|
|
end
|
2012-10-29 22:45:11 +01:00
|
|
|
|
2013-01-17 21:35:45 +01:00
|
|
|
def link_to_member(project, author, opts = {})
|
|
|
|
default_opts = { avatar: true }
|
|
|
|
opts = default_opts.merge(opts)
|
|
|
|
|
2012-12-13 04:14:05 +01:00
|
|
|
return "(deleted)" unless author
|
|
|
|
|
2013-01-17 21:35:45 +01:00
|
|
|
author_html = ""
|
|
|
|
|
2012-12-13 04:14:05 +01:00
|
|
|
# Build avatar image tag
|
2013-01-17 21:35:45 +01:00
|
|
|
author_html << image_tag(gravatar_icon(author.try(:email)), width: 16, class: "lil_av") if opts[:avatar]
|
2012-12-13 04:14:05 +01:00
|
|
|
|
2013-01-11 20:16:37 +01:00
|
|
|
# Build name span tag
|
2013-01-17 21:35:45 +01:00
|
|
|
author_html << content_tag(:span, sanitize(author.name), class: 'author')
|
2012-12-13 04:14:05 +01:00
|
|
|
|
2013-01-17 21:35:45 +01:00
|
|
|
author_html = author_html.html_safe
|
2012-12-13 04:14:05 +01:00
|
|
|
|
|
|
|
tm = project.team_member_by_id(author)
|
|
|
|
|
2013-01-11 20:16:37 +01:00
|
|
|
if tm
|
|
|
|
link_to author_html, project_team_member_path(project, tm), class: "author_link"
|
|
|
|
else
|
|
|
|
author_html
|
2013-01-17 21:35:45 +01:00
|
|
|
end.html_safe
|
2012-12-13 04:14:05 +01:00
|
|
|
end
|
|
|
|
|
2012-10-29 22:45:11 +01:00
|
|
|
def tm_path team_member
|
|
|
|
project_team_member_path(@project, team_member)
|
|
|
|
end
|
2012-12-12 11:02:29 +01:00
|
|
|
|
|
|
|
def project_title project
|
|
|
|
if project.group
|
|
|
|
project.name_with_namespace
|
|
|
|
else
|
|
|
|
project.name
|
|
|
|
end
|
|
|
|
end
|
2012-09-07 18:57:13 +02:00
|
|
|
end
|