Module: Spree::Admin::NavigationHelper

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

Instance Method Summary collapse

Instance Method Details

#admin_breadcrumb(*ancestors, &block) ⇒ Object

Add items to current page breadcrumb heirarchy



11
12
13
14
# File 'app/helpers/spree/admin/navigation_helper.rb', line 11

def admin_breadcrumb(*ancestors, &block)
  admin_breadcrumbs.concat(ancestors) if ancestors.present?
  admin_breadcrumbs.push(capture(&block)) if block_given?
end

#admin_breadcrumbsObject



6
7
8
# File 'app/helpers/spree/admin/navigation_helper.rb', line 6

def admin_breadcrumbs
  @admin_breadcrumbs ||= []
end

#admin_page_titleObject



30
31
32
33
34
35
36
37
38
39
40
# File 'app/helpers/spree/admin/navigation_helper.rb', line 30

def admin_page_title
  if content_for?(:title)
    content_for(:title)
  elsif content_for?(:page_title)
    content_for(:page_title)
  elsif admin_breadcrumbs.any?
    admin_breadcrumbs.map{ |x| strip_tags(x) }.reverse.join(' - ')
  else
    t(controller.controller_name, default: controller.controller_name.titleize, scope: 'spree')
  end
end

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



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

def button(text, icon_name = nil, button_type = 'submit', options = {})
  Spree::Deprecation.warn "button helper is deprecated. Instead use button_tag"
  class_names = "button"
  if icon_name
    Spree::Deprecation.warn "Using icon_name arg is deprecated. Icons could not be visible in future versions.", caller
    class_names = "fa fa-#{icon_name} #{class_names}"
  end
  button_tag(text, options.merge(type: button_type, class: class_names))
end


140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
# File 'app/helpers/spree/admin/navigation_helper.rb', line 140

def button_link_to(text, url, html_options = {})
  Spree::Deprecation.warn "Passing button_link_to is deprecated. Use either link_to or button_to instead.", caller
  html_options = { class: '' }.merge(html_options)
  if html_options[:method] &&
     !html_options[:method].to_s.casecmp('get').zero? &&
     !html_options[:remote]
    form_tag(url, method: html_options.delete(:method)) do
      html_options.delete(:icon)
      button_tag(text, html_options)
    end
  else
    html_options[:class] += ' button'

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

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



160
161
162
163
164
165
166
# File 'app/helpers/spree/admin/navigation_helper.rb', line 160

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



168
169
170
171
172
173
174
175
176
# File 'app/helpers/spree/admin/navigation_helper.rb', line 168

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[:class] = is_active ? 'active' : nil
  (:li, options) do
    link_to(link_text, url)
  end
end


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

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


105
106
107
108
109
110
111
112
# File 'app/helpers/spree/admin/navigation_helper.rb', line 105

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


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

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


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

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


89
90
91
92
# File 'app/helpers/spree/admin/navigation_helper.rb', line 89

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


114
115
116
117
118
119
120
121
# File 'app/helpers/spree/admin/navigation_helper.rb', line 114

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] ? '' : (:span, text, class: 'text')
  options.delete(:no_text)
  link_to(text, url, options)
end

#render_admin_breadcrumbsObject

Render Bootstrap style breadcrumbs



17
18
19
20
21
22
23
24
25
26
27
28
# File 'app/helpers/spree/admin/navigation_helper.rb', line 17

def render_admin_breadcrumbs
  if content_for?(:page_title)
    admin_breadcrumb(content_for(:page_title))
  end

   :ol, class: 'breadcrumb' do
    segments = admin_breadcrumbs.map do |level|
      (:li, level, class: "breadcrumb-item #{level == admin_breadcrumbs.last ? 'active' : ''}")
    end
    safe_join(segments)
  end
end

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



178
179
180
181
182
183
184
185
186
187
188
# File 'app/helpers/spree/admin/navigation_helper.rb', line 178

def settings_tab_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[:class] = 'fa'
  options[:class] += ' active' if is_active
  options[:datahook] = "admin_settings_#{link_text.downcase.tr(' ', '_')}"
  (:li, options) do
    link_to(link_text, url)
  end
end

#solidus_icon(icon_name) ⇒ Object Also known as: icon



123
124
125
# File 'app/helpers/spree/admin/navigation_helper.rb', line 123

def solidus_icon(icon_name)
  icon_name ? (:i, '', class: icon_name) : ''
end

#tab(*args, &_block) ⇒ Object

Make an admin tab that covers 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.


47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
# File 'app/helpers/spree/admin/navigation_helper.rb', line 47

def tab(*args, &_block)
  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 = options[:url] || spree.send("#{options[:route]}_path")
  label = t(options[:label], scope: [:spree, :admin, :tab])

  css_classes = []

  if options[:icon]
    link = link_to_with_icon(options[:icon], label, destination_url)
    css_classes << 'tab-with-icon'
  else
    link = link_to(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?("#{spree.admin_path}#{options[:match_path]}")
  else
    request.fullpath.starts_with?(destination_url) ||
      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 + (yield if block_given?), class: css_classes.join(' ') )
end