Class: Glib::JsonUi::ListBuilders::Section
- Inherits:
-
AbstractBuilder
- Object
- AbstractBuilder
- Glib::JsonUi::ListBuilders::Section
- Defined in:
- app/helpers/glib/json_ui/list_builders.rb
Instance Attribute Summary
Attributes inherited from AbstractBuilder
Instance Method Summary collapse
- #footer(options = {}) ⇒ Object
- #header(options = {}) ⇒ Object
-
#initialize(json, page, template) ⇒ Section
constructor
A new instance of Section.
- #rows(options = {}) ⇒ Object
Constructor Details
#initialize(json, page, template) ⇒ Section
Returns a new instance of Section.
78 79 80 81 |
# File 'app/helpers/glib/json_ui/list_builders.rb', line 78 def initialize(json, page, template) super json, page @template = template end |
Instance Method Details
#footer(options = {}) ⇒ Object
102 103 104 105 106 |
# File 'app/helpers/glib/json_ui/list_builders.rb', line 102 def ( = {}) json. do page.vertical_content() end end |
#header(options = {}) ⇒ Object
83 84 85 86 87 |
# File 'app/helpers/glib/json_ui/list_builders.rb', line 83 def header( = {}) json.header do page.vertical_content() end end |
#rows(options = {}) ⇒ Object
89 90 91 92 93 94 95 96 97 98 99 100 |
# File 'app/helpers/glib/json_ui/list_builders.rb', line 89 def rows( = {}) block = [:builder] json.rows do if (objects = [:objects]) objects.each_with_index do |object, index| block&.call @template, object, index end else block&.call @template end end end |