Module: Agilibox::LinkHelper

Included in:
AllHelpers
Defined in:
app/helpers/agilibox/link_helper.rb

Instance Method Summary collapse

Instance Method Details



26
27
28
29
30
31
32
# File 'app/helpers/agilibox/link_helper.rb', line 26

def email_link(text, opts = {})
  return if text.to_s.blank?

  href = "mailto:#{text}"

  link_to(text, href, opts)
end


12
13
14
15
# File 'app/helpers/agilibox/link_helper.rb', line 12

def icon_link_to(icon, name, options = nil, html_options = nil, &block)
  name = "#{icon(icon)} #{name}".html_safe
  link_to(name, options, html_options, &block)
end


2
3
4
5
6
7
8
9
10
# File 'app/helpers/agilibox/link_helper.rb', line 2

def link_to_object(obj, options = {})
  return if obj.nil?

  if policy(obj).read?
    link_to(obj.to_s, engine_polymorphic_path(obj), options)
  else
    obj.to_s
  end
end


34
35
36
37
38
39
40
41
# File 'app/helpers/agilibox/link_helper.rb', line 34

def tel_link(text, opts = {})
  return if text.to_s.blank?

  value = text.delete(" ")
  href  = "tel:#{value}"

  link_to(text, href, opts)
end


43
44
45
46
47
48
49
50
51
# File 'app/helpers/agilibox/link_helper.rb', line 43

def twitter_link(text, opts = {})
  return if text.to_s.blank?

  href = text
  href = "https://twitter.com/#{text}" unless text.include?("twitter.com")
  href = "https://#{text}" unless href.include?("://")

  link_to(text, href, opts)
end


17
18
19
20
21
22
23
24
# File 'app/helpers/agilibox/link_helper.rb', line 17

def web_link(text, opts = {})
  return if text.to_s.blank?

  href = text
  href = "http://#{text}" unless text.include?("://")

  link_to(text, href, opts)
end