Sha256: 74a3808a8838441b5f0d1db354e9ebb46728128bc38a0be6ea4bdb47dc964ae2

Contents?: true

Size: 1.39 KB

Versions: 6

Compression:

Stored size: 1.39 KB

Contents

<%
  add_gem_component_stylesheet("translation-nav")

  brand ||= false
  brand_helper = GovukPublishingComponents::AppHelpers::BrandHelper.new(brand)
  translation_helper = GovukPublishingComponents::Presenters::TranslationNavHelper.new(local_assigns)

  component_helper = GovukPublishingComponents::Presenters::ComponentWrapperHelper.new(local_assigns)
  component_helper.add_class("gem-c-translation-nav govuk-!-display-none-print #{translation_helper.classes} #{brand_helper.brand_class}")
  component_helper.add_aria_attribute({ label: t("common.translations") })
%>
<% if translation_helper.has_translations? %>
  <%= tag.nav(**component_helper.all_attributes) do %>
    <ul class="gem-c-translation-nav__list">
      <% translation_helper.translations.each.with_index do |translation, i| %>
        <li class="gem-c-translation-nav__list-item">
          <% if translation[:active] %>
            <span lang="<%= translation[:locale] %>"><%= translation[:text] %></span>
          <% else %>
            <%= link_to translation[:text], translation[:base_path],
              hreflang: translation[:locale],
              lang: translation[:locale],
              rel: "alternate",
              class: "govuk-link gem-c-translation-nav__link #{brand_helper.color_class}",
              data: translation[:data_attributes]
            %>
          <% end %>
        </li>
      <% end %>
    </ul>
  <% end %>
<% end %>

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
govuk_publishing_components-51.1.0 app/views/govuk_publishing_components/components/_translation_nav.html.erb
govuk_publishing_components-51.0.0 app/views/govuk_publishing_components/components/_translation_nav.html.erb
govuk_publishing_components-50.0.1 app/views/govuk_publishing_components/components/_translation_nav.html.erb
govuk_publishing_components-50.0.0 app/views/govuk_publishing_components/components/_translation_nav.html.erb
govuk_publishing_components-49.1.0 app/views/govuk_publishing_components/components/_translation_nav.html.erb
govuk_publishing_components-49.0.0 app/views/govuk_publishing_components/components/_translation_nav.html.erb