Sha256: 362993670f42d529e86e3342a060fe693a6db427e47296daecf4130190c85d68
Contents?: true
Size: 1.33 KB
Versions: 37
Compression:
Stored size: 1.33 KB
Contents
module UiBibz::Ui::Core::Boxes::Components # Create a card footer # # ==== 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: # # ==== Signatures # # UiBibz::Ui::Core::Boxes::CardFooter.new(content, options = nil, html_options = nil) # # UiBibz::Ui::Core::Boxes::CardFooter.new(options = nil, html_options = nil) do # content # end # # ==== Examples # # UiBibz::Ui::Core::Boxes::CardFooter.new.render # # UiBibz::Ui::Core::Boxes::CardFooter.new do # 'Exemple' # end.render # class CardFooter < 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 :div, glyph_and_content_html, html_options end private def muted "text-muted" unless @options[:muted].nil? end def component_html_classes ["card-footer", muted, outline] end def outline "text-#{ @options[:status] } border-#{ @options[:status] } bg-transparent" if @options[:outline] end end end
Version data entries
37 entries across 37 versions & 1 rubygems