Module: Decidim::Meetings::Directory::ApplicationHelper

Includes:
CheckBoxesTreeHelper, Comments::CommentsHelper, FiltersHelper, IconHelper, Decidim::MapHelper, MapHelper, MeetingsHelper, SanitizeHelper, PaginateHelper
Defined in:
app/helpers/decidim/meetings/directory/application_helper.rb

Instance Method Summary collapse

Methods included from MeetingsHelper

#author_presenter_for, #calculate_start_and_end_time_of_agenda_items, #current_user_groups?, #display_duration_agenda_items, #google_calendar_event_url, #meeting_description, #meeting_type_badge_css_class, #registration_code_help_text, #validation_state_for

Methods included from ApplicationHelper

#apply_meetings_pack_tags, #filter_origin_values, #iframe_embed_or_live_event_page?, #online_or_hybrid_meeting?, #prevent_timeout_seconds, #render_meeting_body, #render_meeting_sanitize_field, #safe_content?, #safe_content_admin?

Methods included from MapHelper

#meetings_data_for_map

Instance Method Details

#activity_filter_valuesObject

Options to filter meetings by activity.



75
76
77
# File 'app/helpers/decidim/meetings/directory/application_helper.rb', line 75

def activity_filter_values
  %w(all my_meetings).map { |k| [k, t(k, scope: "decidim.meetings.meetings.filters")] }
end

#directory_filter_categories_valuesObject



46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
# File 'app/helpers/decidim/meetings/directory/application_helper.rb', line 46

def directory_filter_categories_values
  participatory_spaces = current_organization.public_participatory_spaces
  list_of_ps = participatory_spaces.flat_map do |current_participatory_space|
    next unless current_participatory_space.respond_to?(:categories)

    sorted_main_categories = current_participatory_space.categories.first_class.includes(:subcategories).sort_by do |category|
      [category.weight, translated_attribute(category.name, current_organization)]
    end

    categories_values = categories_values(sorted_main_categories)

    next if categories_values.empty?

    key_point = current_participatory_space.class.name.gsub("::", "__") + current_participatory_space.id.to_s

    TreeNode.new(
      TreePoint.new(key_point, translated_attribute(current_participatory_space.title, current_organization)),
      categories_values
    )
  end

  list_of_ps.compact!
  TreeNode.new(
    TreePoint.new("", t("decidim.meetings.application_helper.filter_category_values.all")),
    list_of_ps
  )
end

#directory_meeting_spaces_valuesObject



34
35
36
37
38
39
40
41
42
43
44
# File 'app/helpers/decidim/meetings/directory/application_helper.rb', line 34

def directory_meeting_spaces_values
  participatory_spaces = current_organization.public_participatory_spaces

  spaces = participatory_spaces.collect(&:model_name).uniq.map do |participatory_space|
    [participatory_space.name.underscore, participatory_space.human(count: 2)]
  end

  spaces.prepend(["", t("decidim.meetings.application_helper.filter_meeting_space_values.all")])

  filter_tree_from_array(spaces)
end

#filter_date_valuesObject



30
31
32
# File 'app/helpers/decidim/meetings/directory/application_helper.rb', line 30

def filter_date_values
  %w(all upcoming past).map { |k| [k, t(k, scope: "decidim.meetings.meetings.filters.date_values")] }
end

#filter_type_valuesObject



19
20
21
22
23
24
25
26
27
28
# File 'app/helpers/decidim/meetings/directory/application_helper.rb', line 19

def filter_type_values
  type_values = flat_filter_values(*Decidim::Meetings::Meeting::TYPE_OF_MEETING.keys, scope: "decidim.meetings.meetings.filters.type_values").map do |args|
    TreePoint.new(*args)
  end

  TreeNode.new(
    TreePoint.new("", t("decidim.meetings.meetings.filters.type_values.all")),
    type_values
  )
end