Class: Glib::JsonUi::ViewBuilder::Panels::List

Inherits:
View show all
Defined in:
app/helpers/glib/json_ui/view_builder/panels.rb

Instance Attribute Summary

Attributes inherited from JsonUiElement

#json, #page

Instance Method Summary collapse

Methods inherited from View

component_name

Methods inherited from JsonUiElement

#initialize, #props

Constructor Details

This class inherits a constructor from Glib::JsonUi::JsonUiElement

Instance Method Details

#firstSection(block) ⇒ Object



280
281
282
283
284
# File 'app/helpers/glib/json_ui/view_builder/panels.rb', line 280

def firstSection(block)
  json.sections [1] do
    block.call page.list_section_builder
  end
end

#sections(blocks) ⇒ Object



286
287
288
289
290
291
292
293
294
# File 'app/helpers/glib/json_ui/view_builder/panels.rb', line 286

def sections(blocks)
  json.sections do
    blocks.each do |block|
      json.child! do
        block.call page.list_section_builder
      end
    end
  end
end