serbea 0.7.1 → 0.10.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: c5b809ec2d2de960b954c9d12d4bdfaaf1f910ff1f1e5aa7ac217db968cd1ac7
4
- data.tar.gz: e819b84c2c0a33767f4d3736de70e916bfdd41fe354ba89a9f551172b22bdb41
3
+ metadata.gz: f7961cb287d077b528dd0367681aee6087a5efc9b3838670e7f8c7072b09c9ad
4
+ data.tar.gz: ca1a4701f70e49e28c67dfb407018dfd56eaf42391a0aa4230e1a15dc1b57f86
5
5
  SHA512:
6
- metadata.gz: 71b3ab77eed51511959586f271ff814e094c6ef4fb4278dc60d85b92dafec4a328a084e27359c7626b661dea18e4e4f6007bceb40b4780557e1454752ed95d27
7
- data.tar.gz: ff277d2b7471f668586248e0524429c8380ca30322f5b698bdf44b094a4cd7a202dfdfd3a87a7d1de3b652140eaf5d9e285f1addeb632e79e4be96b83e2e415b
6
+ metadata.gz: 84036346ec67f5789c380bd0772f1da6644223e1b82f6a5974de93c9c3b82c98b34c5a6f27c8c69dbb598b230a24b33a0ae16a9bee3a284b494eec81cec9f0ff
7
+ data.tar.gz: 78da2c4e5f3828153b9933fd0173475aaacdf3bb42e4a56a4ec69f12b6991488559a7cfb57f8f1a64008173dd280b7c3c47de4daebc4cda537ed3638c7af3cbc
data/Gemfile CHANGED
@@ -4,5 +4,3 @@ git_source(:github) {|repo_name| "https://github.com/#{repo_name}" }
4
4
 
5
5
  # Specify your gem's dependencies in serbea.gemspec
6
6
  gemspec
7
-
8
- gem "erubi", github: "jaredcwhite/erubi", branch: "config-literal-prefix"
data/README.md CHANGED
@@ -2,7 +2,7 @@
2
2
 
3
3
  The Ruby template language you've always dreamed of is finally here. _Le roi est mort, vive le roi!_
4
4
 
5
- Serbea combines the best ideas from "brace-style" template languages such as Liquid, Nunjucks, Twig, Jinja, Mustache, etc.—and applies them to the world of ERB. You can use Serbea in Rails application, Bridgetown static sites, or pretty much any Ruby scenario you could imagine.
5
+ Serbea combines the best ideas from "brace-style" template languages such as Liquid, Nunjucks, Twig, Jinja, Mustache, etc.—and applies them to the world of ERB. You can use Serbea in Rails applications, Bridgetown static sites, or pretty much any Ruby scenario you could imagine.
6
6
 
7
7
  ## Features
8
8
 
@@ -11,9 +11,9 @@ Serbea combines the best ideas from "brace-style" template languages such as Liq
11
11
  * Autoescaped variables by default within the pipeline (`{{ }}`) tags. Use the `safe`/`raw` or `escape`/`h` filters to control escaping on output.
12
12
  * Render directive `{%@ %}` as shortcut for rendering either string-named partials (`render "tmpl"`) or object instances (`render MyComponent.new`).
