Class: Volt::ViewScope

Inherits:
Object show all
Includes:
AttributeScope
Defined in:
lib/volt/server/html_parser/view_scope.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods included from AttributeScope

#add_id_to_attributes, #add_multiple_attribute, #add_single_attribute, #add_string_template_renderer, #attribute_string, #binding_parts_and_count, #getter_to_setter, #process_attribute, #process_attributes, #process_event_binding

Constructor Details

#initialize(handler, path) ⇒ ViewScope

Returns a new instance of ViewScope.



10
11
12
13
14
15
16
17
# File 'lib/volt/server/html_parser/view_scope.rb', line 10

def initialize(handler, path)
  @handler = handler
  @path    = path

  @html           = ''
  @bindings       = {}
  @binding_number = 0
end

Instance Attribute Details

#binding_numberObject

Returns the value of attribute binding_number.



8
9
10
# File 'lib/volt/server/html_parser/view_scope.rb', line 8

def binding_number
  @binding_number
end

#bindingsObject (readonly)

Returns the value of attribute bindings.



7
8
9
# File 'lib/volt/server/html_parser/view_scope.rb', line 7

def bindings
  @bindings
end

#htmlObject (readonly)

Returns the value of attribute html.



7
8
9
# File 'lib/volt/server/html_parser/view_scope.rb', line 7

def html
  @html
end

#pathObject

Returns the value of attribute path.



8
9
10
# File 'lib/volt/server/html_parser/view_scope.rb', line 8

def path
  @path
end

Instance Method Details

#<<(html) ⇒ Object



19
20
21
# File 'lib/volt/server/html_parser/view_scope.rb', line 19

def <<(html)
  @html << html
end

#add_binding(content) ⇒ Object



23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
# File 'lib/volt/server/html_parser/view_scope.rb', line 23

