Module: ActionView::Helpers::UrlHelper

Defined in:
lib/prime/rails/url_helper.rb

Instance Method Summary collapse

Instance Method Details

#p_button_to(name = nil, options = nil, html_options = nil, &block) ⇒ Object



3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
# File 'lib/prime/rails/url_helper.rb', line 3

def p_button_to(name = nil, options = nil, html_options = nil, &block)
  html_options, options = options, name if block_given?
  options      ||= {}
  html_options ||= {}

  html_options = html_options.stringify_keys
  convert_boolean_attributes!(html_options, %w(disabled))

  url    = options.is_a?(String) ? options : url_for(options)
  remote = html_options.delete('remote')

  method     = html_options.delete('method').to_s
  method_tag = %w{patch put delete}.include?(method) ? method_tag(method) : ''.html_safe

  form_method  = method == 'get' ? 'get' : 'post'
  form_options = html_options.delete('form') || {}
  form_options[:class] ||= html_options.delete('form_class') || 'button_to'
  form_options.merge!(method: form_method, action: url)
  form_options.merge!("data-remote" => "true") if remote

  request_token_tag = form_method == 'post' ? token_tag : ''

  html_options = convert_options_to_data_attributes(options, html_options)
  html_options['type'] = 'submit'

  button = if block_given?
    ('button', html_options, &block)
  else
    html_options['value'] = name || url
    ('button', html_options) do
      html_options['value']
    end
  end

  output = button
  
  options = html_options.stringify_keys
      
  clientid = sanitize_to_id(options["id"])
  widgetvar = options.has_key?("widgetVar") ? options["widgetVar"] : "widget_"+clientid         
      
  options_ui = options
  options_ui = options_ui.merge(:id => clientid )                         
  options_ui = options_ui.to_json        
      
  script = '$(function() {'
  script += "PrimeFaces.cw('Button','#{widgetvar}',#{options_ui})"
  script += '});'         
  output += p_javascript_tag(script, "id" => clientid+"_s") 

  button = output    
  
  
  
  inner_tags = method_tag.safe_concat(button).safe_concat(request_token_tag)
  ('form', ('div', inner_tags), form_options)
  
       
      
end