Module: Admin::NavigationHelper

Defined in:
app/helpers/admin/navigation_helper.rb

Instance Method Summary collapse

Instance Method Details

#button(text, icon_name = nil, button_type = 'submit', options = {}) ⇒ Object



104
105
106
# File 'app/helpers/admin/navigation_helper.rb', line 104

def button(text, icon_name = nil, button_type = 'submit', options={})
  ('button', ('span', icon(icon_name) + ' ' + text), options.merge(:type => button_type))
end


108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
# File 'app/helpers/admin/navigation_helper.rb', line 108

def button_link_to(text, url, html_options = {})
  if (html_options[:method] &&
      html_options[:method].to_s.downcase != 'get' &&
      !html_options[:remote])
    form_tag(url, :method => html_options[:method]) do
      button(text, html_options[:icon])
    end
  else
    if html_options['data-update'].nil? && html_options[:remote]
      object_name, action = url.split('/')[-2..-1]
      html_options['data-update'] = [action, object_name.singularize].join('_')
    end
    html_options.delete('data-update') unless html_options['data-update']
    link_to(text_for_button_link(text, html_options), url, html_options_for_button_link(html_options))
  end
end


125
126
127
# File 'app/helpers/admin/navigation_helper.rb', line 125

def button_link_to_function(text, function, html_options = {})
  link_to_function(text_for_button_link(text, html_options), function, html_options_for_button_link(html_options))
end

#configurations_menu_item(link_text, url, description = '') ⇒ Object



154
155
156
157
158
159
160
# File 'app/helpers/admin/navigation_helper.rb', line 154

def configurations_menu_item(link_text, url, description = '')
  %(<tr>
    <td>#{link_to(link_text, url)}</td>
    <td>#{description}</td>
  </tr>
  ).html_safe
end


150
151
152
# File 'app/helpers/admin/navigation_helper.rb', line 150

def html_options_for_button_link(html_options)
  options = {:class => 'button'}.update(html_options)
end

#icon(icon_name) ⇒ Object



100
101
102
# File 'app/helpers/admin/navigation_helper.rb', line 100

def icon(icon_name)
  icon_name ? image_tag("/images/admin/icons/#{icon_name}.png") : ''
end


50
51
52
# File 'app/helpers/admin/navigation_helper.rb', line 50

def link_to_clone(resource, options={})
  link_to_with_icon('exclamation', t("clone"), clone_admin_product_url(resource), options)
end


54
55
56
57
58
59
60
61
62
63
64
65
66
# File 'app/helpers/admin/navigation_helper.rb', line 54

def link_to_delete(resource, options = {}, html_options={})
  options.assert_valid_keys(:url, :caption, :title, :dataType, :success, :name)

  options.reverse_merge! :url => object_url(resource) unless options.key? :url
  options.reverse_merge! :caption => t('are_you_sure')
  options.reverse_merge! :title => t('confirm_delete')
  options.reverse_merge! :dataType => 'script'
  options.reverse_merge! :success => "function(r){ jQuery('##{dom_id resource}').fadeOut('hide'); }"
  options.reverse_merge! :name => icon("delete") + ' ' + t("delete")

  link_to_function_delete(options, html_options)
  #link_to_function_delete_native(options, html_options)
end


42
43
44
# File 'app/helpers/admin/navigation_helper.rb', line 42

def link_to_edit(resource, options={})
  link_to_with_icon('edit', t("edit"), edit_object_url(resource), options)
end


46
47
48
# File 'app/helpers/admin/navigation_helper.rb', line 46

def link_to_edit_url(url, options={})
  link_to_with_icon('edit', t("edit"), url, options)
end


77
78
79
80
81
# File 'app/helpers/admin/navigation_helper.rb', line 77

def link_to_function_delete(options, html_options)
  link_to_function options[:name], "jConfirm('#{options[:caption]}', '#{options[:title]}', function(r) {
    if(r){ #{link_to_function_delete_ajax(options)} }
  });", html_options
end


83
84
85
86
87
88
89
90
91
92
93
# File 'app/helpers/admin/navigation_helper.rb', line 83

def link_to_function_delete_ajax(options)
  %Q{
    jQuery.ajax({
      type: 'POST',
      url: '#{options[:url]}',
      data: ({_method: 'delete', authenticity_token: AUTH_TOKEN}),
      dataType:'#{options[:dataType]}',
      success: #{options[:success]}
    });
  }
end

this function does not use jConfirm



69
70
71
72
73
74
75
# File 'app/helpers/admin/navigation_helper.rb', line 69

def link_to_function_delete_native(options, html_options)
  fn = %Q{
    var answer = confirm("are you sure?");
    if (!!answer) { #{link_to_function_delete_ajax(options)} };
  }
  link_to_function options[:name], fn, html_options
end


38
39
40
# File 'app/helpers/admin/navigation_helper.rb', line 38

def link_to_new(resource)
  link_to_with_icon('add', t("new"), edit_object_url(resource))
end


95
96
97
98
# File 'app/helpers/admin/navigation_helper.rb', line 95

def link_to_with_icon(icon_name, text, url, options = {})
  options[:class] = (options[:class].to_s + " icon_link").strip
  link_to(icon(icon_name) + ' ' + text, url, options)
end

#tab(*args) ⇒ Object

Make an admin tab that coveres one or more resources supplied by symbols Option hash may follow. Valid options are

* :label to override link text, otherwise based on the first resource name (translated)
* :route to override automatically determining the default route
* :match_path as an alternative way to control when the tab is active, /products would match /admin/products, /admin/products/5/variants etc.


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
# File 'app/helpers/admin/navigation_helper.rb', line 8

def tab(*args)
  options = {:label => args.first.to_s}
  if args.last.is_a?(Hash)
    options = options.merge(args.pop)
  end
  options[:route] ||=  "admin_#{args.first}"

  destination_url = send("#{options[:route]}_path")

  ## if more than one form, it'll capitalize all words
  label_with_first_letters_capitalized = t(options[:label]).gsub(/\b\w/){$&.upcase}

  link = link_to(label_with_first_letters_capitalized, destination_url)

  css_classes = []

  selected = if options[:match_path]
    request.fullpath.starts_with?("/admin#{options[:match_path]}")
  else
    args.include?(controller.controller_name.to_sym)
  end
  css_classes << 'selected' if selected

  if options[:css_class]
    css_classes << options[:css_class]
  end
  ('li', link, :class => css_classes.join(' '))
end

RAILS 3 TODO - no longer needed def button_link_to_remote(text, url, html_options = {})

html_options.reverse_merge! :remote => true
link_to(text_for_button_link(text, html_options), url, html_options_for_button_link(html_options))

end

def link_to_remote(name, options = {}, html_options = {})

options[:before] ||= "jQuery(this).parent().hide(); jQuery('#busy_indicator').show();"
options[:complete] ||= "jQuery('#busy_indicator').hide()"
link_to_function(name, remote_function(options), html_options || options.delete(:html))

end



141
142
143
144
145
146
147
148
# File 'app/helpers/admin/navigation_helper.rb', line 141

def text_for_button_link(text, html_options)
  s = ''
  if html_options[:icon]
    s << icon(html_options.delete(:icon)) + ' '
  end
  s << text
  ('span', raw(s))
end