Sha256: fb20cd554df9455ac27f7ce9b4525f8d755529c111bb925e61626b76ad87bbb3
Contents?: true
Size: 1.29 KB
Versions: 2
Compression:
Stored size: 1.29 KB
Contents
# frozen_string_literal: true 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 element with symbol value: # (+:active+) # class NavLinkLink < UiBibz::Ui::Core::Component # UiBibz::Ui::Core::Component.initialize # Render html tag def pre_render link_to options[:url], html_options do concat glyph_and_content_html concat tag_html if options[:tag] end end private def component_html_classes if options[:nav_type] == 'list-group' 'list-group-item list-group-item-action' else 'nav-link' end end def component_html_options html_tag_base = { 'data-toggle' => 'tab', role: 'tab' } case options[:nav_type] when 'nav-tabs' html_tag_base when 'list-group' html_tag_base.merge("aria-controls": sanitize_text(content)) else {} end.merge(options[:a_html] || {}) end end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
ui_bibz-3.0.0.alpha3 | lib/ui_bibz/ui/core/navigations/components/nav_link_link.rb |
ui_bibz-3.0.0.alpha2 | lib/ui_bibz/ui/core/navigations/components/nav_link_link.rb |