Module: Decidim::LayoutHelper
- Included in:
- AddressCell, Amendable::EmendationActionsCell, AuthorCell, CardMCell, DiffCell, EndorsementButtonsCell, FollowButtonCell, IconHelper, UserConversationCell, UserConversationsCell, VersionsListItemCell, WizardStepFormCell
- Defined in:
- app/helpers/decidim/layout_helper.rb
Overview
View helpers related to the layout.
Instance Method Summary collapse
- #_icon_classes(options = {}) ⇒ Object
- #apple_favicon ⇒ Object
- #application_path(path) ⇒ Object
- #extended_navigation_bar(items, max_items: 5) ⇒ Object
-
#external_icon(path, options = {}) ⇒ Object
Outputs a SVG icon from an external file.
-
#favicon ⇒ Object
Public: Generates a set of meta tags that generate the different favicon versions for an organization.
-
#icon(name, options = {}) ⇒ Object
Outputs an SVG-based icon.
- #legacy_favicon ⇒ Object
-
#organization_colors ⇒ Object
Renders a view with the customizable CSS variables in two flavours: 1.
-
#role(options = {}) ⇒ Object
Allows to create role attribute according to accessibility rules.
Instance Method Details
#_icon_classes(options = {}) ⇒ Object
123 124 125 126 127 |
# File 'app/helpers/decidim/layout_helper.rb', line 123 def _icon_classes( = {}) classes = [:remove_icon_class] ? [] : ["icon"] classes += [[:class]] classes.compact end |
#apple_favicon ⇒ Object
18 19 20 21 22 23 |
# File 'app/helpers/decidim/layout_helper.rb', line 18 def apple_favicon icon_image = current_organization.attached_uploader(:favicon).variant_url(:medium, host: current_organization.host) return unless icon_image favicon_link_tag(icon_image, rel: "apple-touch-icon", type: "image/png") end |
#application_path(path) ⇒ Object
102 103 104 105 106 107 108 109 110 111 112 113 114 |
# File 'app/helpers/decidim/layout_helper.rb', line 102 def application_path(path) # Force the path to be returned without the protocol and host even when a # custom asset host has been defined. The host parameter needs to be a # non-nil because otherwise it will be set to the asset host at # ActionView::Helpers::AssetUrlHelper#compute_asset_host. img_path = asset_pack_path(path, host: "", protocol: :relative) path = Rails.public_path.join(img_path.sub(%r{^/}, "")) return unless File.exist?(path) path rescue ::Webpacker::Manifest::MissingEntryError nil end |
#extended_navigation_bar(items, max_items: 5) ⇒ Object
129 130 131 132 133 134 135 136 137 138 139 140 141 |
# File 'app/helpers/decidim/layout_helper.rb', line 129 def (items, max_items: 5) return unless items.any? extra_items = items.slice((max_items + 1)..-1) || [] active_item = items.find { |item| item[:active] } controller.view_context.render partial: "decidim/shared/extended_navigation_bar", locals: { items: items, extra_items: extra_items, active_item: active_item, max_items: max_items } end |
#external_icon(path, options = {}) ⇒ Object
Outputs a SVG icon from an external file. It apparently renders an image tag, but then a JS script kicks in and replaces it with an inlined SVG version.
path - The asset’s path
Returns an <img /> tag with the SVG icon.
87 88 89 90 91 92 93 94 95 96 97 98 99 100 |
# File 'app/helpers/decidim/layout_helper.rb', line 87 def external_icon(path, = {}) classes = _icon_classes() + ["external-icon"] if path.split(".").last == "svg" icon_path = application_path(path) return unless icon_path attributes = { class: classes.join(" ") }.merge() asset = File.read(icon_path) asset.gsub("<svg ", "<svg#{tag_builder.(attributes)} ").html_safe else image_pack_tag(path, class: classes.join(" "), style: "display: none") end end |
#favicon ⇒ Object
Public: Generates a set of meta tags that generate the different favicon versions for an organization.
Returns a safe String with the versions.
10 11 12 13 14 15 16 |
# File 'app/helpers/decidim/layout_helper.rb', line 10 def favicon return if current_organization.favicon.blank? safe_join(Decidim::OrganizationFaviconUploader::SIZES.map do |version, size| favicon_link_tag(current_organization.attached_uploader(:favicon).variant_url(version, host: current_organization.host), sizes: "#{size}x#{size}") end) end |
#icon(name, options = {}) ⇒ Object
Outputs an SVG-based icon.
name - The String with the icon name. options - The Hash options used to customize the icon (default {}):
:width - The Number of width in pixels (optional).
:height - The Number of height in pixels (optional).
:title - The title for the SVG element (optional, similar to alt for img)
:aria_label - The String to set as aria label (optional).
:aria_hidden - The Truthy value to enable aria_hidden (optional).
:role - The String to set as the role (optional).
:class - The String to add as a CSS class (optional).
Returns a String.
45 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 73 74 75 76 77 78 |
# File 'app/helpers/decidim/layout_helper.rb', line 45 def icon(name, = {}) = .with_indifferent_access html_properties = {} html_properties["width"] = [:width] html_properties["height"] = [:height] html_properties["aria-label"] = [:aria_label] || [:"aria-label"] html_properties["role"] = [:role] || "img" html_properties["aria-hidden"] = [:aria_hidden] || [:"aria-hidden"] html_properties["class"] = (["icon--#{name}"] + _icon_classes()).join(" ") title = ["title"] || html_properties["aria-label"] if title.blank? && html_properties["role"] == "img" # This will make the accessibility audit tools happy as with the "img" # role, the alternative text (aria-label) and title are required for the # element. This will also force the SVG to be hidden because otherwise # the screen reader would announce the icon name which can be in # different language (English) than the page language which is not # allowed. title = name html_properties["aria-label"] = title html_properties["aria-hidden"] = true end href = Decidim.cors_enabled ? "" : asset_pack_path("media/images/icons.svg") content_tag :svg, html_properties do inner = content_tag :title, title inner += content_tag :use, nil, "href" => "#{href}#icon-#{name}" inner end end |
#legacy_favicon ⇒ Object
25 26 27 28 29 30 |
# File 'app/helpers/decidim/layout_helper.rb', line 25 def legacy_favicon icon_image = current_organization.attached_uploader(:favicon).variant_url(:small, host: current_organization.host) return unless icon_image favicon_link_tag(icon_image.gsub(".png", ".ico"), rel: "icon", sizes: "any", type: nil) end |
#organization_colors ⇒ Object
Renders a view with the customizable CSS variables in two flavours:
-
as a hexadecimal valid CSS color (ie: #ff0000)
-
as a disassembled RGB components (ie: 255,0,0)
Example:
–primary: #ff0000; –primary-rgb: 255,0,0
Hexadecimal variables can be used as a normal CSS color:
color: var(–primary)
While the disassembled variant can be used where you need to manipulate the color somehow (ie: adding a background transparency):
background-color: rgba(var(–primary-rgb), 0.5)
160 161 162 163 |
# File 'app/helpers/decidim/layout_helper.rb', line 160 def organization_colors css = current_organization.colors.each.map { |k, v| "--#{k}: #{v};--#{k}-rgb: #{v[1..2].hex},#{v[3..4].hex},#{v[5..6].hex};" }.join render partial: "layouts/decidim/organization_colors", locals: { css: css } end |
#role(options = {}) ⇒ Object
Allows to create role attribute according to accessibility rules
Returns role attribute string if role option is specified
119 120 121 |
# File 'app/helpers/decidim/layout_helper.rb', line 119 def role( = {}) "role=\"#{[:role]}\" " if [:role] end |