Module: Refinery::TagHelper

Defined in:
core/app/helpers/refinery/tag_helper.rb

Instance Method Summary collapse

Instance Method Details

#action_icon(action, url, title, options = {}) ⇒ Object



22
23
24
# File 'core/app/helpers/refinery/tag_helper.rb', line 22

def action_icon(action, url, title, options={})
  action_icon_label(action, url, title, options, false)
end

#action_icon_label(action, url, title, options = {}, label = true) ⇒ Object

See icons.scss for defined icons/classes



31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
# File 'core/app/helpers/refinery/tag_helper.rb', line 31

def action_icon_label(action, url, title, options={}, label = true)
  options[:title] = title
  options[:class].presence ? options[:class] << " #{action}_icon " : options[:class] = "#{action}_icon"
  options[:class] << ' icon_label' if label

  case action
  when :preview
    options[:target] = '_blank'
  when :delete
    options[:method] = :delete
  when :reorder_done
    options[:class] << ' hidden'
  end

  link_to(label && title || '', url, options)
end

#action_label(action, url, title, options = {}) ⇒ Object



26
27
28
# File 'core/app/helpers/refinery/tag_helper.rb', line 26

def action_label(action, url, title, options={})
  action_icon_label(action, url, title, options, true)
end

#locale_text_icon(text) ⇒ Object

this stacks the text onto the locale icon (actually a comment balloon)



49
50
51
52
53
# File 'core/app/helpers/refinery/tag_helper.rb', line 49

def locale_text_icon(text)
  (:span, class: 'fa-stack') do
    (:i, '', class: 'fa fa-comment') << (:strong, text)
  end
end

#refinery_help_tag(title = 'Tip') ⇒ Object

Remember to wrap your block with <span class=‘label_with_help’></span> if you’re using a label next to the help tag.



7
8
9
10
# File 'core/app/helpers/refinery/tag_helper.rb', line 7

def refinery_help_tag(title='Tip')
  title = title.html_safe? ? title : h(title)
  action_icon(:info, '#', title, {tooltip: title})
end

#refinery_icon_tag(filename, options = {}) ⇒ Object

This is just a quick wrapper to render an image tag that lives inside refinery/icons. They are all 16x16 so this is the default but is able to be overriden with supplied options.



14
15
16
17
18
19
20
# File 'core/app/helpers/refinery/tag_helper.rb', line 14

def refinery_icon_tag(filename, options = {})
  Refinery.deprecate('Refinery::TagHelper.refinery_icon_tag', when: '5.1', replacement: 'Refinery::TagHelper.action_icon')

  filename = "#{filename}.png" unless filename.split('.').many?
  path = image_path "refinery/icons/#{filename}", skip_pipeline: true
  image_tag path, {:width => 16, :height => 16}.merge(options)
end