def add_binding(content)
  content = content.strip
  index   = content.index(/[ \(]/)
  if index
    first_symbol = content[0...index]
    args         = content[index..-1].strip

    case first_symbol
      when 'if'
        add_if(args)
      when 'elsif'
        add_else(args)
      when 'else'
        if args.blank?
          add_else(nil)
        else
          fail "else does not take a conditional, #{content} was provided."
        end
      when 'view'
        add_template(args)
      when 'template'
        Volt.logger.warn('Deprecation warning: The template binding has been renamed to view.  Please update any views accordingly.')
        add_template(args)
      when 'yield'
        add_yield(args)
      else
        if content =~ /.each\s+do\s+\|/
          add_each(content, false)
        elsif content =~ /.each_with_index\s+do\s+\|/
          add_each(content, true)
        else
          add_content_binding(content)
        end
    end
  else
    case content
      when 'end'
        # Close the binding
        close_scope
      when 'else'
        add_else(nil)
      when 'yield'
        add_yield
      else
        add_content_binding(content)
    end
  end
end

#add_component(tag_name, attributes, unary) ⇒ Object



129
130
131
132
133
# File 'lib/volt/server/html_parser/view_scope.rb', line 129

def add_component(tag_name, attributes, unary)
  @handler.scope << ComponentViewScope.new(@handler, @path + "/__component#{@binding_number}", tag_name, attributes, unary)

  @handler.last.close_scope if unary
end

#add_content_binding(content) ⇒ Object



72
73
74
75
76
# File 'lib/volt/server/html_parser/view_scope.rb', line 72

def add_content_binding(content)
  @handler.html << "<!-- $#{@binding_number} --><!-- $/#{@binding_number} -->"
  save_binding(@binding_number, "lambda { |__p, __t, __c, __id| Volt::ContentBinding.new(__p, __t, __c, __id, Proc.new { #{content} }) }")
  @binding_number += 1
end

#add_each(content, with_index) ⇒ Object



88
89
90
# File 'lib/volt/server/html_parser/view_scope.rb', line 88

def add_each(content, with_index)
  @handler.scope << EachScope.new(@handler, @path + "/__each#{@binding_number}", content, with_index)
end

#add_else(content) ⇒ Object



84
85
86
# File 'lib/volt/server/html_parser/view_scope.rb', line 84

def add_else(content)
  fail '#else can only be added inside of an if block'
end

#add_if(content) ⇒ Object



78
79
80
81
82
# File 'lib/volt/server/html_parser/view_scope.rb', line 78

def add_if(content)
  # Add with path for if group.
  @handler.scope << IfViewScope.new(@handler, @path + "/__ifg#{@binding_number}", content)
  @binding_number += 1
end

#add_template(content) ⇒ Object



92
93
94
95
96
97
98
99
100
# File 'lib/volt/server/html_parser/view_scope.rb', line 92

def add_template(content)
  # Strip ( and ) from the outsides
  content = content.strip.gsub(/^\(/, '').gsub(/\)$/, '')

  @handler.html << "<!-- $#{@binding_number} --><!-- $/#{@binding_number} -->"
  save_binding(@binding_number, "lambda { |__p, __t, __c, __id| Volt::ViewBinding.new(__p, __t, __c, __id, #{@path.inspect}, Proc.new { [#{content}] }) }")

  @binding_number += 1
end

#add_textarea(tag_name, attributes, unary) ⇒ Object



135
136
137
138
139
140
141
# File 'lib/volt/server/html_parser/view_scope.rb', line 135

def add_textarea(tag_name, attributes, unary)
  @handler.scope << TextareaScope.new(@handler, @path + "/__txtarea#{@binding_number}", attributes)
  @binding_number += 1

  # close right away if unary
  @handler.last.close_scope if unary
end

#add_yield(content = nil) ⇒ Object



102
103
104
105
106
107
108
109
110
111
# File 'lib/volt/server/html_parser/view_scope.rb', line 102

def add_yield(content=nil)
  # Strip ( and ) from the outsides
  content ||= ''
  content = content.strip.gsub(/^\(/, '').gsub(/\)$/, '')

  @handler.html << "<!-- $#{@binding_number} --><!-- $/#{@binding_number} -->"
  save_binding(@binding_number, "lambda { |__p, __t, __c, __id| Volt::YieldBinding.new(__p, __t, __c, __id, Proc.new { [#{content}] }) }")

  @binding_number += 1
end

#close_scope(pop = true) ⇒ Object

Called when this scope should be closed out



144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
# File 'lib/volt/server/html_parser/view_scope.rb', line 144

def close_scope(pop = true)
  if pop
    scope = @handler.scope.pop
  else
    scope = @handler.last
  end

  fail "template path already exists: #{scope.path}" if @handler.templates[scope.path]

  template = {
    'html' => scope.html
  }

  if scope.bindings.size > 0
    # Add the bindings if there are any
    template['bindings'] = scope.bindings
  end

  @handler.templates[scope.path] = template
end

#last_method_name(getter) ⇒ Object



125
126
127
# File 'lib/volt/server/html_parser/view_scope.rb', line 125

def last_method_name(getter)
  getter.strip[/[^.]+$/]
end

#parent_fetcher(getter) ⇒ Object

Returns ruby code to fetch the parent. (by removing the last fetch) TODO: Probably want to do this with AST transforms with the parser/unparser gems



115
116
117
118
119
120
121
122
123
# File 'lib/volt/server/html_parser/view_scope.rb', line 115

def parent_fetcher(getter)
  parent = getter.strip.gsub(/[.][^.]+$/, '')

  if parent.blank? || !getter.index('.')
    parent = 'self'
  end

  parent
end

#save_binding(binding_number, code) ⇒ Object



165
166
167
168
# File 'lib/volt/server/html_parser/view_scope.rb', line 165

def save_binding(binding_number, code)
  @bindings[binding_number] ||= []
  @bindings[binding_number] << code
end