Sha256: ffee2c0853a241bd1d5ca3e814554b95fd0b8c005cb1b4095c7314267bb2b0ef

Contents?: true

Size: 1.07 KB

Versions: 1

Compression:

Stored size: 1.07 KB

Contents

# frozen_string_literal: true

# Tag for injecting partials. Example tag:
#   {{cms:partial path/to/partial, foo: bar, zip: zoop}}
# This expands into a familiar:
#   <%= render partial: "path/to/partial", locals: {foo: bar, zip: zoop} %>
# Whitelist is can be used to control what partials are renderable.
#
class Occams::Content::Tag::Partial < Occams::Content::Tag
  attr_reader :path, :locals

  def initialize(context:, params: [], source: nil)
    super
    @locals = params.extract_options!
    @path   = params[0]

    unless @path.present?
      raise Error, "Missing path for partial tag"
    end
  end

  # we output erb into rest of the content
  def allow_erb?
    true
  end

  def content
    format(
      "<%%= render partial: %<path>p, locals: %<locals>s %%>",
      path: @path,
      locals: @locals
    )
  end

  def render
    whitelist = Occams.config.allowed_partials
    if whitelist.is_a?(Array)
      whitelist.member?(@path) ? content : ""
    else
      content
    end
  end
end

Occams::Content::Renderer.register_tag(
  :partial, Occams::Content::Tag::Partial
)

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
occams-1.0.1 lib/occams/content/tags/partial.rb