html_slice 0.1.0 → 0.2.1
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 +4 -4
- data/lib/html_slice/version.rb +1 -1
- data/lib/html_slice.rb +28 -24
- metadata +4 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 14881c23bd492c5f3153a2ea770b4b633721983cbd1d35558e0e55c396bec87f
|
4
|
+
data.tar.gz: 3537233117edbadeaa0fa0e7f02c7463d93abdd0ac8c7e6cf54b4f293aaf523c
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 76107691df8555a630e8e65ba53fa7fe7926f536cf63a5c48defef81049e2f6916a104cafcbfed02be54801d4be663fdc44ab1c7d650caa91aeb6ec9e09927e5
|
7
|
+
data.tar.gz: d056915ccba22cc4c4fce0a6dc0b0c743a0dec87e67bf8e2092d80e6bf125388bf8b7368e611d90655f5f860e5a901902f270fe09b08b5dba8d3247fc60c75c1
|
data/lib/html_slice/version.rb
CHANGED
data/lib/html_slice.rb
CHANGED
@@ -52,7 +52,7 @@ module HtmlSlice
|
|
52
52
|
script
|
53
53
|
nav
|
54
54
|
area
|
55
|
-
]
|
55
|
+
].freeze
|
56
56
|
|
57
57
|
EMPTY_TAGS = %i[
|
58
58
|
area
|
@@ -66,22 +66,25 @@ module HtmlSlice
|
|
66
66
|
source
|
67
67
|
].freeze
|
68
68
|
|
69
|
-
|
70
|
-
|
69
|
+
DEFAULT_SLICE = :default
|
70
|
+
|
71
|
+
def html_layout(html_slice_current_id = DEFAULT_SLICE, &block)
|
72
|
+
html_slice(
|
73
|
+
html_slice_current_id,
|
74
|
+
wrap: ["<!DOCTYPE html><html>", "</html>"],
|
75
|
+
&block
|
76
|
+
)
|
71
77
|
end
|
72
78
|
|
73
|
-
def html_slice(
|
74
|
-
|
75
|
-
|
76
|
-
|
77
|
-
|
78
|
-
wrap = ['','']
|
79
|
-
end
|
80
|
-
@html_slice = wrap[0].dup
|
79
|
+
def html_slice(html_slice_current_id = DEFAULT_SLICE, wrap: ["", ""], &block)
|
80
|
+
@html_slice_current_id = html_slice_current_id
|
81
|
+
if block
|
82
|
+
@html_slice ||= {}
|
83
|
+
@html_slice[@html_slice_current_id] = wrap[0].dup
|
81
84
|
instance_eval(&block)
|
82
|
-
@html_slice << wrap[1]
|
85
|
+
@html_slice[@html_slice_current_id] << wrap[1]
|
83
86
|
else
|
84
|
-
@html_slice
|
87
|
+
@html_slice[@html_slice_current_id] || ""
|
85
88
|
end
|
86
89
|
end
|
87
90
|
|
@@ -92,7 +95,7 @@ module HtmlSlice
|
|
92
95
|
end
|
93
96
|
|
94
97
|
def _(content)
|
95
|
-
@html_slice << content.to_s
|
98
|
+
@html_slice[@html_slice_current_id] << content.to_s
|
96
99
|
end
|
97
100
|
|
98
101
|
def tag(tag_name, *args, &block)
|
@@ -103,7 +106,7 @@ module HtmlSlice
|
|
103
106
|
private
|
104
107
|
|
105
108
|
def parse_html_tag_arguments(args)
|
106
|
-
content =
|
109
|
+
content = ""
|
107
110
|
attributes = {}
|
108
111
|
|
109
112
|
first_argument = args.shift
|
@@ -119,24 +122,25 @@ module HtmlSlice
|
|
119
122
|
|
120
123
|
def generate_and_append_html_tag(tag_name, content, attributes, &block)
|
121
124
|
open_tag = build_html_open_tag(tag_name, attributes)
|
125
|
+
@html_slice ||= {}
|
126
|
+
@html_slice_current_id ||= DEFAULT_SLICE
|
127
|
+
@html_slice[@html_slice_current_id] ||= +""
|
122
128
|
|
123
|
-
if
|
124
|
-
@html_slice << open_tag << ">"
|
129
|
+
if block
|
130
|
+
@html_slice[@html_slice_current_id] << open_tag << ">"
|
125
131
|
instance_eval(&block)
|
126
|
-
@html_slice << "</#{tag_name}>"
|
132
|
+
@html_slice[@html_slice_current_id] << "</#{tag_name}>"
|
133
|
+
elsif content.empty? && EMPTY_TAGS.include?(tag_name)
|
134
|
+
@html_slice[@html_slice_current_id] << open_tag << "/>"
|
127
135
|
else
|
128
|
-
|
129
|
-
@html_slice << open_tag << "/>"
|
130
|
-
else
|
131
|
-
@html_slice << open_tag << ">" << content << "</#{tag_name}>"
|
132
|
-
end
|
136
|
+
@html_slice[@html_slice_current_id] << open_tag << ">" << content << "</#{tag_name}>"
|
133
137
|
end
|
134
138
|
end
|
135
139
|
|
136
140
|
def build_html_open_tag(tag_name, attributes)
|
137
141
|
open_tag = "<#{tag_name}"
|
138
142
|
attributes.each do |key, value|
|
139
|
-
open_tag << " #{key.to_s.
|
143
|
+
open_tag << " #{key.to_s.tr("_", "-")}='#{value}'"
|
140
144
|
end
|
141
145
|
open_tag
|
142
146
|
end
|
metadata
CHANGED
@@ -1,16 +1,16 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: html_slice
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1
|
4
|
+
version: 0.2.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- henrique-ft
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2025-01-02 00:00:00.000000000 Z
|
12
12
|
dependencies: []
|
13
|
-
description:
|
13
|
+
description: Enable Ruby classes the ability to generate reusable pieces of html
|
14
14
|
email:
|
15
15
|
- hriqueft@gmail.com
|
16
16
|
executables: []
|
@@ -42,5 +42,5 @@ requirements: []
|
|
42
42
|
rubygems_version: 3.5.16
|
43
43
|
signing_key:
|
44
44
|
specification_version: 4
|
45
|
-
summary:
|
45
|
+
summary: Enable Ruby classes the ability to generate reusable pieces of html
|
46
46
|
test_files: []
|