Class: Seorel::Helper::OpenGraph

Inherits:
Base
  • Object
show all
Defined in:
lib/seorel/helper/open_graph.rb

Instance Attribute Summary

Attributes inherited from Base

#params, #request

Instance Method Summary collapse

Methods inherited from Base

#helpers, #image_url, #initialize, #locale, #render

Constructor Details

This class inherits a constructor from Seorel::Helper::Base

Instance Method Details

#allObject



35
36
37
38
39
40
41
42
43
# File 'lib/seorel/helper/open_graph.rb', line 35

def all
  ([
    title_tag,
    description_tag,
    locale_tag,
    image_tag,
    url_tag
  ] + custom_tags).compact
end

#custom_tagsObject



29
30
31
32
33
# File 'lib/seorel/helper/open_graph.rb', line 29

def custom_tags
  params.open_graph_extras.reduce([]) do |data, (key, value)|
    data.push custum_tag(key, value)
  end
end

#description_tagObject



13
14
15
# File 'lib/seorel/helper/open_graph.rb', line 13

def description_tag
  h.tag :meta, property: 'og:description', content: description
end

#image_tagObject



21
22
23
# File 'lib/seorel/helper/open_graph.rb', line 21

def image_tag
  h.tag(:meta, property: 'og:image', content: image_url) if image
end

#locale_tagObject



17
18
19
# File 'lib/seorel/helper/open_graph.rb', line 17

def locale_tag
  h.tag(:meta, property: 'og:locale', content: locale)
end

#title_tagObject



9
10
11
# File 'lib/seorel/helper/open_graph.rb', line 9

def title_tag
  h.tag :meta, property: 'og:title', content: title
end

#url_tagObject



25
26
27
# File 'lib/seorel/helper/open_graph.rb', line 25

def url_tag
  h.tag(:meta, property: 'og:url', content: request.url)
end