Sha256: a71c9b25797a1a3fd10a4ccf802991b03deda299492b066940df32305baa1663

Contents?: true

Size: 1.28 KB

Versions: 2

Compression:

Stored size: 1.28 KB

Contents

module UiBibz::Ui::Core::Boxes::Components

  # Create a card image
  #
  # ==== 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:
  # * +position+ - Symbol
  #   (+top+, +bottom+)
  #
  # ==== Signatures
  #
  #   UiBibz::Ui::Core::Boxes::CardImage.new(content, options = nil, html_options = nil)
  #
  #   UiBibz::Ui::Core::Boxes::CardImage.new(options = nil, html_options = nil) do
  #     content
  #   end
  #
  # ==== Examples
  #
  #   UiBibz::Ui::Core::Boxes::CardImage.new.render
  #
  #   UiBibz::Ui::Core::Boxes::CardImage.new do
  #     "/assets/images/test.png"
  #   end.render
  #
  class CardImage < 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
      #image_tag content, html_options
      image_tag asset_path("assets/#{content}"), html_options
    end

  private

    def component_html_classes
      position
    end

    def position
      "card-img-#{ @options[:position] || :top }"
    end

  end
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
ui_bibz-2.0.2 lib/ui_bibz/ui/core/boxes/components/card_image.rb
ui_bibz-2.0.1 lib/ui_bibz/ui/core/boxes/components/card_image.rb