Class: Macros4Cuke::Templating::Section

Inherits:
UnaryElement show all
Defined in:
lib/macros4cuke/templating/section.rb

Overview

on the value of a variable.

Direct Known Subclasses

ConditionalSection

Instance Attribute Summary collapse

Attributes inherited from UnaryElement

#name

Instance Method Summary collapse

Constructor Details

#initialize(aVarName) ⇒ Section

Returns a new instance of Section.

Parameters:

  • aVarName (String)

    The name of the placeholder from a template.



22
23
24
25
# File 'lib/macros4cuke/templating/section.rb', line 22

def initialize(aVarName)
  super(aVarName)
  @children = []
end

Instance Attribute Details

#childrenObject (readonly)

The child elements of the section



19
20
21
# File 'lib/macros4cuke/templating/section.rb', line 19

def children
  @children
end

Instance Method Details

#add_child(aChild) ⇒ Object

Add a child element as member of the section



28
29
30
# File 'lib/macros4cuke/templating/section.rb', line 28

def add_child(aChild)
  children << aChild
end

#render(_, _) ⇒ String

Render the placeholder given the passed arguments. This method has the same signature as the Engine#render method.

Returns:

  • (String)

    The text value assigned to the placeholder. Returns an empty string when no value is assigned to the placeholder.

Raises:

  • (NotImplementedError)


51
52
53
54
# File 'lib/macros4cuke/templating/section.rb', line 51

def render(_, _)
  msg = "Method Section.#{__method__} must be implemented in subclass."
  raise(NotImplementedError, msg)
end

#variablesArray

Retrieve all placeholder names that appear in the template.

Returns:

  • (Array)

    The list of placeholder names.



34
35
36
37
38
39
40
41
42
43
44
45
# File 'lib/macros4cuke/templating/section.rb', line 34

def variables()
  all_vars = children.each_with_object([]) do |a_child, subResult|
    case a_child
      when Placeholder
        subResult << a_child.name
      when Section
        subResult.concat(a_child.variables)
    end
  end

  return all_vars.flatten.uniq
end