Class: Decidim::Meetings::MeetingPresenter

Inherits:
ResourcePresenter
  • Object
show all
Includes:
ActionView::Helpers::UrlHelper, ResourceHelper, SanitizeHelper
Defined in:
app/presenters/decidim/meetings/meeting_presenter.rb

Overview

Decorator for meetings

Direct Known Subclasses

MeetingEditionPresenter

Instance Method Summary collapse

Instance Method Details

#avatar_url(_variant = nil) ⇒ Object



110
111
112
# File 'app/presenters/decidim/meetings/meeting_presenter.rb', line 110

def avatar_url(_variant = nil)
  ActionController::Base.helpers.asset_pack_path("media/images/decidim_meetings.svg")
end

#badgeObject



102
103
104
# File 'app/presenters/decidim/meetings/meeting_presenter.rb', line 102

def badge
  ""
end

#can_be_contacted?Boolean

Returns:

  • (Boolean)


118
119
120
# File 'app/presenters/decidim/meetings/meeting_presenter.rb', line 118

def can_be_contacted?
  false
end

#closing_report(links: false, extras: false, strip_tags: false, all_locales: false) ⇒ Object



67
68
69
70
71
# File 'app/presenters/decidim/meetings/meeting_presenter.rb', line 67

def closing_report(links: false, extras: false, strip_tags: false, all_locales: false)
  return unless meeting

  content_handle_locale(meeting.closing_report, all_locales, extras, links, strip_tags)
end

#dates_paramObject

start time and end time in rfc3339 format removing ‘-’ and ‘:’ symbols joined with ‘/’. This format is used to generate the dates query param in google calendars event link



85
86
87
88
89
90
91
# File 'app/presenters/decidim/meetings/meeting_presenter.rb', line 85

def dates_param
  return unless meeting

  [meeting.start_time, meeting.end_time].map do |date|
    date.rfc3339.tr("-:", "")
  end.join("/")
end

#deleted?Boolean

Returns:

  • (Boolean)


114
115
116
# File 'app/presenters/decidim/meetings/meeting_presenter.rb', line 114

def deleted?
  false
end

#description(links: false, extras: true, strip_tags: false, all_locales: false) ⇒ Object



31
32
33
34
35
# File 'app/presenters/decidim/meetings/meeting_presenter.rb', line 31

def description(links: false, extras: true, strip_tags: false, all_locales: false)
  return unless meeting

  content_handle_locale(meeting.description, all_locales, extras, links, strip_tags)
end

#display_mentionObject



21
22
23
# File 'app/presenters/decidim/meetings/meeting_presenter.rb', line 21

def display_mention
  link_to title, meeting_path
end

#editor_description(all_locales: false, extras: true) ⇒ Object



37
38
39
40
41
# File 'app/presenters/decidim/meetings/meeting_presenter.rb', line 37

def editor_description(all_locales: false, extras: true)
  return unless meeting

  editor_locales(meeting.description, all_locales, extras:)
end

#formatted_proposals_titlesObject



133
134
135
136
137
# File 'app/presenters/decidim/meetings/meeting_presenter.rb', line 133

def formatted_proposals_titles
  return unless meeting

  proposals.map.with_index { |proposal, index| "#{index + 1}) #{proposal.title}\n" }
end

#has_tooltip?Boolean

Returns:

  • (Boolean)


122
123
124
# File 'app/presenters/decidim/meetings/meeting_presenter.rb', line 122

def has_tooltip?
  false
end

#location(all_locales: false) ⇒ Object



43
44
45
46
47
48
49
# File 'app/presenters/decidim/meetings/meeting_presenter.rb', line 43

def location(all_locales: false)
  return unless meeting

  handle_locales(meeting.location, all_locales) do |content|
    content
  end
end

#location_hints(all_locales: false) ⇒ Object



51
52
53
54
55
56
57
# File 'app/presenters/decidim/meetings/meeting_presenter.rb', line 51

def location_hints(all_locales: false)
  return unless meeting

  handle_locales(meeting.location_hints, all_locales) do |content|
    content
  end
end

#meetingObject



13
14
15
# File 'app/presenters/decidim/meetings/meeting_presenter.rb', line 13

def meeting
  __getobj__
end

#meeting_pathObject



17
18
19
# File 'app/presenters/decidim/meetings/meeting_presenter.rb', line 17

def meeting_path
  Decidim::ResourceLocatorPresenter.new(meeting).path
end

#nameObject

Next methods are used for present a Meeting As Proposal Author



94
95
96
# File 'app/presenters/decidim/meetings/meeting_presenter.rb', line 94

def name
  title
end

#nicknameObject



98
99
100
# File 'app/presenters/decidim/meetings/meeting_presenter.rb', line 98

def nickname
  ""
end

#profile_pathObject



106
107
108
# File 'app/presenters/decidim/meetings/meeting_presenter.rb', line 106

def profile_path
  resource_locator(meeting).path
end

#proposalsObject



126
127
128
129
130
131
# File 'app/presenters/decidim/meetings/meeting_presenter.rb', line 126

def proposals
  return unless Decidim::Meetings.enable_proposal_linking
  return unless meeting

  @proposals ||= meeting.authored_proposals.load
end

#registration_email_custom_content(links: false, all_locales: false) ⇒ Object



73
74
75
76
77
78
79
80
# File 'app/presenters/decidim/meetings/meeting_presenter.rb', line 73

def registration_email_custom_content(links: false, all_locales: false)
  return unless meeting

  handle_locales(meeting.registration_email_custom_content, all_locales) do |content|
    renderer = Decidim::ContentRenderers::HashtagRenderer.new(sanitized(content))
    renderer.render(links:).html_safe
  end
end

#registration_terms(all_locales: false) ⇒ Object



59
60
61
62
63
64
65
# File 'app/presenters/decidim/meetings/meeting_presenter.rb', line 59

def registration_terms(all_locales: false)
  return unless meeting

  handle_locales(meeting.registration_terms, all_locales) do |content|
    content
  end
end

#sanitized(content) ⇒ Object



139
140
141
# File 'app/presenters/decidim/meetings/meeting_presenter.rb', line 139

def sanitized(content)
  decidim_sanitize_editor(content)
end

#title(links: false, html_escape: false, all_locales: false) ⇒ Object



25
26
27
28
29
# File 'app/presenters/decidim/meetings/meeting_presenter.rb', line 25

def title(links: false, html_escape: false, all_locales: false)
  return unless meeting

  super meeting.title, links, html_escape, all_locales
end