Sha256: 29874d859da63e0176cfb21295a8ccbac1fa81fd2541e77d860a57d9de103143

Contents?: true

Size: 1.87 KB

Versions: 7

Compression:

Stored size: 1.87 KB

Contents

require 'faml/attribute_builder'

module Faml
  class Html < Temple::HTML::Fast
    # Override temple's default
    self.options[:format] = :html
    self.options[:attr_quote] = "'"

    def on_haml_tag(name, self_closing, attrs, content = nil)
      name = name.to_s
      closed = self_closing && (!content || empty_exp?(content))
      result = [:multi, [:static, "<#{name}"], compile(attrs)]
      result << [:static, (closed && @format != :html ? ' /' : '') + '>']
      result << compile(content) if content
      result << [:static, "</#{name}>"] if !closed
      result
    end

    def on_haml_attrs(code)
      [:dynamic, "::Faml::AttributeBuilder.build(#{options[:attr_quote].inspect}, #{options[:format] == :html}, #{code})"]
    end

    def on_haml_attr(name, value)
      if empty_exp?(value)
        true_attribute(name)
      elsif value[0] == :dvalue
        sym = unique_name
        [:multi,
          [:code, "#{sym} = (#{value[1]})"],
          [:case, sym,
            ['true', true_attribute(name)],
            ['false, nil', [:multi]],
            [:else, [:multi,
              [:static, " #{name}=#{options[:attr_quote]}"],
              [:escape, true, [:dynamic, sym]],
              [:static, options[:attr_quote]],
            ]],
          ],
        ]
      else
        [:multi,
          [:static, " #{name}=#{options[:attr_quote]}"],
          compile(value),
          [:static, options[:attr_quote]]]
      end
    end

    def on_haml_doctype(type)
      compile([:html, :doctype, type])
    rescue Temple::FilterError
      [:multi]
    end

    def on_haml_preserve(sym)
      [:dynamic, "::Faml::Compiler.find_and_preserve(#{sym}.to_s)"]
    end

    private

    def true_attribute(name)
      if @format == :html
        [:static, " #{name}"]
      else
        [:static, " #{name}=#{options[:attr_quote]}#{name}#{options[:attr_quote]}"]
      end
    end
  end
end

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
faml-0.3.2 lib/faml/html.rb
faml-0.3.1 lib/faml/html.rb
faml-0.3.0 lib/faml/html.rb
faml-0.2.16 lib/faml/html.rb
faml-0.2.15 lib/faml/html.rb
faml-0.2.14 lib/faml/html.rb
faml-0.2.13 lib/faml/html.rb