Class: GovukPublishingComponents::AppHelpers::TaxonBreadcrumbs
- Inherits:
-
Object
- Object
- GovukPublishingComponents::AppHelpers::TaxonBreadcrumbs
- Defined in:
- lib/govuk_publishing_components/app_helpers/taxon_breadcrumbs.rb
Defined Under Namespace
Classes: ContentItem
Instance Method Summary collapse
-
#breadcrumbs ⇒ Hash
Generate a breadcrumb trail for a taxon, using the taxon_parent link field.
-
#initialize(content_item) ⇒ TaxonBreadcrumbs
constructor
A new instance of TaxonBreadcrumbs.
Constructor Details
#initialize(content_item) ⇒ TaxonBreadcrumbs
Returns a new instance of TaxonBreadcrumbs.
5 6 7 |
# File 'lib/govuk_publishing_components/app_helpers/taxon_breadcrumbs.rb', line 5 def initialize(content_item) @content_item = TaxonBreadcrumbs::ContentItem.new(content_item) end |
Instance Method Details
#breadcrumbs ⇒ Hash
Generate a breadcrumb trail for a taxon, using the taxon_parent link field
13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 |
# File 'lib/govuk_publishing_components/app_helpers/taxon_breadcrumbs.rb', line 13 def ordered_parents = all_parents.map.with_index do |parent, index| { title: parent.title, url: parent.base_path, is_page_parent: index.zero?, } end ordered_parents << { title: "Home", url: "/", is_page_parent: ordered_parents.empty?, } ordered_parents.reverse end |