Class: Polaris::Layout::Section
- Defined in:
- app/components/polaris/layout/section.rb
Constant Summary
Constants included from ViewHelper
ViewHelper::POLARIS_HELPERS, ViewHelper::POLARIS_TEXT_STYLES
Constants included from FetchOrFallbackHelper
FetchOrFallbackHelper::InvalidValueError
Instance Attribute Summary collapse
-
#position ⇒ Object
readonly
Returns the value of attribute position.
Instance Method Summary collapse
- #call ⇒ Object
-
#initialize(position:, secondary: false, full_width: false, one_half: false, one_third: false, one_fourth: false, **system_arguments) ⇒ Section
constructor
A new instance of Section.
Methods included from ViewHelper
#polaris_body_styles, #polaris_html_classes, #polaris_html_styles, #polaris_icon_source
Methods included from StylesListHelper
Methods included from OptionHelper
#append_option, #prepend_option
Methods included from FetchOrFallbackHelper
#fetch_or_fallback, #fetch_or_fallback_boolean, #fetch_or_fallback_nested
Methods included from ClassNameHelper
Constructor Details
#initialize(position:, secondary: false, full_width: false, one_half: false, one_third: false, one_fourth: false, **system_arguments) ⇒ Section
Returns a new instance of Section.
8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 |
# File 'app/components/polaris/layout/section.rb', line 8 def initialize( position:, secondary: false, full_width: false, one_half: false, one_third: false, one_fourth: false, **system_arguments ) @position = position @system_arguments = system_arguments @system_arguments[:tag] = :div @system_arguments[:classes] = class_names( @system_arguments[:classes], "Polaris-Layout__Section", "Polaris-Layout__Section--secondary" => secondary, "Polaris-Layout__Section--fullWidth" => full_width, "Polaris-Layout__Section--oneHalf" => one_half, "Polaris-Layout__Section--oneThird" => one_third, "Polaris-Layout__Section--oneFourth" => one_fourth ) end |
Instance Attribute Details
#position ⇒ Object (readonly)
Returns the value of attribute position.
6 7 8 |
# File 'app/components/polaris/layout/section.rb', line 6 def position @position end |
Instance Method Details
#call ⇒ Object
32 33 34 |
# File 'app/components/polaris/layout/section.rb', line 32 def call render(Polaris::BaseComponent.new(**@system_arguments)) { content } end |