html_slice 0.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +7 -0
- data/lib/html_slice/version.rb +5 -0
- data/lib/html_slice.rb +143 -0
- metadata +46 -0
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA256:
|
3
|
+
metadata.gz: 01ff53448e8ed2a5b6037c19f6fa9f823e498b17c0f9d41983eedd7c37d6f8ee
|
4
|
+
data.tar.gz: 01baf2dc1e815d10a8a73010a05cdbbf41b12e7db39500824403622999ff3c02
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: 0aa88b54f354e63ac39b51ac52be6a35ba1fe34044221b6f0f1b09f8963df4ed445aac5df6030c56ef4d229b1491d480c058b792063e3a6f3760f26f8c15fc5f
|
7
|
+
data.tar.gz: f6c7dfef7deede7bf93acac3e12ba3c1ae4f7bf9e553f10ae38074a50cbfb91c2666482214cbdcc13aa78e9a91ca3b542ba93e1e14d1c8fdd7db0a1a031302f0
|
data/lib/html_slice.rb
ADDED
@@ -0,0 +1,143 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
require_relative "html_slice/version"
|
4
|
+
require "cgi"
|
5
|
+
|
6
|
+
module HtmlSlice
|
7
|
+
class Error < StandardError; end
|
8
|
+
# HTML as a first-class citizen in ruby code
|
9
|
+
# Faster than ERB.
|
10
|
+
|
11
|
+
TAGS = %i[
|
12
|
+
div
|
13
|
+
title
|
14
|
+
embed
|
15
|
+
meta
|
16
|
+
br
|
17
|
+
a
|
18
|
+
em
|
19
|
+
b
|
20
|
+
i
|
21
|
+
ul
|
22
|
+
ol
|
23
|
+
li
|
24
|
+
img
|
25
|
+
table
|
26
|
+
tbody
|
27
|
+
thead
|
28
|
+
tr
|
29
|
+
th
|
30
|
+
td
|
31
|
+
form
|
32
|
+
input
|
33
|
+
button
|
34
|
+
link
|
35
|
+
h1
|
36
|
+
h2
|
37
|
+
h3
|
38
|
+
h4
|
39
|
+
h5
|
40
|
+
h6
|
41
|
+
hr
|
42
|
+
span
|
43
|
+
label
|
44
|
+
iframe
|
45
|
+
template
|
46
|
+
main
|
47
|
+
footer
|
48
|
+
aside
|
49
|
+
source
|
50
|
+
section
|
51
|
+
small
|
52
|
+
script
|
53
|
+
nav
|
54
|
+
area
|
55
|
+
]
|
56
|
+
|
57
|
+
EMPTY_TAGS = %i[
|
58
|
+
area
|
59
|
+
br
|
60
|
+
embed
|
61
|
+
hr
|
62
|
+
img
|
63
|
+
input
|
64
|
+
link
|
65
|
+
meta
|
66
|
+
source
|
67
|
+
].freeze
|
68
|
+
|
69
|
+
def html_layout(&block)
|
70
|
+
html_slice(:root, &block)
|
71
|
+
end
|
72
|
+
|
73
|
+
def html_slice(type = nil, &block)
|
74
|
+
if block_given?
|
75
|
+
if type == :root
|
76
|
+
wrap = ['<!DOCTYPE html><html>', '</html>']
|
77
|
+
else
|
78
|
+
wrap = ['','']
|
79
|
+
end
|
80
|
+
@html_slice = wrap[0].dup
|
81
|
+
instance_eval(&block)
|
82
|
+
@html_slice << wrap[1]
|
83
|
+
else
|
84
|
+
@html_slice
|
85
|
+
end
|
86
|
+
end
|
87
|
+
|
88
|
+
TAGS.each do |name|
|
89
|
+
define_method name do |*args, &block|
|
90
|
+
tag(name, *args, &block)
|
91
|
+
end
|
92
|
+
end
|
93
|
+
|
94
|
+
def _(content)
|
95
|
+
@html_slice << content.to_s
|
96
|
+
end
|
97
|
+
|
98
|
+
def tag(tag_name, *args, &block)
|
99
|
+
content, attributes = parse_html_tag_arguments(args)
|
100
|
+
generate_and_append_html_tag(tag_name, content, attributes, &block)
|
101
|
+
end
|
102
|
+
|
103
|
+
private
|
104
|
+
|
105
|
+
def parse_html_tag_arguments(args)
|
106
|
+
content = ''
|
107
|
+
attributes = {}
|
108
|
+
|
109
|
+
first_argument = args.shift
|
110
|
+
if first_argument.is_a?(String)
|
111
|
+
content = ::CGI.escapeHTML(first_argument)
|
112
|
+
attributes = args.pop || {}
|
113
|
+
elsif first_argument.is_a?(Hash)
|
114
|
+
attributes = first_argument
|
115
|
+
end
|
116
|
+
|
117
|
+
[content, attributes]
|
118
|
+
end
|
119
|
+
|
120
|
+
def generate_and_append_html_tag(tag_name, content, attributes, &block)
|
121
|
+
open_tag = build_html_open_tag(tag_name, attributes)
|
122
|
+
|
123
|
+
if block_given?
|
124
|
+
@html_slice << open_tag << ">"
|
125
|
+
instance_eval(&block)
|
126
|
+
@html_slice << "</#{tag_name}>"
|
127
|
+
else
|
128
|
+
if content.empty? && EMPTY_TAGS.include?(tag_name)
|
129
|
+
@html_slice << open_tag << "/>"
|
130
|
+
else
|
131
|
+
@html_slice << open_tag << ">" << content << "</#{tag_name}>"
|
132
|
+
end
|
133
|
+
end
|
134
|
+
end
|
135
|
+
|
136
|
+
def build_html_open_tag(tag_name, attributes)
|
137
|
+
open_tag = "<#{tag_name}"
|
138
|
+
attributes.each do |key, value|
|
139
|
+
open_tag << " #{key.to_s.gsub('_', '-')}='#{value}'"
|
140
|
+
end
|
141
|
+
open_tag
|
142
|
+
end
|
143
|
+
end
|
metadata
ADDED
@@ -0,0 +1,46 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: html_slice
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.1.0
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- henrique-ft
|
8
|
+
autorequire:
|
9
|
+
bindir: exe
|
10
|
+
cert_chain: []
|
11
|
+
date: 2024-12-28 00:00:00.000000000 Z
|
12
|
+
dependencies: []
|
13
|
+
description: Make Ruby classes the ability to generate reusable pieces of html
|
14
|
+
email:
|
15
|
+
- hriqueft@gmail.com
|
16
|
+
executables: []
|
17
|
+
extensions: []
|
18
|
+
extra_rdoc_files: []
|
19
|
+
files:
|
20
|
+
- lib/html_slice.rb
|
21
|
+
- lib/html_slice/version.rb
|
22
|
+
homepage:
|
23
|
+
licenses: []
|
24
|
+
metadata:
|
25
|
+
source_code_uri: https://github.com/henrique-ft/html_slice
|
26
|
+
changelog_uri: https://github.com/henrique-ft/html_slice/blob/master/CHANGELOG.md
|
27
|
+
post_install_message:
|
28
|
+
rdoc_options: []
|
29
|
+
require_paths:
|
30
|
+
- lib
|
31
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
32
|
+
requirements:
|
33
|
+
- - ">="
|
34
|
+
- !ruby/object:Gem::Version
|
35
|
+
version: 2.5.0
|
36
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
37
|
+
requirements:
|
38
|
+
- - ">="
|
39
|
+
- !ruby/object:Gem::Version
|
40
|
+
version: '0'
|
41
|
+
requirements: []
|
42
|
+
rubygems_version: 3.5.16
|
43
|
+
signing_key:
|
44
|
+
specification_version: 4
|
45
|
+
summary: Make Ruby classes the ability to generate reusable pieces of html
|
46
|
+
test_files: []
|