Class: Yattho::Alpha::Layout::Sidebar

Inherits:
Component
  • Object
show all
Defined in:
app/components/yattho/alpha/layout.rb

Overview

The layout’s sidebar content.

Constant Summary collapse

TAG_DEFAULT =
:div
TAG_OPTIONS =
[TAG_DEFAULT, :aside, :nav, :section].freeze

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 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(tag: TAG_DEFAULT, **system_arguments) ⇒ Sidebar

Returns a new instance of Sidebar.



266
267
268
269
270
271
272
273
274
# File 'app/components/yattho/alpha/layout.rb', line 266

def initialize(tag: TAG_DEFAULT, **system_arguments)
  @system_arguments = system_arguments

  @system_arguments[:tag] = fetch_or_fallback(TAG_OPTIONS, tag, TAG_DEFAULT)
  @system_arguments[:classes] = class_names(
    "Layout-sidebar",
    @system_arguments[:classes]
  )
end

Instance Method Details

#callObject



276
277
278
# File 'app/components/yattho/alpha/layout.rb', line 276

def call
  render(Yattho::BaseComponent.new(**@system_arguments)) { content }
end