Class: Liquid::CustomBlocks::KeyIterator
- Inherits:
-
Block
- Object
- Block
- Liquid::CustomBlocks::KeyIterator
- Defined in:
- lib/liquid/custom_blocks/key_iterator.rb
Instance Method Summary collapse
-
#initialize(tag_name, markup, tokens) ⇒ KeyIterator
constructor
A new instance of KeyIterator.
-
#render(context) ⇒ Object
rubocop:disable Metrics/MethodLength.
Constructor Details
#initialize(tag_name, markup, tokens) ⇒ KeyIterator
4 5 6 7 |
# File 'lib/liquid/custom_blocks/key_iterator.rb', line 4 def initialize(tag_name, markup, tokens) super @context_name, @var_name = markup.split(",").map(&:strip) end |
Instance Method Details
#render(context) ⇒ Object
rubocop:disable Metrics/MethodLength
9 10 11 12 13 14 15 16 17 18 19 20 21 22 |
# File 'lib/liquid/custom_blocks/key_iterator.rb', line 9 def render(context) # rubocop:disable Metrics/MethodLength res = "" iterator = if context[@context_name].is_a?(Hash) context[@context_name].keys else context[@context_name] end iterator.each.with_index do |key, index| context["index"] = index context[@var_name] = key res += super end res end |