Class: Decidim::Initiatives::Menu
- Inherits:
-
Object
- Object
- Decidim::Initiatives::Menu
- Defined in:
- lib/decidim/initiatives/menu.rb
Class Method Summary collapse
- .register_admin_initiative_actions_menu! ⇒ Object
- .register_admin_initiative_menu! ⇒ Object
- .register_admin_initiatives_components_menu! ⇒ Object
- .register_admin_initiatives_menu! ⇒ Object
- .register_admin_menu_modules! ⇒ Object
- .register_home_content_block_menu! ⇒ Object
- .register_menu! ⇒ Object
Class Method Details
.register_admin_initiative_actions_menu! ⇒ Object
104 105 106 107 108 109 110 111 112 113 114 115 116 |
# File 'lib/decidim/initiatives/menu.rb', line 104 def self. Decidim. :admin_initiative_actions_menu do || .add_item :answer_initiative, I18n.t("actions.answer", scope: "decidim.initiatives"), decidim_admin_initiatives.edit_initiative_answer_path(current_participatory_space), if: allowed_to?(:answer, :initiative, initiative: current_participatory_space) .add_item :initiative_permissions, I18n.t("actions.permissions", scope: "decidim.admin"), decidim_admin_initiatives.(current_participatory_space, resource_name: :initiative), if: current_participatory_space. && allowed_to?(:update, :initiative, initiative: current_participatory_space) end end |
.register_admin_initiative_menu! ⇒ Object
67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 |
# File 'lib/decidim/initiatives/menu.rb', line 67 def self. Decidim. :admin_initiative_menu do || .add_item :edit_initiative, I18n.t("menu.information", scope: "decidim.admin"), decidim_admin_initiatives.edit_initiative_path(current_participatory_space), icon_name: "information-line", if: allowed_to?(:edit, :initiative, initiative: current_participatory_space) .add_item :initiative_committee_requests, I18n.t("menu.committee_members", scope: "decidim.admin"), decidim_admin_initiatives.initiative_committee_requests_path(current_participatory_space), icon_name: "group-line", if: current_participatory_space.promoting_committee_enabled? && allowed_to?(:manage_membership, :initiative, initiative: current_participatory_space) .add_item :components, I18n.t("menu.components", scope: "decidim.admin"), decidim_admin_initiatives.components_path(current_participatory_space), icon_name: "tools-line", active: is_active_link?(decidim_admin_initiatives.components_path(current_participatory_space), ["decidim/initiatives/admin/components", %w(index new edit)]), if: allowed_to?(:read, :component, initiative: current_participatory_space), submenu: { target_menu: :admin_initiatives_components_menu } .add_item :initiative_attachments, I18n.t("menu.attachments", scope: "decidim.admin"), decidim_admin_initiatives.(current_participatory_space), icon_name: "attachment-2", if: allowed_to?(:read, :attachment, initiative: current_participatory_space) .add_item :moderations, I18n.t("menu.moderations", scope: "decidim.admin"), decidim_admin_initiatives.moderations_path(current_participatory_space), icon_name: "flag-line", if: allowed_to?(:read, :moderation) end end |
.register_admin_initiatives_components_menu! ⇒ Object
46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 |
# File 'lib/decidim/initiatives/menu.rb', line 46 def self. Decidim. :admin_initiatives_components_menu do || current_participatory_space.components.each do |component| caption = translated_attribute(component.name) if component.primary_stat.present? caption += content_tag(:span, component.primary_stat, class: component.primary_stat.zero? ? "component-counter component-counter--off" : "component-counter") end .add_item [component.manifest_name, component.id].join("_"), caption.html_safe, manage_component_path(component), active: is_active_link?(manage_component_path(component)) || is_active_link?(decidim_admin_initiatives.edit_component_path(current_participatory_space, component)) || is_active_link?(decidim_admin_initiatives.(current_participatory_space, component)) || participatory_space_active_link?(component), if: component.manifest.admin_engine # && user_role_config.component_is_accessible?(component.manifest_name) end end end |
.register_admin_initiatives_menu! ⇒ Object
118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 |
# File 'lib/decidim/initiatives/menu.rb', line 118 def self. Decidim. :admin_initiatives_menu do || .add_item :initiatives, I18n.t("menu.initiatives", scope: "decidim.admin"), decidim_admin_initiatives.initiatives_path, position: 1.0, active: is_active_link?(decidim_admin_initiatives.initiatives_path), if: allowed_to?(:index, :initiative) .add_item :initiatives_types, I18n.t("menu.initiatives_types", scope: "decidim.admin"), decidim_admin_initiatives.initiatives_types_path, active: is_active_link?(decidim_admin_initiatives.initiatives_types_path), if: allowed_to?(:manage, :initiative_type) .add_item :initiatives_settings, I18n.t("menu.initiatives_settings", scope: "decidim.admin"), decidim_admin_initiatives.edit_initiatives_setting_path( Decidim::InitiativesSettings.find_or_create_by!( organization: current_organization ) ), active: is_active_link?( decidim_admin_initiatives.edit_initiatives_setting_path( Decidim::InitiativesSettings.find_or_create_by!(organization: current_organization) ) ), if: allowed_to?(:update, :initiatives_settings) end end |
.register_admin_menu_modules! ⇒ Object
28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 |
# File 'lib/decidim/initiatives/menu.rb', line 28 def self. Decidim. :admin_menu_modules do || .add_item :initiatives, I18n.t("menu.initiatives", scope: "decidim.admin"), decidim_admin_initiatives.initiatives_path, icon_name: "lightbulb-flash-line", position: 2.4, active: is_active_link?(decidim_admin_initiatives.initiatives_path) || is_active_link?(decidim_admin_initiatives.initiatives_types_path) || is_active_link?( decidim_admin_initiatives.edit_initiatives_setting_path( Decidim::InitiativesSettings.find_or_create_by!(organization: current_organization) ) ), if: allowed_to?(:enter, :space_area, space_name: :initiatives) end end |
.register_home_content_block_menu! ⇒ Object
17 18 19 20 21 22 23 24 25 26 |
# File 'lib/decidim/initiatives/menu.rb', line 17 def self. Decidim. :home_content_block_menu do || .add_item :initiatives, I18n.t("menu.initiatives", scope: "decidim"), decidim_initiatives.initiatives_path, position: 30, active: :inclusive, if: !Decidim::InitiativesType.joins(:scopes).where(organization: current_organization).all.empty? end end |
.register_menu! ⇒ Object
6 7 8 9 10 11 12 13 14 15 |
# File 'lib/decidim/initiatives/menu.rb', line 6 def self. Decidim. :menu do || .add_item :initiatives, I18n.t("menu.initiatives", scope: "decidim"), decidim_initiatives.initiatives_path, position: 2.4, active: %r{^/(initiatives|create_initiative)}, if: !Decidim::InitiativesType.joins(:scopes).where(organization: current_organization).all.empty? end end |