Sha256: 910213e028a76809c30884c410e33e974da59072e703d54320f69f3e5419825f
Contents?: true
Size: 1.96 KB
Versions: 4
Compression:
Stored size: 1.96 KB
Contents
module Liquid class Case < Block Syntax = /(#{QuotedFragment})/o WhenSyntax = /(#{QuotedFragment})(?:(?:\s+or\s+|\s*\,\s*)(#{QuotedFragment}.*))?/om def initialize(tag_name, markup, options) super @blocks = [] if markup =~ Syntax @left = Expression.parse($1) else raise SyntaxError.new(options[:locale].t("errors.syntax.case".freeze)) end end def parse(tokens) body = BlockBody.new while more = parse_body(body, tokens) body = @blocks.last.attachment end end def nodelist @blocks.map(&:attachment) end def unknown_tag(tag, markup, tokens) case tag when 'when'.freeze record_when_condition(markup) when 'else'.freeze record_else_condition(markup) else super end end def render(context) context.stack do execute_else_block = true output = '' @blocks.each do |block| if block.else? return block.attachment.render(context) if execute_else_block elsif block.evaluate(context) execute_else_block = false output << block.attachment.render(context) end end output end end private def record_when_condition(markup) body = BlockBody.new while markup if not markup =~ WhenSyntax raise SyntaxError.new(options[:locale].t("errors.syntax.case_invalid_when".freeze)) end markup = $2 block = Condition.new(@left, '=='.freeze, Expression.parse($1)) block.attach(body) @blocks << block end end def record_else_condition(markup) if not markup.strip.empty? raise SyntaxError.new(options[:locale].t("errors.syntax.case_invalid_else".freeze)) end block = ElseCondition.new block.attach(BlockBody.new) @blocks << block end end Template.register_tag('case'.freeze, Case) end
Version data entries
4 entries across 4 versions & 1 rubygems