Module: EffectivePostsHelper

Defined in:
app/helpers/effective_posts_helper.rb

Instance Method Summary collapse

Instance Method Details

#effective_post_path(post) ⇒ Object



40
41
42
43
# File 'app/helpers/effective_posts_helper.rb', line 40

def effective_post_path(post)
  category = post.category.to_s.downcase
  EffectivePosts.use_category_routes ? "/#{category}/#{post.to_param}" : effective_posts.post_path(post, category: category.to_s)
end

#link_to_post_category(category, options = {}) ⇒ Object



33
34
35
36
37
38
# File 'app/helpers/effective_posts_helper.rb', line 33

def (category, options = {})
  category = category.to_s.downcase

  href = EffectivePosts.use_category_routes ? "/#{category}" : effective_posts.posts_path(category: category.to_s)
  link_to(category.to_s.titleize, href, options)
end

#post_excerpt(post, options = {}) ⇒ Object

Only supported options are: :length => 200 to set the max length of the content if the ReadMore divider is not present :label => ‘Read Lots More’ to set the label of the ‘Read More’ link



18
19
20
21
22
23
24
25
26
27
28
29
30
31
# File 'app/helpers/effective_posts_helper.rb', line 18

def post_excerpt(post, options = {})
  content = effective_region(post, :content, :editable => false) { '<p>Default content</p>'.html_safe }

  divider = content.index(Effective::Snippets::ReadMoreDivider::TOKEN)
  length = options.delete(:length)

  if divider.present?
    content[0...divider] + readmore_link(post, options)
  elsif length.present? && content.length > length
    truncate_html(content, length, readmore_link(post, options))
  else
    content
  end.html_safe
end

#post_meta(post) ⇒ Object



6
7
8
9
10
11
12
13
# File 'app/helpers/effective_posts_helper.rb', line 6

def (post)
  [
    'Published',
    "on #{post.published_at.strftime('%B %d, %Y at %l:%M %p')}",
    ("to #{link_to_post_category(post.category)}" if Array(EffectivePosts.categories).length > 1),
    ("by #{post.user.to_s.presence || 'Unknown'}" if EffectivePosts.)
  ].compact.join(' ').html_safe
end


45
46
47
48
49
# File 'app/helpers/effective_posts_helper.rb', line 45

def readmore_link(post, options)
  (:p, class: 'post-read-more') do
    link_to((options.delete(:label) || 'Read more'), effective_posts.post_path(post), options)
  end
end

#render_post(post) ⇒ Object



2
3
4
# File 'app/helpers/effective_posts_helper.rb', line 2

def render_post(post)
  render(partial: 'effective/posts/post', locals: { post: post })
end