Sha256: 2d98014ce16d946bfcbdb5327f4844bc3a65d5000a771a53350263711bbb55ed
Contents?: true
Size: 1.04 KB
Versions: 3
Compression:
Stored size: 1.04 KB
Contents
# 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 ComfortableMexicanSofa::Content::Tag::Partial < ComfortableMexicanSofa::Content::Tag attr_reader :path, :locals def initialize(context, params_string) 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 "<%= render partial: '@path', locals: #{@locals} %>" end def render whitelist = ComfortableMexicanSofa.config.allowed_partials if whitelist.is_a?(Array) whitelist.member?(@path) ? content : "" else content end end end ComfortableMexicanSofa::Content::Renderer.register_tag( :partial, ComfortableMexicanSofa::Content::Tag::Partial )
Version data entries
3 entries across 3 versions & 1 rubygems