Module: Spree::Admin::NavigationHelper

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

Instance Method Summary collapse

Instance Method Details

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



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

def button(text, icon_name = nil, button_type = 'submit', options={})
  button_tag(text, options.merge(:type => button_type, :class => "fa fa-#{icon_name} button"))
end


109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
# File 'app/helpers/spree/admin/navigation_helper.rb', line 109

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.delete(:method)) do
      button(text, html_options.delete(:icon), nil, html_options)
    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']

    html_options[:class] = 'button'

    if html_options[:icon]
      html_options[:class] += " fa fa-#{html_options[:icon]}"
    end
    link_to(text_for_button_link(text, html_options), url, html_options)
  end
end

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



139
140
141
142
143
144
145
# File 'app/helpers/spree/admin/navigation_helper.rb', line 139

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

#configurations_sidebar_menu_item(link_text, url, options = {}) ⇒ Object



147
148
149
150
151
152
153
154
155
# File 'app/helpers/spree/admin/navigation_helper.rb', line 147

def configurations_sidebar_menu_item(link_text, url, options = {})
  is_active = url.ends_with?(controller.controller_name) ||
              url.ends_with?("#{controller.controller_name}/edit") ||
              url.ends_with?("#{controller.controller_name.singularize}/edit")
  options.merge!(:class => is_active ? 'active' : nil)
  (:li, options) do
    link_to(link_text, url)
  end
end

#icon(icon_name) ⇒ Object



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

def icon(icon_name)
  icon_name ? (:i, '', :class => icon_name) : ''
end

#klass_for(name) ⇒ Object

finds class for a given symbol / string

Example : :products returns Spree::Product :my_products returns MyProduct if MyProduct is defined :my_products returns My::Product if My::Product is defined if cannot constantize it returns nil This will allow us to use cancan abilities on tab



55
56
57
58
59
60
61
# File 'app/helpers/spree/admin/navigation_helper.rb', line 55

def klass_for(name)
  model_name = name.to_s

  ["Spree::#{model_name.classify}", model_name.classify, model_name.gsub('_', '/').classify].find do |t|
    t.safe_constantize
  end.try(:safe_constantize)
end


63
64
65
66
# File 'app/helpers/spree/admin/navigation_helper.rb', line 63

def link_to_clone(resource, options={})
  options[:data] = {:action => 'clone'}
  link_to_with_icon('copy', Spree.t(:clone), clone_object_url(resource), options)
end


84
85
86
87
88
89
90
# File 'app/helpers/spree/admin/navigation_helper.rb', line 84

def link_to_delete(resource, options={})
  url = options[:url] || object_url(resource)
  name = options[:name] || Spree.t(:delete)
  options[:class] = "delete-resource"
  options[:data] = { :confirm => Spree.t(:are_you_sure), :action => 'remove' }
  link_to_with_icon 'trash', name, url, options
end


73
74
75
76
77
# File 'app/helpers/spree/admin/navigation_helper.rb', line 73

def link_to_edit(resource, options={})
  url = options[:url] || edit_object_url(resource)
  options[:data] = {:action => 'edit'}
  link_to_with_icon('edit', Spree.t(:edit), url, options)
end


79
80
81
82
# File 'app/helpers/spree/admin/navigation_helper.rb', line 79

def link_to_edit_url(url, options={})
  options[:data] = {:action => 'edit'}
  link_to_with_icon('edit', Spree.t(:edit), url, options)
end


68
69
70
71
# File 'app/helpers/spree/admin/navigation_helper.rb', line 68

def link_to_new(resource)
  options[:data] = {:action => 'new'}
  link_to_with_icon('plus', Spree.t(:new), edit_object_url(resource))
end


92
93
94
95
96
97
98
99
# File 'app/helpers/spree/admin/navigation_helper.rb', line 92

def link_to_with_icon(icon_name, text, url, options = {})
  options[:class] = (options[:class].to_s + " fa fa-#{icon_name} icon_link with-tip").strip
  options[:class] += ' no-text' if options[:no_text]
  options[:title] = text if options[:no_text]
  text = options[:no_text] ? '' : raw("<span class='text'>#{text}</span>")
  options.delete(:no_text)
  link_to(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.


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

def tab(*args)
  options = {:label => args.first.to_s}

  # Return if resource is found and user is not allowed to :admin
  return '' if klass = klass_for(options[:label]) and cannot?(:admin, klass)

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

  destination_url = options[:url] || spree.send("#{options[:route]}_path")
  titleized_label = Spree.t(options[:label], :default => options[:label], :scope => [:admin, :tab]).titleize

  css_classes = []

  if options[:icon]
    link = link_to_with_icon(options[:icon], titleized_label, destination_url)
    css_classes << 'tab-with-icon'
  else
    link = link_to(titleized_label, destination_url)
  end

  selected = if options[:match_path].is_a? Regexp
    request.fullpath =~ options[:match_path]
  elsif options[:match_path]
    request.fullpath.starts_with?("#{admin_path}#{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


133
134
135
136
137
# File 'app/helpers/spree/admin/navigation_helper.rb', line 133

def text_for_button_link(text, html_options)
  s = ''
  s << text
  raw(s)
end