Class: Effective::FormInputs::Delete

Inherits:
Submit show all
Defined in:
app/models/effective/form_inputs/delete.rb

Constant Summary

Constants inherited from Effective::FormInput

Effective::FormInput::BLANK, Effective::FormInput::EXCLUSIVE_CLASS_PREFIXES, Effective::FormInput::EXCLUSIVE_CLASS_SUFFIXES

Instance Attribute Summary

Attributes inherited from Effective::FormInput

#name, #options

Instance Method Summary collapse

Methods inherited from Submit

#label_options, #to_html, #wrapper_options

Methods inherited from Effective::FormInput

#feedback_options, #hint_options, #initialize, #input_group_options, #input_js_options, #label_options, #to_html, #wrapper_options

Constructor Details

This class inherits a constructor from Effective::FormInput

Instance Method Details

#border?Boolean

Returns:

  • (Boolean)


20
21
22
# File 'app/models/effective/form_inputs/delete.rb', line 20

def border?
  false
end

#build_input(&block) ⇒ Object



5
6
7
8
9
10
11
12
13
14
# File 'app/models/effective/form_inputs/delete.rb', line 5

def build_input(&block)
  tags = [
    icon('check', style: 'display: none;'),
    icon('x', style: 'display: none;'),
    icon('spinner'),
    (block_given? ? capture(&block) : (:a, name, options[:input]))
  ]

  (left? ? tags.reverse.join : tags.join).html_safe
end

#input_html_optionsObject



16
17
18
# File 'app/models/effective/form_inputs/delete.rb', line 16

def input_html_options
  { class: 'btn btn-warning', data: { method: :delete, remote: true, confirm: "Really delete<br>#{object}?".html_safe } }
end