class Liquid::Case

Constants

Syntax
WhenSyntax

Public Class Methods

new(tag_name, markup, options) click to toggle source
Calls superclass method
# File lib/liquid/tags/case.rb, line 6
def initialize(tag_name, markup, options)
  super
  @blocks = []

  if markup =~ Syntax
    @left = $1
  else
    raise SyntaxError.new(options[:locale].t("errors.syntax.case".freeze))
  end
end

Public Instance Methods

nodelist() click to toggle source
# File lib/liquid/tags/case.rb, line 17
def nodelist
  @blocks.flat_map(&:attachment)
end
render(context) click to toggle source
# File lib/liquid/tags/case.rb, line 33
def render(context)
  context.stack do
    execute_else_block = true

    output = ''
    @blocks.each do |block|
      if block.else?
        return render_all(block.attachment, context) if execute_else_block
      elsif block.evaluate(context)
        execute_else_block = false
        output << render_all(block.attachment, context)
      end
    end
    output
  end
end
unknown_tag(tag, markup, tokens) click to toggle source
Calls superclass method Liquid::Block#unknown_tag
# File lib/liquid/tags/case.rb, line 21
def unknown_tag(tag, markup, tokens)
  @nodelist = []
  case tag
  when 'when'.freeze
    record_when_condition(markup)
  when 'else'.freeze
    record_else_condition(markup)
  else
    super
  end
end

Private Instance Methods

record_else_condition(markup) click to toggle source
# File lib/liquid/tags/case.rb, line 67
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(@nodelist)
  @blocks << block
end
record_when_condition(markup) click to toggle source
# File lib/liquid/tags/case.rb, line 52
def record_when_condition(markup)
  while markup
    # Create a new nodelist and assign it to the new block
    if not markup =~ WhenSyntax
      raise SyntaxError.new(options[:locale].t("errors.syntax.case_invalid_when".freeze))
    end

    markup = $2

    block = Condition.new(@left, '=='.freeze, $1)
    block.attach(@nodelist)
    @blocks.push(block)
  end
end