Sha256: 9cb06aaf43555408f8ac95d31290454672febba760f02a3abc5fd1f5cc4d8757

Contents?: true

Size: 1.77 KB

Versions: 16

Compression:

Stored size: 1.77 KB

Contents

module UiBibz::Ui::Core

  # Create a button group
  #
  # 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:
  # * +state+ - State of element with +symbol+ value:
  #   (+:default+, +:primary+, +:info+, +:warning+, +:danger+)
  # * +size+ - Size of element with +symbol+ value:
  #   (+:xs+, +:sm+, +:lg+)
  # * +position+ - Position vertical or horizontal with +symbol+ value:
  #   (+:vertical+, +:horizontal+)
  #
  # ==== Signatures
  #
  #   UiBibz::Ui::Core::ButtonGroup.new(options = nil, html_options = nil) do
  #     ...
  #   end
  #
  # ==== Examples
  #
  #   UiBibz::Ui::Core::ButtonGroup.new(position: :vertical, size: :xs) do
  #     UiBibz::Ui::Core.Button.new('test').render
  #     UiBibz::Ui::Core.Button.new('test2').render
  #   end.render
  #
  # ==== Helper
  #
  #   button_group(content, options = {}, html_options = {})
  #
  #   button_group(options = {}, html_options = {}) do
  #     content
  #   end
  #
  class ButtonGroup < 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 :div, @content, class_and_html_options(["btn-#{ type }", size, position]).merge({ role: type })
    end

  private

    def type
      @options[:type] || :group
    end

    def size
      "btn-group-#{ @options[:size] }" if @options[:size]
    end

    def position
      "btn-group-#{ @options[:position] }" if @options[:position]
    end

  end
end

Version data entries

16 entries across 16 versions & 1 rubygems

Version Path
ui_bibz-1.2.5.3 lib/ui_bibz/ui/core/button/button_group.rb
ui_bibz-1.2.5.2 lib/ui_bibz/ui/core/button/button_group.rb
ui_bibz-1.2.5.1 lib/ui_bibz/ui/core/button/button_group.rb
ui_bibz-1.2.5 lib/ui_bibz/ui/core/button/button_group.rb
ui_bibz-1.2.4 lib/ui_bibz/ui/core/button/button_group.rb
ui_bibz-1.2.3 lib/ui_bibz/ui/core/button/button_group.rb
ui_bibz-1.2.2 lib/ui_bibz/ui/core/button/button_group.rb
ui_bibz-1.2.1 lib/ui_bibz/ui/core/button/button_group.rb
ui_bibz-1.2.0 lib/ui_bibz/ui/core/button/button_group.rb
ui_bibz-1.1.7 lib/ui_bibz/ui/core/button/button_group.rb
ui_bibz-1.1.6 lib/ui_bibz/ui/core/button/button_group.rb
ui_bibz-1.1.5 lib/ui_bibz/ui/core/button/button_group.rb
ui_bibz-1.1.4 lib/ui_bibz/ui/core/button/button_group.rb
ui_bibz-1.1.3 lib/ui_bibz/ui/core/button/button_group.rb
ui_bibz-1.1.2 lib/ui_bibz/ui/core/button/button_group.rb
ui_bibz-1.1.1 lib/ui_bibz/ui/core/button/button_group.rb