Class: Yattho::Beta::Breadcrumbs::Item

Inherits:
Component
  • Object
show all
Defined in:
app/components/yattho/beta/breadcrumbs.rb

Overview

This component is part of ‘Yattho::Beta::Breadcrumbs` and should not be used as a standalone component.

Constant Summary

Constants inherited from Component

Component::INVALID_ARIA_LABEL_TAGS

Constants included from Status::Dsl

Status::Dsl::STATUSES

Constants included from ViewHelper

ViewHelper::HELPERS

Constants included from TestSelectorHelper

TestSelectorHelper::TEST_SELECTOR_TAG

Constants included from FetchOrFallbackHelper

FetchOrFallbackHelper::InvalidValueError

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods inherited from Component

deprecated?, generate_id

Methods included from JoinStyleArgumentsHelper

#join_style_arguments

Methods included from TestSelectorHelper

#add_test_selector

Methods included from FetchOrFallbackHelper

#fetch_or_fallback, #fetch_or_fallback_boolean, #silence_deprecations?

Methods included from ClassNameHelper

#class_names

Constructor Details

#initialize(href:, **system_arguments) ⇒ Item

Returns a new instance of Item.



58
59
60
61
62
63
64
65
# File 'app/components/yattho/beta/breadcrumbs.rb', line 58

def initialize(href:, **system_arguments)
  @href = href
  @system_arguments = deny_tag_argument(**system_arguments)
  @selected = false

  @system_arguments[:tag] = :li
  @system_arguments[:classes] = "breadcrumb-item #{@system_arguments[:classes]}"
end

Instance Attribute Details

#hrefObject

Returns the value of attribute href.



56
57
58
# File 'app/components/yattho/beta/breadcrumbs.rb', line 56

def href
  @href
end

#selectedObject

Returns the value of attribute selected.



56
57
58
# File 'app/components/yattho/beta/breadcrumbs.rb', line 56

def selected
  @selected
end

Instance Method Details

#callObject



67
68
69
70
71
72
73
74
75
76
77
78
# File 'app/components/yattho/beta/breadcrumbs.rb', line 67

def call
  link_arguments = { href: @href }

  if selected
    link_arguments[:'aria-current'] = "page"
    @system_arguments[:classes] = "#{@system_arguments[:classes]} breadcrumb-item-selected"
  end

  render(Yattho::BaseComponent.new(**@system_arguments)) do
    render(Yattho::Beta::Link.new(**link_arguments)) { content }
  end
end