Sha256: b8d733486f5b3543ccc4c0d3b6e9c024295adc74bcd3e5f4591083ef441ae270

Contents?: true

Size: 1.68 KB

Versions: 6

Compression:

Stored size: 1.68 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_string)
    super

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

    unless @identifier.present?
      raise Error, "Missing identifier for fragment tag"
    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

6 entries across 6 versions & 1 rubygems

Version Path
comfortable_mexican_sofa-2.0.8 lib/comfortable_mexican_sofa/content/tags/fragment.rb
comfortable_mexican_sofa-2.0.7 lib/comfortable_mexican_sofa/content/tags/fragment.rb
comfortable_mexican_sofa-2.0.6 lib/comfortable_mexican_sofa/content/tags/fragment.rb
comfortable_mexican_sofa-2.0.5 lib/comfortable_mexican_sofa/content/tags/fragment.rb
comfortable_mexican_sofa-2.0.4 lib/comfortable_mexican_sofa/content/tags/fragment.rb
comfortable_mexican_sofa-2.0.3 lib/comfortable_mexican_sofa/content/tags/fragment.rb