Sha256: de1a1852a40eb6da5cb8382d5ae6c98cc22a257168a7e0023b28dca966f9f0b4

Contents?: true

Size: 1.39 KB

Versions: 3

Compression:

Stored size: 1.39 KB

Contents

require 'active_support/core_ext'
require 'cgi'

module Happy
  module Helpers
    module Html
      def html_tag(name, options = nil, escape = true, &block)
        "<#{name} #{html_tag_attributes(options, escape) if options}#{block_given? ? ">#{yield if block_given?}</#{name}>" : " />"}"
      end

      def html_tag_attributes(options, escape = true)
        options.map do |k,v|
          if v
            v == true ? "#{k}" : "#{k}=\"#{ escape_html(v) }\""
          end
        end.compact.join(" ")
      end

      def escape_html(t)
        # Rack::Utils.escape_html(t.to_s)
        CGI::escape_html(t.to_s)
      end

      def preserve(t)
        t.chomp("\n").gsub(/\n/, '&#x000A;').gsub(/\r/, '')
      end

      def link_to(name, *target)
        options = target.last.is_a?(Hash) ? target.pop : {}
        html_tag(:a, options.merge(:href => url_for(*target))) { name }
      end

      def url_for(*what)
        return what.first if what.size == 1 && what.first =~ %r{://}

        result = what.flatten.inject('') do |url, item|
          url << "/%s" % case item
            when String, Symbol then item.to_s
            when NilClass then "/"
            else "%s/%s" % [item.class.to_s.tableize.pluralize, item.try(:to_param) || item.try(:to_id) || item.try(:id)]
          end

          url
        end.gsub(/\/{2,}/, '/').chomp('/')

        result == "" ? '/' : result
      end
    end
  end
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
happy-0.1.0 lib/happy/helpers/html.rb
happy-0.1.0.pre28 lib/happy/helpers/html.rb
happy-0.1.0.pre27 lib/happy/helpers/html.rb