Module: ProxmoxFormHelper

Defined in:
app/helpers/proxmox_form_helper.rb

Overview

You should have received a copy of the GNU General Public License along with ForemanFogProxmox. If not, see <www.gnu.org/licenses/>.

Instance Method Summary collapse

Instance Method Details



65
66
67
68
69
# File 'app/helpers/proxmox_form_helper.rb', line 65

def add_child_link_typed(name, association, type, opts = {})
  opts[:class] = [opts[:class], 'add_nested_fields btn btn-primary'].compact.join(' ')
  opts[:"data-association"] = (type + '_' + association.to_s).to_sym
  link_to_function(name.to_s, 'add_child_node(this);tfm.numFields.initAll();', opts)
end

#new_child_fields_template_typed(form_builder, association, options = {}) ⇒ Object



48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
# File 'app/helpers/proxmox_form_helper.rb', line 48

def new_child_fields_template_typed(form_builder, association, options = {})
  if options[:object].blank?
    association_object = form_builder.object.class.reflect_on_association(association)
    options[:object] = association_object.klass.new(association_object.foreign_key => form_builder.object.id)
  end
  options[:partial]            ||= association.to_s.singularize
  options[:form_builder_local] ||= :f
  options[:form_builder_attrs] ||= {}

  (:div, :class => "#{options[:type]}_#{association}_fields_template form_template ", :style => 'display: none;') do
    form_builder.fields_for(association, options[:object], :child_index => "new_#{options[:type]}_#{association}") do |f|
      render(:partial => options[:partial], :layout => options[:layout],
             :locals => { options[:form_builder_local] => f }.merge(options[:form_builder_attrs]))
    end
  end
end

#password_proxmox_f(f, attr, options = {}) ⇒ Object



21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
# File 'app/helpers/proxmox_form_helper.rb', line 21

def password_proxmox_f(f, attr, options = {})
  unset_button = options.delete(:unset)
  value = f.object[attr] if options.delete(:keep_value)
  password_field_tag(:fakepassword, value, :style => 'display: none', :autocomplete => 'new-password-fake') +
    field(f, attr, options) do
      options[:autocomplete]   ||= 'new-password'
      options[:placeholder]    ||= password_proxmox_placeholder(f.object, attr)
      options[:disabled] = true if unset_button
      options[:value] = value if value.present?
      addClass options, 'form-control'
      pass = f.password_field(attr, options) +
             (:span, '', class: 'glyphicon glyphicon-warning-sign input-addon',
                                    title: 'Caps lock ON', style: 'display:none')
      if unset_button
        button = link_to_function(icon_text('edit', '', :kind => 'pficon'), 'toggle_input_group(this)', :id => 'disable-pass-btn', :class => 'btn btn-default', :title => _('Change the password'))
        input_group(pass, input_group_btn(button))
      else
        pass
      end
    end
end

#password_proxmox_placeholder(obj, attr = nil) ⇒ Object



43
44
45
46
# File 'app/helpers/proxmox_form_helper.rb', line 43

def password_proxmox_placeholder(obj, attr = nil)
  pass = obj.attributes.key?(attr)
  pass ? '********' : ''
end