module Admin::PostsHelper

Public Instance Methods

edit_content_tag(post) { || ... } click to toggle source
# File lib/ecrire/app/helpers/admin/posts_helper.rb, line 15
def edit_content_tag(post)
  content_tag :article, id: 'PostBody', postid: @post.id,
    class: %w(content),
    as: 'Editor.Content',
    contenteditable: true,
    href: admin_post_path(@post.id) do |div|

      namespace = Pathname.new(Rails.application.secrets.fetch(:s3, {})['namespace'] || '')

      if Rails.application.secrets.has_key?(:s3)
        div['data-bucket'] = Rails.application.secrets.s3[:bucket]
        div['data-url'] = Rails.application.secrets.s3[:url]
        div['data-access-key'] = Rails.application.secrets.s3[:access_key]
        div['data-signature'] = image_form_signature(image_form_policy(@post))
        div['data-policy'] = image_form_policy(@post)
        div['data-namespace'] = namespace + @post.id.to_s
      end

      yield if block_given?
    end
end
post_tags(post) click to toggle source
# File lib/ecrire/app/helpers/admin/posts_helper.rb, line 4
def post_tags(post)
  if post.tags.any?
    tags = post.tags.map(&:name).join(', ') << '.'
  else
    tags = 'No tag yet.'
  end

  tags << ' ' << link_to('Change tags', admin_post_tags_path(post), remote: true)
  content_tag :div, tags.html_safe, class: %w(tags), as: 'Post.Tags'
end