Sha256: 811e070b9d9438a22d45bbaef3f4a8aae6eb810fcee7e079413efe895127aac1
Contents?: true
Size: 1.83 KB
Versions: 2
Compression:
Stored size: 1.83 KB
Contents
require 'hamlit/concerns/attribute_builder' require 'temple/utils' # Hamlit::Attribute is a module to compile old-style attributes which # can be compiled only on runtime. If you write old-style attributes # which is not valid as Ruby hash, the attributes are compiled on runtime. # # Note that you should avoid writing such a template for performance. module Hamlit class Attribute include Concerns::AttributeBuilder def self.build(quote, *args) builder = self.new(quote) builder.build(*args) end def initialize(quote) @quote = quote end def build(*args) result = '' attributes = args.inject({}) do |attributes, arg| merge_attributes(attributes, arg) end attributes.each do |key, value| if value == true result += " #{key}" next end value = refine_joinable_value(key, value) if value.is_a?(Array) escaped = Temple::Utils.escape_html(value) result += " #{key}=#{@quote}#{escaped}#{@quote}" end result end private def refine_joinable_value(key, value) case key when :id value = value.join('_') when :class value = value.join(' ') else value end end def merge_attributes(base, target) result = {} base = flatten_attributes(base) target = flatten_attributes(target) (base.keys | target.keys).each do |key| if base[key] && target[key] case key when :id result[key] = [base[key], target[key]].compact.join('_') when :class result[key] = [base[key], target[key]].flatten.compact.map(&:to_s).sort.uniq.join(' ') end else result[key] = base[key].nil? ? target[key] : base[key] end end result end end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
hamlit-1.6.6 | lib/hamlit/attribute.rb |
hamlit-1.6.5 | lib/hamlit/attribute.rb |