13
13
  * Supports every convention of ERB and builds upon it with new features (which is why it's "awesomer!").
14
- * Builtin frontmatter support (even in Rails!) so you can access the variables written into the top YAML within your templates.
14
+ * Builtin frontmatter support so you can access the variables written into the top YAML within your templates. In any Rails view, including layouts, you'll have access to the `@frontmatter` ivar which is a merged `HashWithDotAccess::Hash` with data from any part of the view tree (partials, pages, layout).
15
15
  * The filters accessible within Serbea templates are either helpers (where the variable gets passed as the first argument) or instance methods of the variable itself, so you can build extremely expressive pipelines that take advantage of the code you already know and love. (For example, in Rails you could write `{{ "My Link" | link_to: route_path }}`).
16
- * The `Serbea::Pipeline.exec` method lets you pass a pipeline template in, along with an optional input value or included helpers module, and you'll get the output as a object of any type (not converted to a string like in traditional templates). For example: `Serbea::Pipeline.exec("[1,2,3] |> map: ->(i) { i * 10 }")` will return `[10, 20, 30]`.
16
+ * The `Serbea::Pipeline.exec` method lets you pass a pipeline template in, along with an optional input value or included helpers module, and you'll get the output as a object of any type (not converted to a string like in traditional templates). For example: `Serbea::Pipeline.exec("arr |> map: ->(i) { i * 10 }", arr: [1,2,3])` will return `[10, 20, 30]`.
17
17
 
18
18
  ## What It Looks Like
19
19
 
@@ -10,7 +10,7 @@ module Tilt
10
10
  def prepare
11
11
  @options.merge!(
12
12
  outvar: "@_erbout",
13
- bufval: "Serbea::Buffer.new",
13
+ bufval: "Serbea::OutputBuffer.new",
14
14
  literal_prefix: "{%",
15
15
  literal_postfix: "%}",
16
16
  engine_class: Serbea::TemplateEngine
@@ -31,6 +31,8 @@ if defined?(Rails::Railtie)
31
31
  initializer :serbea do |app|
32
32
  ActiveSupport.on_load(:action_view) do
33
33
  require "serbea/rails_support"
34
+
35
+ ActionController::Base.include Serbea::Rails::FrontmatterControllerActions
34
36
  end
35
37
  end
36
38
  end
@@ -40,6 +40,8 @@ module Bridgetown
40
40
  #
41
41
  # @return [String] The converted content.
42
42
  def convert(content, convertible)
43
+ return content if convertible.data[:template_engine] != "serbea"
44
+
43
45
  serb_view = Bridgetown::SerbeaView.new(convertible)
44
46
 
45
47
  serb_renderer = Tilt::SerbeaTemplate.new(convertible.relative_path) { content }
@@ -53,16 +55,17 @@ module Bridgetown
53
55
  end
54
56
  end
55
57
 
56
- def matches(ext, convertible = nil)
57
- if convertible
58
- if convertible.data[:template_engine] == "serbea" ||
59
- (convertible.data[:template_engine].nil? &&
60
- @config[:template_engine] == "serbea")
61
- return true
62
- end
58
+ def matches(ext, convertible)
59
+ if convertible.data[:template_engine] == "serbea" ||
60
+ (convertible.data[:template_engine].nil? &&
61
+ @config[:template_engine] == "serbea")
62
+ convertible.data[:template_engine] = "serbea"
63
+ return true
63
64
  end
64
65
 
65
- super(ext)
66
+ super(ext).tap do |ext_matches|
67
+ convertible.data[:template_engine] = "serbea" if ext_matches
68
+ end
66
69
  end
67
70
 
68
71
  def output_ext(ext)
@@ -71,13 +74,3 @@ module Bridgetown
71
74
  end
72
75
  end
73
76
  end
74
-
75
- Bridgetown::Hooks.register :site, :pre_render, reloadable: false do |site|
76
- # make sure Liquid doesn't find {% %} and decide to process Serbea code!
77
- site.contents.each do |convertible|
78
- convertible.data.render_with_liquid = false if convertible.extname == ".serb"
79
- end
80
- site.layouts.values.each do |convertible|
81
- convertible.data.render_with_liquid = false if convertible.ext == ".serb"
82
- end
83
- end
@@ -8,11 +8,12 @@ module Serbea
8
8
 
9
9
  def capture(obj = nil, &block)
10
10
  previous_buffer_state = @_erbout
11
- @_erbout = Serbea::Buffer.new
11
+ @_erbout = Serbea::OutputBuffer.new
12
12
 
13
13
  # For compatibility with ActionView, not used by Bridgetown normally
14
14
  previous_ob_state = @output_buffer
15
- @output_buffer = Serbea::Buffer.new
15
+ @output_buffer = Serbea::OutputBuffer.new
16
+
16
17
 
17
18
  result = instance_exec(obj, &block)
18
19
  if @output_buffer != ""
@@ -22,7 +23,7 @@ module Serbea
22
23
  @_erbout = previous_buffer_state
23
24
  @output_buffer = previous_ob_state
24
25
 
25
- result.html_safe
26
+ result&.html_safe
26
27
  end
27
28
 
28
29
  def pipeline(context, value)
@@ -32,11 +33,11 @@ module Serbea
32
33
  def helper(name, &helper_block)
33
34
  self.class.define_method(name) do |*args, &block|
34
35
  previous_buffer_state = @_erbout
35
- @_erbout = Serbea::Buffer.new
36
+ @_erbout = Serbea::OutputBuffer.new
36
37
 
37
38
  # For compatibility with ActionView, not used by Bridgetown normally
38
39
  previous_ob_state = @output_buffer
39
- @output_buffer = Serbea::Buffer.new
40
+ @output_buffer = Serbea::OutputBuffer.new
40
41
 
41
42
  result = helper_block.call(*args, &block)
42
43
  if @output_buffer != ""
@@ -1,12 +1,13 @@
1
1
  require "active_support/core_ext/string/output_safety"
2
+ require "active_support/core_ext/object/blank"
2
3
 
3
4
  module Serbea
4
5
  class Pipeline
5
- def self.exec(template, input: (no_input_passed = true; nil), include_helpers: nil)
6
+ def self.exec(template, locals = {}, include_helpers: nil, **kwargs)
6
7
  anon = Class.new do
7
8
  include Serbea::Helpers
8
9
 
9
- attr_accessor :input, :output
10
+ attr_accessor :output
10
11
  end
11
12
 
12
13
  if include_helpers
@@ -14,12 +15,11 @@ module Serbea
14
15
  end
15
16
 
16
17
  pipeline_obj = anon.new
17
- pipeline_obj.input = input unless no_input_passed
18
18
 
19
19
  full_template = "{{ #{template} | assign_to: :output }}"
20
20
 
21
21
  tmpl = Tilt::SerbeaTemplate.new { full_template }
22
- tmpl.render(pipeline_obj)
22
+ tmpl.render(pipeline_obj, locals.presence || kwargs)
23
23
 
24
24
  pipeline_obj.output
25
25
  end
@@ -54,8 +54,9 @@ module Serbea
54
54
  @value_methods_denylist ||= Set.new
55
55
  end
56
56
 
57
- def initialize(context, value)
58
- @context = context
57
+ def initialize(binding, value)
58
+ @binding = binding
59
+ @context = binding.receiver
59
60
  @value = value
60
61
  end
61
62
 
@@ -83,6 +84,19 @@ module Serbea
83
84
  else
84
85
  @value = @context.send(name, @value, *args)
85
86
  end
87
+ elsif @binding.local_variables.include?(name)
88
+ var = @binding.local_variable_get(name)
89
+ if var.respond_to?(:call)
90
+ unless kwargs.empty?
91
+ @value = var.call(@value, *args, **kwargs)
92
+ else
93
+ @value = var.call(@value, *args)
94
+ end
95
+ else
96
+ "Serbea warning: Filter #{name} does not respond to call".tap do |warning|
97
+ self.class.raise_on_missing_filters ? raise(warning) : STDERR.puts(warning)
98
+ end
99
+ end
86
100
  else
87
101
  "Serbea warning: Filter not found: #{name}".tap do |warning|
88
102
  self.class.raise_on_missing_filters ? raise(warning) : STDERR.puts(warning)
@@ -1,21 +1,51 @@
1
1
  # frozen_string_literal: true
2
2
 
3
- # inspired by https://github.com/haml/haml/blob/main/lib/haml/plugin.rb
4
3
  module Serbea
5
- # This module makes Serbea work with Rails using the template handler API.
6
- class Plugin
7
- def handles_encoding?; true; end
4
+ module Rails
5
+ module FrontmatterHelpers
6
+ def set_page_frontmatter=(data)
7
+ @frontmatter ||= HashWithDotAccess::Hash.new
8
+ @frontmatter.update(data)
9
+ end
10
+ end
11
+
12
+ module FrontmatterControllerActions
13
+ extend ActiveSupport::Concern
8
14
 
9
- def compile(template, source)
10
- "self.class.include(Serbea::Helpers);" + Tilt::SerbeaTemplate.new { source }.precompiled_template([])
15
+ included do
16
+ Serbea::TemplateEngine.front_matter_preamble = "self.set_page_frontmatter = local_frontmatter = YAML.load"
17
+
18
+ before_action { @frontmatter ||= HashWithDotAccess::Hash.new }
19
+
20
+ helper Serbea::Rails::FrontmatterHelpers
21
+ end
11
22
  end
12
23
 
13
- def self.call(template, source = nil)
14
- source ||= template.source
24
+ class TemplateHandler
25
+ def handles_encoding?; true; end
26
+
27
+ def compile(template, source)
28
+ "self.class.include(Serbea::Helpers);" + Tilt::SerbeaTemplate.new { source }.precompiled_template([])
29
+ end
15
30
 
16
- new.compile(template, source)
31
+ def self.call(template, source = nil)
32
+ source ||= template.source
33
+
34
+ new.compile(template, source)
35
+ end
17
36
  end
18
37
  end
19
38
  end
20
39
 
21
- ActionView::Template.register_template_handler(:serb, Serbea::Plugin)
40
+ Serbea::TemplateEngine.directive :form, ->(code, buffer) do
41
+ buffer << "{%= form_with model:"
42
+ buffer << code
43
+ buffer << " %}"
44
+ end
45
+ Serbea::TemplateEngine.directive :_, ->(code, buffer) do
46
+ buffer << "{%= content_tag "
47
+ buffer << code
48
+ buffer << " %}"
49
+ end
50
+
51
+ ActionView::Template.register_template_handler(:serb, Serbea::Rails::TemplateHandler)
@@ -1,7 +1,7 @@
1
1
  require "strscan"
2
2
 
3
3
  module Serbea
4
- class Buffer < String
4
+ class OutputBuffer < String
5
5
  def concat_to_s(input)
6
6
  concat input.to_s
7
7
  end
@@ -14,11 +14,42 @@ module Serbea
14
14
  class TemplateEngine < Erubi::Engine
15
15
  FRONT_MATTER_REGEXP = %r!\A(---\s*\n.*?\n?)^((---|\.\.\.)\s*$\n?)!m.freeze
16
16
 
17
- def self.render_directive=(directive)
18
- @render_directive = directive
17
+ def self.directive(new_directive, directive_resolution)
18
+ directives[new_directive.to_s] = directive_resolution
19
19
  end
20
- def self.render_directive
21
- @render_directive ||= "render"
20
+ def self.directives
21
+ @directives ||= {
22
+ "@" => ->(code, buffer) do
23
+ original_line_length = code.lines.size
24
+
25
+ pieces = code.split(" ")
26
+ if pieces[0].start_with?(/[A-Z]/) # Ruby class name
27
+ pieces[0].prepend " "
28
+ pieces[0] << ".new("
29
+ else # string or something else
30
+ pieces[0].prepend "("
31
+ end
32
+
33
+ includes_block = false
34
+ pieces.reverse.each do |piece|
35
+ if piece == "do" && (pieces.last == "do" || pieces.last.end_with?("|"))
36
+ piece.prepend(") ")
37
+ includes_block = true
38
+ break
39
+ end
40
+ end
41
+
42
+ if includes_block
43
+ buffer << "{%= render#{pieces.join(" ")} %}"
44
+ else
45
+ pieces.last << ")"
46
+ buffer << "{%= render#{pieces.join(" ")} %}"
47
+ end
48
+ (original_line_length - 1).times do
49
+ buffer << "\n{% %}" # preserve original directive line length
50
+ end
51
+ end
52
+ }
22
53
  end
23
54
 
24
55
  def self.front_matter_preamble=(varname)
@@ -125,7 +156,7 @@ module Serbea
125
156
  end
126
157
  end
127
158
 
128
- segments[0] = "pipeline(self, (#{segments[0].strip}))"
159
+ segments[0] = "pipeline(binding, (#{segments[0].strip}))"
129
160
  segments[1..-1].each_with_index do |segment, index|
130
161
  filter, args = segment.strip.match(/([^ :]*)(.*)/m).captures
131
162
  segments[index + 1] = ".filter(:" + filter
@@ -149,39 +180,19 @@ module Serbea
149
180
  string = buff
150
181
  buff = ""
151
182
  until string.empty?
152
- text, code, string = string.partition(/{%@(.*?)%}/m)
153
-
183
+ text, code, string = string.partition(/{%@([a-z_]+)?(.*?)%}/m)
184
+
154
185
  buff << text
155
186
  if code.length > 0
156
- code = $1
187
+ directive = $1
188
+ code = $2
157
189
  unless ["end", ""].include? code.strip
158
- original_line_length = code.lines.size
159
-
160
- pieces = code.split(" ")
161
- if pieces[0].start_with?(/[A-Z]/) # Ruby class name
162
- pieces[0].prepend " "
163
- pieces[0] << ".new("
164
- else # string or something else
165
- pieces[0].prepend "("
166
- end
190
+ directive = $1 ? self.class.directives[$1] : self.class.directives["@"]
167
191
 
168
- includes_block = false
169
- pieces.reverse.each do |piece|
170
- if piece == "do" && (pieces.last == "do" || pieces.last.end_with?("|"))
171
- piece.prepend(") ")
172
- includes_block = true
173
- break
174
- end
175
- end
176
-
177
- if includes_block
178
- buff << "{%= #{self.class.render_directive}#{pieces.join(" ")} %}"
192
+ if directive
193
+ directive.(code, buff)
179
194
  else
180
- pieces.last << ")"
181
- buff << "{%= #{self.class.render_directive}#{pieces.join(" ")} %}"
182
- end
183
- (original_line_length - 1).times do
184
- buff << "\n{% %}" # preserve original directive line length
195
+ raise "Handler for Serbea template directive `#{$1}' not found"
185
196
  end
186
197
  else
187
198
  buff << "{% end %}"
@@ -1,3 +1,3 @@
1
1
  module Serbea
2
- VERSION = "0.7.1"
2
+ VERSION = "0.10.0"
3
3
  end
@@ -16,8 +16,10 @@ Gem::Specification.new do |spec|
16
16
  spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r!^(test|script|spec|features)/!) }
