Module: EffectivePostsHelper
- Defined in:
- app/helpers/effective_posts_helper.rb
Instance Method Summary collapse
- #effective_post_path(post) ⇒ Object
- #link_to_post_category(category, options = {}) ⇒ Object
-
#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.
- #post_meta(post) ⇒ Object
- #readmore_link(post, options) ⇒ Object
- #render_post(post) ⇒ Object
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 link_to_post_category(category, = {}) 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, ) 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, = {}) content = effective_region(post, :content, :editable => false) { '<p>Default content</p>'.html_safe } divider = content.index(Effective::Snippets::ReadMoreDivider::TOKEN) length = .delete(:length) if divider.present? content[0...divider] + readmore_link(post, ) elsif length.present? && content.length > length truncate_html(content, length, readmore_link(post, )) 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 |
#readmore_link(post, options) ⇒ Object
45 46 47 48 49 |
# File 'app/helpers/effective_posts_helper.rb', line 45 def readmore_link(post, ) content_tag(:p, class: 'post-read-more') do link_to((.delete(:label) || 'Read more'), effective_posts.post_path(post), ) 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 |