2019-12-04 20:38:33 +05:30
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
class EventPresenter < Gitlab::View::Presenter::Delegated
|
2021-11-18 22:05:49 +05:30
|
|
|
presents ::Event, as: :event
|
2019-12-04 20:38:33 +05:30
|
|
|
|
2020-02-01 01:16:34 +05:30
|
|
|
def initialize(subject, **attributes)
|
|
|
|
super
|
|
|
|
|
|
|
|
@visible_to_user_cache = ActiveSupport::Cache::MemoryStore.new
|
|
|
|
end
|
|
|
|
|
|
|
|
# Caching `visible_to_user?` method in the presenter beause it might be called multiple times.
|
2021-11-18 22:05:49 +05:30
|
|
|
delegator_override :visible_to_user?
|
2020-02-01 01:16:34 +05:30
|
|
|
def visible_to_user?(user = nil)
|
|
|
|
@visible_to_user_cache.fetch(user&.id) { super(user) }
|
|
|
|
end
|
|
|
|
|
|
|
|
# implement cache here
|
2019-12-04 20:38:33 +05:30
|
|
|
def resource_parent_name
|
|
|
|
resource_parent&.full_name || ''
|
|
|
|
end
|
|
|
|
|
|
|
|
def target_link_options
|
|
|
|
case resource_parent
|
|
|
|
when Group
|
|
|
|
[event.group, event.target]
|
|
|
|
when Project
|
2020-10-24 23:57:45 +05:30
|
|
|
[event.project, event.target]
|
2019-12-04 20:38:33 +05:30
|
|
|
else
|
|
|
|
''
|
|
|
|
end
|
|
|
|
end
|
2021-01-03 14:25:43 +05:30
|
|
|
|
|
|
|
def target_type_name
|
|
|
|
if design?
|
|
|
|
'Design'
|
|
|
|
elsif wiki_page?
|
|
|
|
'Wiki Page'
|
|
|
|
elsif target_type.present?
|
|
|
|
target_type.titleize
|
|
|
|
else
|
|
|
|
"Project"
|
|
|
|
end.downcase
|
|
|
|
end
|
|
|
|
|
|
|
|
def note_target_type_name
|
|
|
|
return unless note?
|
|
|
|
|
|
|
|
if design_note?
|
|
|
|
'Design'
|
|
|
|
else
|
|
|
|
target.noteable_type.titleize
|
|
|
|
end.downcase
|
|
|
|
end
|
2019-12-04 20:38:33 +05:30
|
|
|
end
|