Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 2ca41a3

Browse files
committedFeb 7, 2014
Initial impl of compiled templates accepting locals
1 parent 85220f3 commit 2ca41a3

File tree

7 files changed

+41
-4
lines changed

7 files changed

+41
-4
lines changed
 

‎lib/opal/cli_options.rb

+4
Original file line numberDiff line numberDiff line change
@@ -89,6 +89,10 @@ def initialize
8989
opts.on("--[no-]irb", "IRB var mode") do |flag|
9090
options[:irb] = flag
9191
end
92+
93+
opts.on("--template", "Template compilation mode") do
94+
options[:template] = true
95+
end
9296
end
9397
end
9498

‎lib/opal/compiler.rb

+3
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,9 @@ def self.compiler_option(name, default_value, mid = nil)
3838
# compile top level local vars with support for irb style vars
3939
compiler_option :irb, false, :irb?
4040

41+
# is this file being compiled as a template?
42+
compiler_option :template, false, :template?
43+
4144
# how to handle dynamic requires (:error, :warning, :ignore)
4245
compiler_option :dynamic_require_severity, :error
4346

‎lib/opal/erb.rb

+7-2
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ def compile(source, file_name = '(erb)')
1515
self.find_code
1616
self.wrap_compiled
1717

18-
Opal.compile @result
18+
Opal.compile @result, :template => true
1919
end
2020

2121
def fix_quotes
@@ -43,7 +43,12 @@ def find_code
4343
end
4444

4545
def wrap_compiled
46-
@result = "Template.new('#@file_name') do |output_buffer|\noutput_buffer.append(\"#@result\")\noutput_buffer.join\nend\n"
46+
@result = <<-EOS
47+
Template.new("#@file_name") do |output_buffer, __locals = {}|
48+
output_buffer.append("#@result")
49+
output_buffer.join
50+
end
51+
EOS
4752
end
4853
end
4954
end

‎lib/opal/nodes/call.rb

+15
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,9 @@ def compile
2525
# if trying to access an lvar in irb mode
2626
return compile_irb_var if using_irb?
2727

28+
# if compiling a template, support local variables
29+
return compile_template_var if using_template?
30+
2831
mid = mid_to_jsid meth.to_s
2932

3033
splat = arglist[1..-1].any? { |a| a.first == :splat }
@@ -91,6 +94,18 @@ def using_irb?
9194
@compiler.irb? and scope.top? and arglist == s(:arglist) and recvr.nil? and iter.nil?
9295
end
9396

97+
def using_template?
98+
@compiler.template? and scope.iter? and arglist == s(:arglist) and recvr.nil? and iter.nil?
99+
end
100+
101+
def compile_template_var
102+
with_temp do |tmp|
103+
lvar = variable(meth)
104+
call = s(:call, s(:self), meth.intern, s(:arglist))
105+
push "((#{tmp} = __locals.map.#{lvar}) == null ? ", expr(call), " : #{tmp})"
106+
end
107+
end
108+
94109
# Handle "special" method calls, e.g. require(). Subclasses can override
95110
# this method. If this method returns nil, then the method will continue
96111
# to be generated by CallNode.

‎spec/opal/stdlib/erb/erb_spec.rb

+9
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,14 @@
33
require File.expand_path('../simple', __FILE__)
44
require File.expand_path('../quoted', __FILE__)
55
require File.expand_path('../inline_block', __FILE__)
6+
require File.expand_path('../with_locals', __FILE__)
67

78
describe "ERB files" do
89
before :each do
910
@simple = Template['stdlib/erb/simple']
1011
@quoted = Template['stdlib/erb/quoted']
1112
@inline_block = Template['stdlib/erb/inline_block']
13+
@with_locals = Template['stdlib/erb/with_locals']
1214
end
1315

1416
it "should be defined by their filename on Template namespace" do
@@ -28,4 +30,11 @@
2830
it "should be able to handle inline blocks" do
2931
@inline_block.should be_kind_of(Template)
3032
end
33+
34+
describe "locals" do
35+
it "can be passed to a compiled template" do
36+
def self.non_local; 'Ford'; end
37+
@with_locals.render(self, {is_local: 'Prefect'}).should == "Ford Prefect\n"
38+
end
39+
end
3140
end
+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
<%= non_local %> <%= is_local %>

‎stdlib/template.rb

+2-2
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,8 @@ def inspect
2323
"#<Template: '#@name'>"
2424
end
2525

26-
def render(ctx = self)
27-
ctx.instance_exec(OutputBuffer.new, &@body)
26+
def render(ctx = self, locals = {})
27+
ctx.instance_exec(OutputBuffer.new, locals, &@body)
2828
end
2929

3030
class OutputBuffer

0 commit comments

Comments
 (0)
Please sign in to comment.