17
17
  spec.require_paths = ["lib"]
18
18
 
19
- spec.add_runtime_dependency("rake", "~> 13.0")
20
- spec.add_runtime_dependency("erubi", "~> 1.9")
21
19
  spec.add_runtime_dependency("activesupport", "~> 6.0")
20
+ spec.add_runtime_dependency("erubi", ">= 1.10")
21
+ spec.add_runtime_dependency("hash_with_dot_access", "~> 1.1")
22
22
  spec.add_runtime_dependency("tilt", "~> 2.0")
23
+
24
+ spec.add_development_dependency("rake", "~> 13.0")
23
25
  end
metadata CHANGED
@@ -1,57 +1,57 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: serbea
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.7.1
4
+ version: 0.10.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Bridgetown Team
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2020-11-01 00:00:00.000000000 Z
11
+ date: 2020-12-01 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
- name: rake
14
+ name: activesupport
15
15
  requirement: !ruby/object:Gem::Requirement
16
16
  requirements:
17
17
  - - "~>"
18
18
  - !ruby/object:Gem::Version
19
- version: '13.0'
19
+ version: '6.0'
20
20
  type: :runtime
21
21
  prerelease: false
22
22
  version_requirements: !ruby/object:Gem::Requirement
23
23
  requirements:
24
24
  - - "~>"
