Module: Decidim::DecidimAwesome::Admin::ConfigConstraintsHelpers
- Includes:
- TranslatableAttributes
- Included in:
- ConfigController, CustomRedirectsController, MenuHacksController, Permissions
- Defined in:
- app/helpers/decidim/decidim_awesome/admin/config_constraints_helpers.rb
Constant Summary collapse
- OTHER_MANIFESTS =
[:none, :system, :process_groups].freeze
Instance Method Summary collapse
- #check(status) ⇒ Object
- #component_manifests(space = nil) ⇒ Object
- #components_list(manifest, slug) ⇒ Object
-
#enabled_configs(vars) ⇒ Object
returns only non :disabled vars in config.
- #md5(text) ⇒ Object
- #participatory_space_manifests ⇒ Object
- #participatory_spaces_list(manifest) ⇒ Object
- #translate_constraint_value(constraint, key) ⇒ Object
Instance Method Details
#check(status) ⇒ Object
[View source]
13 14 15 |
# File 'app/helpers/decidim/decidim_awesome/admin/config_constraints_helpers.rb', line 13 def check(status) content_tag(:span, icon(status ? "check-line" : "close-line", class: "inline-block", aria_label: status, role: "img"), class: "fill-#{status ? "success" : "alert"}") end |
#component_manifests(space = nil) ⇒ Object
[View source]
32 33 34 35 36 37 38 |
# File 'app/helpers/decidim/decidim_awesome/admin/config_constraints_helpers.rb', line 32 def component_manifests(space = nil) return {} if OTHER_MANIFESTS.include?(space) Decidim.component_manifests.pluck(:name).to_h do |name| [name.to_sym, I18n.t("decidim.components.#{name}.name")] end end |
#components_list(manifest, slug) ⇒ Object
[View source]
49 50 51 52 53 54 55 56 57 |
# File 'app/helpers/decidim/decidim_awesome/admin/config_constraints_helpers.rb', line 49 def components_list(manifest, slug) space = model_for_manifest(manifest) return {} unless space&.column_names&.include? "slug" components = Component.where(participatory_space: space.find_by(slug:)) components.to_h do |item| [item.id, "#{item.id}: #{translated_attribute(item.name)}"] end end |
#enabled_configs(vars) ⇒ Object
returns only non :disabled vars in config
18 19 20 21 22 |
# File 'app/helpers/decidim/decidim_awesome/admin/config_constraints_helpers.rb', line 18 def enabled_configs(vars) vars.filter do |conf| config_enabled?(conf) end end |
#md5(text) ⇒ Object
[View source]
79 80 81 |
# File 'app/helpers/decidim/decidim_awesome/admin/config_constraints_helpers.rb', line 79 def md5(text) Digest::MD5.hexdigest(text) end |
#participatory_space_manifests ⇒ Object
[View source]
24 25 26 27 28 29 30 |
# File 'app/helpers/decidim/decidim_awesome/admin/config_constraints_helpers.rb', line 24 def participatory_space_manifests manifests = OTHER_MANIFESTS.index_with { |m| I18n.t("decidim.decidim_awesome.admin.config.#{m}") } Decidim.participatory_space_manifests.pluck(:name).each do |name| manifests[name.to_sym] = I18n.t("decidim.admin.menu.#{name}") end manifests end |
#participatory_spaces_list(manifest) ⇒ Object
[View source]
40 41 42 43 44 45 46 47 |
# File 'app/helpers/decidim/decidim_awesome/admin/config_constraints_helpers.rb', line 40 def participatory_spaces_list(manifest) space = model_for_manifest(manifest) return {} if space.blank? space.where(organization: current_organization).to_h do |item| [item.try(:slug) || item.id.to_s, translated_attribute(item.title)] end end |
#translate_constraint_value(constraint, key) ⇒ Object
[View source]
59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 |
# File 'app/helpers/decidim/decidim_awesome/admin/config_constraints_helpers.rb', line 59 def translate_constraint_value(constraint, key) value = constraint.settings[key] case key.to_sym when :participatory_space_manifest participatory_space_manifests[value.to_sym] || value when :participatory_space_slug manifest = constraint.settings["participatory_space_manifest"] participatory_spaces_list(manifest)[value] || value when :component_manifest component_manifests[value.to_sym] || value when :component_id component = Component.find_by(id: value) return "#{component.id}: #{translated_attribute(component.name)}" if component value else value end end |