Class: Effective::FormInputs::RemoteLinkTo

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

Constant Summary

Constants inherited from Effective::FormInput

Effective::FormInput::BLANK, Effective::FormInput::DEFAULT_FEEDBACK_OPTIONS, Effective::FormInput::DEFAULT_INPUT_GROUP_OPTIONS, Effective::FormInput::EMPTY_HASH, Effective::FormInput::EXCLUSIVE_CLASS_PREFIXES, Effective::FormInput::EXCLUSIVE_CLASS_SUFFIXES, Effective::FormInput::HORIZONTAL_LABEL_OPTIONS, Effective::FormInput::HORIZONTAL_WRAPPER_OPTIONS, Effective::FormInput::INLINE_LABEL_OPTIONS, Effective::FormInput::VERTICAL_WRAPPER_OPTIONS

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/remote_link_to.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/remote_link_to.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

#confirmObject



24
25
26
# File 'app/models/effective/form_inputs/remote_link_to.rb', line 24

def confirm
  (options.delete(:confirm) || "#{name} to<br>#{object}?").html_safe
end

#input_html_optionsObject



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

def input_html_options
  { class: '', rel: 'nofollow', data: { method: :post, remote: true, confirm: confirm } }
end