Module: Dorsale::LinkHelper

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

Instance Method Summary collapse

Instance Method Details



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

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

  href = "mailto:#{text}"

  link_to(text, href, opts)
end


3
4
5
6
# File 'app/helpers/dorsale/link_helper.rb', line 3

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


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

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

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

  link_to(text, href, opts)
end


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

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


8
9
10
11
12
13
14
15
# File 'app/helpers/dorsale/link_helper.rb', line 8

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