Sha256: 5c21e216fb5826cfecd7a307e9e4452cf75428fd29342d63ac9ae777f9a7705b

Contents?: true

Size: 1.7 KB

Versions: 4

Compression:

Stored size: 1.7 KB

Contents

# Base Tag class that other fragment tags depend on.
# Tag handles following options:
#   `render`: true (default) | false
#     do we want to render this content on the page, or manually access it via
#     helpers. Good example would be content for meta tags.
#   `namespace`:
#     Just a string that allows grouping of form elements in the admin area
#
class ComfortableMexicanSofa::Content::Tag::Fragment < ComfortableMexicanSofa::Content::Tag

  attr_reader :identifier, :renderable, :namespace, :options

  def initialize(context:, params: [], source: nil)
    super

    @options    = params.extract_options!
    @identifier = params[0]

    unless @identifier.present?
      raise Error, "Missing identifier for fragment tag: #{source}"
    end

    @namespace  = @options["namespace"] || "default"
    @renderable = @options["render"].to_s.downcase != "false"
  end

  # Grabs existing fragment record or spins up a new instance if there's none
  def fragment
    context.fragments.detect { |f| f.identifier == identifier } ||
      context.fragments.build(identifier: identifier)
  end

  def content
    fragment.content
  end

  # If `render: false` was passed in we won't render anything. Assuming that
  # that fragment content will be rendered manually
  def render
    renderable ? content : ""
  end

  # Tag renders its own form inputs via `form_field(template, index)`
  # For example:
  #   class MyTag < ComfortableMexicanSofa::Content::Tag::Fragment
  #     def form_field(view, index, &block)
  #       # omit yield if you don't want default wrapper
  #       yield view.text_area "input_name", "value"
  #     end
  #   end
  def form_field
    raise "Form field rendering not implemented for this Tag"
  end

end

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
comfortable_mexican_sofa-2.0.12 lib/comfortable_mexican_sofa/content/tags/fragment.rb
comfortable_mexican_sofa-2.0.11 lib/comfortable_mexican_sofa/content/tags/fragment.rb
comfortable_mexican_sofa-2.0.10 lib/comfortable_mexican_sofa/content/tags/fragment.rb
comfortable_mexican_sofa-2.0.9 lib/comfortable_mexican_sofa/content/tags/fragment.rb