Sha256: b161d374b8b1c101f278a5ae59883ee892fde5f73cd1ee5b19c69ff1a22e54c5

Contents?: true

Size: 880 Bytes

Versions: 11

Compression:

Stored size: 880 Bytes

Contents

module Landable
  class PageDecorator
    include ActionView::Helpers::TagHelper

    def initialize(page)
      raise TypeError.new("Use Landable::NullPageDecorator") if page.nil?
      @page = page
    end

    def title
      content_tag('title', page.title) if page.title?
    end

    def path
      page.path
    end

    def body
      page.body.try(:html_safe)
    end

    def head_content
      page.head_content.try(:html_safe)
    end

    def meta_tags
      return unless tags = page.meta_tags
      Rails.logger.info "Meta tags string: #{tags}" if tags.is_a? String
      return if tags.empty? or !tags.is_a? Hash

      tags.map { |name, value|
        tag('meta', name: name, content: value) if value.present?
      }.compact.join("\n").html_safe
    end

    private

    attr_reader :page # Keeping it private until there's a compelling reason not to
  end
end

Version data entries

11 entries across 11 versions & 1 rubygems

Version Path
landable-1.11.0 app/decorators/landable/page_decorator.rb
landable-1.10.0.rc2 app/decorators/landable/page_decorator.rb
landable-1.10.0.rc1 app/decorators/landable/page_decorator.rb
landable-1.9.2 app/decorators/landable/page_decorator.rb
landable-1.9.1 app/decorators/landable/page_decorator.rb
landable-1.9.0 app/decorators/landable/page_decorator.rb
landable-1.9.0.rc2 app/decorators/landable/page_decorator.rb
landable-1.9.0.rc1 app/decorators/landable/page_decorator.rb
landable-1.8.0 app/decorators/landable/page_decorator.rb
landable-1.7.1.rc1 app/decorators/landable/page_decorator.rb
landable-1.7.0 app/decorators/landable/page_decorator.rb