Class: Slim::Controls Private

Inherits:
Filter
  • Object
show all
Defined in:
lib/slim/controls.rb

This class is part of a private API. You should avoid using this class if possible, as it may be removed or be changed in the future.

Instance Method Summary collapse

Methods inherited from Filter

#on_slim_embedded

Instance Method Details

#on_slim_control(code, content) ⇒ Array

This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.

Handle control expression [:slim, :control, code, content]

Parameters:

  • code (String)

    Ruby code

  • content (Array)

    Temple expression

Returns:

  • (Array)

    Compiled temple expression



11
12
13
14
15
# File 'lib/slim/controls.rb', line 11

def on_slim_control(code, content)
  [:multi,
    [:code, code],
    compile(content)]
end

#on_slim_output(escape, code, content) ⇒ Array

This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.

Handle output expression [:slim, :output, escape, code, content]

Parameters:

  • escape (Boolean)

    Escape html

  • code (String)

    Ruby code

  • content (Array)

    Temple expression

Returns:

  • (Array)

    Compiled temple expression



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
# File 'lib/slim/controls.rb', line 23

def on_slim_output(escape, code, content)
  if empty_exp?(content)
    [:multi, [:escape, escape, [:dynamic, code]], content]
  else
    tmp = unique_name

    [:multi,
     # Capture the result of the code in a variable. We can't do
     # `[:dynamic, code]` because it's probably not a complete
     # expression (which is a requirement for Temple).
     [:block, "#{tmp} = #{code}",

      # Capture the content of a block in a separate buffer. This means
      # that `yield` will not output the content to the current buffer,
      # but rather return the output.
      #
      # The capturing can be disabled with the option :disable_capture.
      # Output code in the block writes directly to the output buffer then.
      # Rails handles this by replacing the output buffer for helpers.
      options[:disable_capture] ? compile(content) : [:capture, unique_name, compile(content)]],

     # Output the content.
     [:escape, escape, [:dynamic, tmp]]]
  end
end

#on_slim_text(content) ⇒ Array

This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.

Handle text expression [:slim, :text, content]

Parameters:

  • content (Array)

    Temple expression

Returns:

  • (Array)

    Compiled temple expression



53
54
55
# File 'lib/slim/controls.rb', line 53

def on_slim_text(content)
  compile(content)
end