class Liquid::If

If is the conditional block

{% if user.admin %}
  Admin user!
{% else %}
  Not admin user
{% endif %}

 There are {% if count < 5 %} less {% else %} more {% endif %} items than you need.

Constants

BOOLEAN_OPERATORS
ExpressionsAndOperators
Syntax

Public Class Methods

new(tag_name, markup, options) click to toggle source
Calls superclass method
# File lib/liquid/tags/if.rb, line 17
def initialize(tag_name, markup, options)
  super
  @blocks = []
  push_block('if'.freeze, markup)
end

Public Instance Methods

nodelist() click to toggle source
# File lib/liquid/tags/if.rb, line 23
def nodelist
  @blocks.flat_map(&:attachment)
end
render(context) click to toggle source
# File lib/liquid/tags/if.rb, line 35
def render(context)
  context.stack do
    @blocks.each do |block|
      if block.evaluate(context)
        return render_all(block.attachment, context)
      end
    end
    ''.freeze
  end
end
unknown_tag(tag, markup, tokens) click to toggle source
Calls superclass method Liquid::Block#unknown_tag
# File lib/liquid/tags/if.rb, line 27
def unknown_tag(tag, markup, tokens)
  if ['elsif'.freeze, 'else'.freeze].include?(tag)
    push_block(tag, markup)
  else
    super
  end
end

Private Instance Methods

lax_parse(markup) click to toggle source
# File lib/liquid/tags/if.rb, line 59
def lax_parse(markup)
  expressions = markup.scan(ExpressionsAndOperators)
  raise(SyntaxError.new(options[:locale].t("errors.syntax.if".freeze))) unless expressions.pop =~ Syntax

  condition = Condition.new($1, $2, $3)

  while not expressions.empty?
    operator = expressions.pop.to_s.strip

    raise(SyntaxError.new(options[:locale].t("errors.syntax.if".freeze))) unless expressions.pop.to_s =~ Syntax

    new_condition = Condition.new($1, $2, $3)
    raise(SyntaxError.new(options[:locale].t("errors.syntax.if".freeze))) unless BOOLEAN_OPERATORS.include?(operator)
    new_condition.send(operator, condition)
    condition = new_condition
  end

  condition
end
parse_binary_comparison(p) click to toggle source
# File lib/liquid/tags/if.rb, line 86
def parse_binary_comparison(p)
  condition = parse_comparison(p)
  if op = (p.id?('and'.freeze) || p.id?('or'.freeze))
    condition.send(op, parse_binary_comparison(p))
  end
  condition
end
parse_comparison(p) click to toggle source
# File lib/liquid/tags/if.rb, line 94
def parse_comparison(p)
  a = p.expression
  if op = p.consume?(:comparison)
    b = p.expression
    Condition.new(a, op, b)
  else
    Condition.new(a)
  end
end
push_block(tag, markup) click to toggle source
# File lib/liquid/tags/if.rb, line 48
def push_block(tag, markup)
  block = if tag == 'else'.freeze
    ElseCondition.new
  else
    parse_with_selected_parser(markup)
  end

  @blocks.push(block)
  @nodelist = block.attach(Array.new)
end
strict_parse(markup) click to toggle source
# File lib/liquid/tags/if.rb, line 79
def strict_parse(markup)
  p = Parser.new(markup)
  condition = parse_binary_comparison(p)
  p.consume(:end_of_string)
  condition
end