Sha256: ff947ae190c0f99d316acb889cc7cc9b8818bfadb6a59ab3c71e3d7bbec7cc2f

Contents?: true

Size: 1.34 KB

Versions: 7

Compression:

Stored size: 1.34 KB

Contents

module MaterialDesign
  module ButtonHelper
    def md_button_to(name = nil, options = nil, html_options = {})
      variant = html_options[:variant] || "filled"
      color = html_options[:color] || "primary"
      icon = html_options[:icon]
      html_options[:class] = "button--container button__#{variant}--#{color}"

      button_to(options, html_options.except(:variant, :color, :icon)) do
        content_tag(:div, class: "layer-state layer-state__#{variant}") do
          content_tag(:div, class: "button--content") do
            concat(render("material_design/icons/icon", locals: { icon: icon, size: 18 })) if icon
            concat(name)
          end
        end
      end
    end

    def md_button_tag(name = nil, content_or_options = nil, html_options = {})
      variant = html_options[:variant] || "filled"
      color = html_options[:color] || "primary"
      icon = html_options[:icon]
      html_options[:class] = "button--container button__#{variant}--#{color}"

      button_tag(content_or_options, html_options.except(:variant, :color)) do
        content_tag(:div, class: "layer-state layer-state__#{variant}") do
          content_tag(:div, class: "button--content") do
            concat(render("material_design/icons/icon", locals: { icon: icon, size: 18 })) if icon
            concat(name)
          end
        end
      end
    end
  end
end

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
material_design-0.10.0 app/helpers/material_design/button_helper.rb
material_design-0.9.1 app/helpers/material_design/button_helper.rb
material_design-0.9.0 app/helpers/material_design/button_helper.rb
material_design-0.8.0 app/helpers/material_design/button_helper.rb
material_design-0.7.0 app/helpers/material_design/button_helper.rb
material_design-0.6.2 app/helpers/material_design/button_helper.rb
material_design-0.6.1 app/helpers/material_design/button_helper.rb