Sha256: 1708f8420e10ffd1a610e91fe8f1f14568d743ada76f72f32143a8c32e4f0fb6
Contents?: true
Size: 1.43 KB
Versions: 1
Compression:
Stored size: 1.43 KB
Contents
module LatoCore class Elements::Button::Cell < Cell @@requested_args = [:label] @@default_args = { id: '', type: 'link', url: '', style: '', icon: nil, icon_align: 'left', method: 'get', block: false, remote: false, confirmation: { message: nil, positive_response: nil, negative_response: nil }, onclick: '' } def initialize(args = {}) @args = validate_args( args: args, requested_args: @@requested_args, default_args: @@default_args ) set_conditions end def show if @args[:type] === 'link' render 'link.html' elsif @args[:type] === 'button' || @args[:type] === 'submit' render 'button.html' else return end end private def set_conditions @show_submit = (@args[:type] === 'submit') @show_icon = @args[:icon] ? true : false @show_method = !(@args[:method] === 'get') @show_confirmation = (@args[:confirmation] && @args[:confirmation][:message] && @args[:confirmation][:positive_response] && @args[:confirmation][:negative_response]) @icon_left = (@args[:icon_align] === 'left') @icon_right = (@args[:icon_align] === 'right') @block_class = @args[:block] ? ' elements-button--block ' : ' ' end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
lato_core-2.2.2 | app/cells/lato_core/elements/button/cell.rb |