Sha256: 2bdb1575f100836695a5553c7a8d2b5a2de2fe345bb08ad48da4def04700fd60
Contents?: true
Size: 1.11 KB
Versions: 36
Compression:
Stored size: 1.11 KB
Contents
module UiBibz::Ui::Core::Navigations # Create a NavLinkLink # # 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+ - status of élement with symbol value: # (+:active+) # class NavLinkSpan < UiBibz::Ui::Core::Component # 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 :span, html_options do concat glyph_and_content_html concat tag_html if options[:tag] end end private def component_html_classes "nav-link" end def component_html_options { "data-toggle" => "tab", role: 'tab' } end def component_html_data super add_html_data "link", options[:link] if options[:link] end end end
Version data entries
36 entries across 36 versions & 1 rubygems