class AppSecondaryNavigationComponent::Item
Attributes
Public Class Methods
Source
# File app/components/app_secondary_navigation_component.rb, line 23 def initialize(href:, text: nil, selected: false, ticked: false) @href = href @text = html_escape(text) @selected = selected @ticked = ticked end
Public Instance Methods
Source
# File app/components/app_secondary_navigation_component.rb, line 30 def call content || @text || raise(ArgumentError, "no text or content") end