Class: Forme::Serializer

Inherits:
Object
  • Object
show all
Defined in:
lib/forme.rb

Overview

Default serializer class used by the library. Any other serializer classes that want to produce html should probably subclass this class.

Registered as :default.

Direct Known Subclasses

AmericanTime

Defined Under Namespace

Classes: AmericanTime, PlainText

Constant Summary collapse

ESCAPE_HTML =

Borrowed from Rack::Utils, map of single character strings to html escaped versions.

{"&" => "&amp;", "<" => "&lt;", ">" => "&gt;", "'" => "&#39;", '"' => "&quot;"}
ESCAPE_HTML_PATTERN =

A regexp that matches all html characters requiring escaping.

Regexp.union(*ESCAPE_HTML.keys)
SELF_CLOSING =

Which tags are self closing (such tags ignore children).

[:img, :input]

Instance Method Summary collapse

Instance Method Details

#call(tag) ⇒ Object

Serialize the tag object to an html string. Supports Tag instances, Input instances (recursing into call with the result of formatting the input), arrays (recurses into call for each entry and joins the result), and (html escapes the string version of them, unless they include the Raw module, in which case no escaping is done).



1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
# File 'lib/forme.rb', line 1167

def call(tag)
  case tag
  when Tag
    if SELF_CLOSING.include?(tag.type)
      "<#{tag.type}#{attr_html(tag.attr)}/>"
    else
      "#{serialize_open(tag)}#{call(tag.children)}#{serialize_close(tag)}"
    end
  when Input
    call(tag.format)
  when Array
    tag.map{|x| call(x)}.join
  when DateTime, Time
    format_time(tag)
  when Date
    format_date(tag)
  when BigDecimal
    tag.to_s('F')
  when Raw
    tag.to_s
  else
    h tag
  end
end

#serialize_close(tag) ⇒ Object

Returns the closing part of the given tag.



1198
1199
1200
# File 'lib/forme.rb', line 1198

def serialize_close(tag)
  "</#{tag.type}>"
end

#serialize_open(tag) ⇒ Object

Returns the opening part of the given tag.



1193
1194
1195
# File 'lib/forme.rb', line 1193

def serialize_open(tag)
  "<#{tag.type}#{attr_html(tag.attr)}>"
end