Sha256: 1f45435e47d0e55a28e234794e88317590d09c67d2cc708ddb1da362645bedbe

Contents?: true

Size: 1.57 KB

Versions: 6

Compression:

Stored size: 1.57 KB

Contents

# frozen_string_literal: true

module UiBibz::Ui::Core::Navigations
  # Create a PageLink
  #
  # This element is an extend of UiBibz::Ui::Core::Navigations::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+ - status of element with symbol value:
  #   (+:active+)
  # * +url+ - String
  # * +badge+ - String
  # * +link_html_options+ - Hash
  #
  # ==== Signatures
  #
  #   UiBibz::Ui::Core::Navigations::PageLink.new(content, options = nil, html_options = nil)
  #
  #   UiBibz::Ui::Core::Navigations::PageLink.new(options = nil, html_options = nil) do
  #     content
  #   end
  #
  # ==== Examples
  #
  #   UiBibz::Ui::Core::Navigations::PageLink.new(content, { badge: 15, url: '/', state: :active, link_html_options: { class: 'link1' }},{ class: 'test' }).render
  #
  #   UiBibz::Ui::Core::Navigations::PageLink.new({glyph: { name: 'eye', size: 3 }, { class: 'test' }) do
  #     'Home'
  #   end.render
  #
  class PaginationLink < 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 :li, html_options do
        link_to content, options[:url], class: 'page-link'
      end
    end

    private

    def component_html_classes
      'page-item'
    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/navigations/components/pagination_link.rb
ui_bibz-2.5.5 lib/ui_bibz/ui/core/navigations/components/pagination_link.rb
ui_bibz-2.5.3 lib/ui_bibz/ui/core/navigations/components/pagination_link.rb
ui_bibz-2.5.2 lib/ui_bibz/ui/core/navigations/components/pagination_link.rb
ui_bibz-2.5.1 lib/ui_bibz/ui/core/navigations/components/pagination_link.rb
ui_bibz-2.5.0 lib/ui_bibz/ui/core/navigations/components/pagination_link.rb