Skip to content

Commit

Permalink
Add a variable_name method Increment and Decrement tags objects (#1609)
Browse files Browse the repository at this point in the history
In order to expose this state when using the parse tree.
  • Loading branch information
dylanahsmith committed Aug 31, 2022
1 parent eb89f22 commit 3a736da
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 6 deletions.
9 changes: 6 additions & 3 deletions lib/liquid/tags/decrement.rb
Expand Up @@ -19,15 +19,18 @@ module Liquid
# {% decrement variable_name %}
# @liquid_syntax_keyword variable_name The name of the variable being decremented.
class Decrement < Tag
attr_reader :variable_name

def initialize(tag_name, markup, options)
super
@variable = markup.strip
@variable_name = markup.strip
end

def render_to_output_buffer(context, output)
value = context.environments.first[@variable] ||= 0
counter_environment = context.environments.first
value = counter_environment[@variable_name] || 0
value -= 1
context.environments.first[@variable] = value
counter_environment[@variable_name] = value
output << value.to_s
output
end
Expand Down
9 changes: 6 additions & 3 deletions lib/liquid/tags/increment.rb
Expand Up @@ -19,14 +19,17 @@ module Liquid
# {% increment variable_name %}
# @liquid_syntax_keyword variable_name The name of the variable being incremented.
class Increment < Tag
attr_reader :variable_name

def initialize(tag_name, markup, options)
super
@variable = markup.strip
@variable_name = markup.strip
end

def render_to_output_buffer(context, output)
value = context.environments.first[@variable] ||= 0
context.environments.first[@variable] = value + 1
counter_environment = context.environments.first
value = counter_environment[@variable_name] || 0
counter_environment[@variable_name] = value + 1

output << value.to_s
output
Expand Down

0 comments on commit 3a736da

Please sign in to comment.