require 'hanami/utils'
require 'hanami/utils/class_attribute'
require 'hanami/utils/escape'
require 'hanami/helpers/html_helper/empty_html_node'
require 'hanami/helpers/html_helper/html_node'
require 'hanami/helpers/html_helper/html_fragment'
require 'hanami/helpers/html_helper/text_node'
module Hanami
module Helpers
module HtmlHelper
# HTML Builder
#
# @since 0.1.0
class HtmlBuilder # rubocop:disable Metrics/ClassLength
# HTML5 content tags
#
# @since 0.1.0
# @api private
#
# @see Hanami::Helpers::HtmlHelper::HtmlNode
# @see https://developer.mozilla.org/en-US/docs/Web/HTML/Element
CONTENT_TAGS = %w[
a
abbr
address
article
aside
audio
b
bdi
bdo
blockquote
body
button
canvas
caption
cite
code
colgroup
data
datalist
del
details
dialog
dfn
div
dl
dt
dd
em
fieldset
figcaption
figure
footer
form
h1
h2
h3
h4
h5
h6
head
header
hgroup
i
iframe
ins
kbd
label
legend
li
main
map
mark
math
menu
meter
nav
noscript
object
ol
optgroup
option
output
p
pre
progress
q
rp
rt
rtc
ruby
s
samp
script
section
select
slot
small
span
strong
style
sub
summary
sup
svg
table
tbody
td
template
textarea
tfoot
th
thead
time
title
tr
u
ul
var
video
].freeze
# HTML5 empty tags
#
# @since 0.1.0
# @api private
#
# @see Hanami::Helpers::HtmlHelper::EmptyHtmlNode
# @see https://developer.mozilla.org/en-US/docs/Web/HTML/Element
EMPTY_TAGS = %w[
area
base
br
col
embed
hr
img
input
keygen
link
menuitem
meta
param
source
track
wbr
].freeze
# New line separator
#
# @since 0.1.0
# @api private
NEWLINE = "\n".freeze
CONTENT_TAGS.each do |tag|
class_eval %{
def #{tag}(content = nil, attributes = nil, &blk)
@nodes << self.class.html_node.new(:#{tag}, blk || content, attributes || content, options)
self
end
}, __FILE__, __LINE__ - 5
end
EMPTY_TAGS.each do |tag|
class_eval %{
def #{tag}(attributes = nil)
@nodes << EmptyHtmlNode.new(:#{tag}, attributes)
self
end
}, __FILE__, __LINE__ - 5
end
include Utils::ClassAttribute
class_attribute :html_node
self.html_node = ::Hanami::Helpers::HtmlHelper::HtmlNode
# Initialize a new builder
#
# @return [Hanami::Helpers::HtmlHelper::HtmlBuilder] the builder
#
# @since 0.1.0
# @api private
def initialize
@nodes = []
end
# @api private
def options
end
# Define a custom tag
#
# @param name [Symbol,String] the name of the tag
# @param content [String,Hanami::Helpers::HtmlHelper::HtmlBuilder,NilClass] the optional content
# @param attributes [Hash,NilClass] the optional tag attributes
# @param blk [Proc] the optional nested content espressed as a block
#
# @return [self]
#
# @since 0.1.0
# @api public
#
# @see Hanami::Helpers::HtmlHelper
#
# @example
# html.tag(:custom) # => hello hello
hello
#hanami
def fragment(&blk) @nodes << HtmlFragment.new(&blk) self end # Defines a custom empty tag # # @param name [Symbol,String] the name of the tag # @param attributes [Hash,NilClass] the optional tag attributes # # @return [self] # # @since 0.1.0 # @api public # # @see Hanami::Helpers::HtmlHelper # # @example # html.empty_tag(:xr) # =>