2012-10-01 15:39:19 +02:00
|
|
|
module EventsHelper
|
|
|
|
def link_to_author(event)
|
2013-01-22 18:05:01 +01:00
|
|
|
author = event.author
|
2012-10-01 15:39:19 +02:00
|
|
|
|
2013-01-22 18:05:01 +01:00
|
|
|
if author
|
|
|
|
link_to author.name, user_path(author.username)
|
2012-10-01 15:39:19 +02:00
|
|
|
else
|
|
|
|
event.author_name
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def event_action_name(event)
|
|
|
|
target = if event.target_type
|
|
|
|
event.target_type.titleize.downcase
|
|
|
|
else
|
|
|
|
'project'
|
|
|
|
end
|
|
|
|
|
|
|
|
[event.action_name, target].join(" ")
|
|
|
|
end
|
2012-10-01 15:58:13 +02:00
|
|
|
|
2012-11-05 19:12:26 +01:00
|
|
|
def event_filter_link key, tooltip
|
|
|
|
key = key.to_s
|
|
|
|
inactive = if @event_filter.active? key
|
|
|
|
nil
|
|
|
|
else
|
|
|
|
'inactive'
|
|
|
|
end
|
|
|
|
|
|
|
|
content_tag :div, class: "filter_icon #{inactive}" do
|
2013-01-09 22:02:41 +01:00
|
|
|
link_to dashboard_path, class: 'has_tooltip event_filter_link', id: "#{key}_event_filter", 'data-original-title' => tooltip do
|
2013-01-10 07:43:25 +01:00
|
|
|
content_tag :i, nil, class: icon_for_event[key]
|
2012-11-05 19:12:26 +01:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
2013-01-10 07:43:25 +01:00
|
|
|
|
|
|
|
def icon_for_event
|
|
|
|
{
|
|
|
|
EventFilter.push => "icon-upload-alt",
|
|
|
|
EventFilter.merged => "icon-check",
|
|
|
|
EventFilter.comments => "icon-comments",
|
|
|
|
EventFilter.team => "icon-user",
|
|
|
|
}
|
|
|
|
end
|
2012-10-01 15:39:19 +02:00
|
|
|
end
|