Sha256: c351fb409275904b5ede552a2cedd2b4f601f529ea780f9825eae91db8a71790

Contents?: true

Size: 1.16 KB

Versions: 23

Compression:

Stored size: 1.16 KB

Contents

module UiBibz::Ui::Ux::Tables

  # Create a Thead
  #
  # 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:
  # * +status+ - status of élement with symbol value:
  #   (+:inverse+, +:default+)
  #
  # ==== Signatures
  #
  #   UiBibz::Ui::Ux::Thead.new(content, options = nil, html_options = nil)
  #
  #   UiBibz::Ui::Ux::Thead.new(options = nil, html_options = nil) do
  #     content
  #   end
  #
  # ==== Examples
  #
  #   UiBibz::Ui::Ux::Thead.new(content, { status: :inverse }).render
  #
  class Thead < 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 render
      content_tag :thead, content, html_options
    end

    private

    def status
      "thead-#{ @options[:status] }" unless @options[:status].nil?
    end

  end
end

Version data entries

23 entries across 23 versions & 1 rubygems

Version Path
ui_bibz-2.0.0.beta2.6 lib/ui_bibz/ui/ux/tables/components/thead.rb
ui_bibz-2.0.0.beta2.5 lib/ui_bibz/ui/ux/tables/components/thead.rb
ui_bibz-2.0.0.beta2.4 lib/ui_bibz/ui/ux/tables/components/thead.rb
ui_bibz-2.0.0.beta2.3 lib/ui_bibz/ui/ux/tables/components/thead.rb
ui_bibz-2.0.0.beta2.2 lib/ui_bibz/ui/ux/tables/components/thead.rb
ui_bibz-2.0.0.beta2.1 lib/ui_bibz/ui/ux/tables/components/thead.rb
ui_bibz-2.0.0.beta2 lib/ui_bibz/ui/ux/tables/components/thead.rb
ui_bibz-2.0.0.alpha32 lib/ui_bibz/ui/ux/tables/components/thead.rb
ui_bibz-2.0.0.alpha31 lib/ui_bibz/ui/ux/tables/components/thead.rb
ui_bibz-2.0.0.alpha30 lib/ui_bibz/ui/ux/tables/components/thead.rb
ui_bibz-2.0.0.alpha29 lib/ui_bibz/ui/ux/tables/components/thead.rb
ui_bibz-2.0.0.alpha28 lib/ui_bibz/ui/ux/tables/components/thead.rb
ui_bibz-2.0.0.alpha27 lib/ui_bibz/ui/ux/tables/components/thead.rb
ui_bibz-2.0.0.alpha26 lib/ui_bibz/ui/ux/tables/components/thead.rb
ui_bibz-2.0.0.alpha24 lib/ui_bibz/ui/ux/tables/components/thead.rb
ui_bibz-2.0.0.alpha23 lib/ui_bibz/ui/ux/tables/components/thead.rb
ui_bibz-2.0.0.alpha22 lib/ui_bibz/ui/ux/tables/components/thead.rb
ui_bibz-2.0.0.alpha21 lib/ui_bibz/ui/ux/tables/components/thead.rb
ui_bibz-2.0.0.alpha20 lib/ui_bibz/ui/ux/tables/components/thead.rb
ui_bibz-2.0.0.alpha19 lib/ui_bibz/ui/ux/tables/components/thead.rb