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

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

Constant Summary

Constants included from IconHelper

IconHelper::DEFAULT_RESOURCE_TYPE_ICONS

Constants included from AmendmentsHelper

AmendmentsHelper::TOTAL_STEPS

Instance Method Summary collapse

Methods included from FiltersHelper

#filter_form_for

Methods included from IconHelper

#component_icon, #manifest_icon, #resource_icon, #resource_type_icon, #resource_type_icon_key, #text_with_resource_icon

Methods included from LayoutHelper

#_icon_classes, #apple_favicon, #application_path, #current_user_unread_data, #extended_navigation_bar, #external_icon, #favicon, #icon, #legacy_favicon, #organization_colors, #role

Methods included from TooltipHelper

#with_tooltip

Methods included from Decidim::ModalHelper

#decidim_modal

Methods included from CheckBoxesTreeHelper

#check_boxes_tree_options, #filter_areas_values, #filter_categories_values, #filter_global_scopes_values, #filter_origin_values, #filter_scopes_values, #filter_text_for, #filter_tree_from_array, #flat_filter_values, #resource_filter_scope_values

Methods included from SanitizeHelper

#decidim_html_escape, #decidim_sanitize, #decidim_sanitize_admin, #decidim_sanitize_editor, #decidim_sanitize_editor_admin, #decidim_sanitize_newsletter, #decidim_url_escape, included

Methods included from Comments::CommentsHelper

#comments_for, #inline_comments_for

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 EndorsableHelper

#current_user_can_endorse?, #endorsement_buttons_cell, #endorsements_blocked?, #endorsements_enabled?, #endorsers_list_cell, #fully_endorsed?, #path_to_create_endorsement, #path_to_destroy_endorsement, #render_endorsement_identity, #show_endorsements_card?

Methods included from ResourceHelper

#linked_classes_filter_values_for, #linked_classes_for, #resource_locator, #resource_title

Methods included from TranslationsHelper

empty_translatable, ensure_translatable, multi_translation, translated_in_current_locale?

Methods included from TranslatableAttributes

#default_locale?

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, #safe_content?, #safe_content_admin?

Methods included from FollowableHelper

#follow_button_for

Methods included from RichTextEditorHelper

included, #text_editor_for

Methods included from MapHelper

#meetings_data_for_map

Methods included from Decidim::MapHelper

#dynamic_map_for, #static_map_link

Methods included from PaginateHelper

#decidim_paginate, #per_page

Methods included from ApplicationHelper

#cell, #edit_link, #extra_admin_link, #html_truncate, #present, #prevent_timeout_seconds, #resolve_presenter_class, #step_cta_url

Methods included from CacheHelper

#cache

Methods included from AmendmentsHelper

#accept_and_reject_buttons_for, #action_button_card_for, #allowed_to_accept_and_reject?, #allowed_to_promote?, #amend_button_for, #amendments_enabled?, #amendments_form_field_for, #amendments_form_fields_label, #amendments_form_fields_value, #can_participate_in_private_space?, #can_react_to_emendation?, #current_step, #emendation_actions_for, #emendation_announcement_for, #promote_button_for, #render_emendation_body, #total_steps, #wizard_aside_back_url, #wizard_header_title

Methods included from ContextualHelpHelper

#floating_help

Methods included from ScopesHelper

#has_visible_scopes?, #scope_name_for_picker, #scopes_picker_field, #scopes_picker_filter, #scopes_select_field, #scopes_select_tag

Methods included from DecidimFormHelper

#areas_for_select, #base_error_messages, #decidim_form_for, #decidim_form_slug_url, #editor_field_tag, #form_field_has_error?, #form_required_explanation, #name_with_locale, #ordered_scopes_descendants, #ordered_scopes_descendants_for_select, #scopes_picker_field_tag, #tab_element_class_for, #translated_field_tag

Methods included from OmniauthHelper

#normalize_provider_name, #oauth_icon, #provider_name

Instance Method Details

#activity_filter_valuesObject

Options to filter meetings by activity.



75
76
77
# File 'decidim-meetings/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 'decidim-meetings/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 'decidim-meetings/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 'decidim-meetings/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 'decidim-meetings/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