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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 01ff53448e8ed2a5b6037c19f6fa9f823e498b17c0f9d41983eedd7c37d6f8ee
4
- data.tar.gz: 01baf2dc1e815d10a8a73010a05cdbbf41b12e7db39500824403622999ff3c02
3
+ metadata.gz: 14881c23bd492c5f3153a2ea770b4b633721983cbd1d35558e0e55c396bec87f
4
+ data.tar.gz: 3537233117edbadeaa0fa0e7f02c7463d93abdd0ac8c7e6cf54b4f293aaf523c
5
5
  SHA512:
6
- metadata.gz: 0aa88b54f354e63ac39b51ac52be6a35ba1fe34044221b6f0f1b09f8963df4ed445aac5df6030c56ef4d229b1491d480c058b792063e3a6f3760f26f8c15fc5f
7
- data.tar.gz: f6c7dfef7deede7bf93acac3e12ba3c1ae4f7bf9e553f10ae38074a50cbfb91c2666482214cbdcc13aa78e9a91ca3b542ba93e1e14d1c8fdd7db0a1a031302f0
6
+ metadata.gz: 76107691df8555a630e8e65ba53fa7fe7926f536cf63a5c48defef81049e2f6916a104cafcbfed02be54801d4be663fdc44ab1c7d650caa91aeb6ec9e09927e5
7
+ data.tar.gz: d056915ccba22cc4c4fce0a6dc0b0c743a0dec87e67bf8e2092d80e6bf125388bf8b7368e611d90655f5f860e5a901902f270fe09b08b5dba8d3247fc60c75c1
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module HtmlSlice
4
- VERSION = "0.1.0"
4
+ VERSION = "0.2.1"
5
5
  end
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
- def html_layout(&block)
70
- html_slice(:root, &block)
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(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
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 block_given?
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
- 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
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.gsub('_', '-')}='#{value}'"
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.0
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: 2024-12-28 00:00:00.000000000 Z
11
+ date: 2025-01-02 00:00:00.000000000 Z
12
12
  dependencies: []
13
- description: Make Ruby classes the ability to generate reusable pieces of html
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: Make Ruby classes the ability to generate reusable pieces of html
45
+ summary: Enable Ruby classes the ability to generate reusable pieces of html
46
46
  test_files: []