25
25
  - !ruby/object:Gem::Version
26
- version: '13.0'
26
+ version: '6.0'
27
27
  - !ruby/object:Gem::Dependency
28
28
  name: erubi
29
29
  requirement: !ruby/object:Gem::Requirement
30
30
  requirements:
31
- - - "~>"
31
+ - - ">="
32
32
  - !ruby/object:Gem::Version
33
- version: '1.9'
33
+ version: '1.10'
34
34
  type: :runtime
35
35
  prerelease: false
36
36
  version_requirements: !ruby/object:Gem::Requirement
37
37
  requirements:
38
- - - "~>"
38
+ - - ">="
39
39
  - !ruby/object:Gem::Version
40
- version: '1.9'
40
+ version: '1.10'
41
41
  - !ruby/object:Gem::Dependency
42
- name: activesupport
42
+ name: hash_with_dot_access
43
43
  requirement: !ruby/object:Gem::Requirement
44
44
  requirements:
45
45
  - - "~>"
46
46
  - !ruby/object:Gem::Version
47
- version: '6.0'
47
+ version: '1.1'
48
48
  type: :runtime
49
49
  prerelease: false
50
50
  version_requirements: !ruby/object:Gem::Requirement
51
51
  requirements:
52
52
  - - "~>"
53
53
  - !ruby/object:Gem::Version
54
- version: '6.0'
54
+ version: '1.1'
55
55
  - !ruby/object:Gem::Dependency
56
56
  name: tilt
57
57
  requirement: !ruby/object:Gem::Requirement
@@ -66,6 +66,20 @@ dependencies:
66
66
  - - "~>"
67
67
  - !ruby/object:Gem::Version
68
68
  version: '2.0'
69
+ - !ruby/object:Gem::Dependency
70
+ name: rake
71
+ requirement: !ruby/object:Gem::Requirement
72
+ requirements:
73
+ - - "~>"
74
+ - !ruby/object:Gem::Version
75
+ version: '13.0'
76
+ type: :development
77
+ prerelease: false
78
+ version_requirements: !ruby/object:Gem::Requirement
79
+ requirements:
80
+ - - "~>"
81
+ - !ruby/object:Gem::Version
82
+ version: '13.0'
69
83
  description:
70
84
  email: maintainers@bridgetownrb.com
71
85
  executables: []