Sha256: dcff1a96ecf15052533ad2032d4d7fa9d2126d8a668d3d838ca8aa87e2650e2b

Contents?: true

Size: 1.2 KB

Versions: 6

Compression:

Stored size: 1.2 KB

Contents

# frozen_string_literal: true

module UiBibz::Ui::Core::Layouts
  # Create a row
  #
  # This element is an extend of UiBibz::Ui::Core::Component.
  #
  # ==== Attributes
  #
  # * +content+ - Content of element
  # * +options+ - Options of element
  # * +html_options+ - Html Options of element
  #
  # ==== Options
  #
  # You can add HTML attributes using the +html_options+.
  # You can pass arguments in options attribute:
  # * +type+ - Symbol | :form
  #
  # ==== Signatures
  #
  #   UiBibz::Ui::Core::Layouts::Row.new(content, options = {}, html_options = {})
  #
  #   UiBibz::Ui::Core::Layouts::Row.new(options = {}, html_options = {}) do
  #     #content
  #   end
  #
  # ==== Helper
  #
  #  row(content, options = {}, html_options = {})
  #
  #  row(options = {}, html_options = {}) do
  #    content
  #  end
  #
  class Row < UiBibz::Ui::Core::Component
    # See UiBibz::Ui::Core::Component.initialize
    def initialize(content = nil, options = nil, html_options = nil, &block)
      super
    end

    # Render html tag
    def pre_render
      content_tag :div, content, html_options
    end

    private

    def component_html_classes
      options[:type] == :form ? 'form-row' : 'row'
    end
  end
end

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
ui_bibz-2.5.6 lib/ui_bibz/ui/core/layouts/row.rb
ui_bibz-2.5.5 lib/ui_bibz/ui/core/layouts/row.rb
ui_bibz-2.5.3 lib/ui_bibz/ui/core/layouts/row.rb
ui_bibz-2.5.2 lib/ui_bibz/ui/core/layouts/row.rb
ui_bibz-2.5.1 lib/ui_bibz/ui/core/layouts/row.rb
ui_bibz-2.5.0 lib/ui_bibz/ui/core/layouts/row.rb