html_slice 0.1.0 → 0.2.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 01ff53448e8ed2a5b6037c19f6fa9f823e498b17c0f9d41983eedd7c37d6f8ee
4
- data.tar.gz: 01baf2dc1e815d10a8a73010a05cdbbf41b12e7db39500824403622999ff3c02
3
+ metadata.gz: 6245ada66a612642275543da0386d0d24156a35ea62dbb862c653f297c3510b0
4
+ data.tar.gz: d3e1d037b9eadae637d63b1201b4d369ce5f78bce92bf5987be300f6522ba6dc
5
5
  SHA512:
6
- metadata.gz: 0aa88b54f354e63ac39b51ac52be6a35ba1fe34044221b6f0f1b09f8963df4ed445aac5df6030c56ef4d229b1491d480c058b792063e3a6f3760f26f8c15fc5f
7
- data.tar.gz: f6c7dfef7deede7bf93acac3e12ba3c1ae4f7bf9e553f10ae38074a50cbfb91c2666482214cbdcc13aa78e9a91ca3b542ba93e1e14d1c8fdd7db0a1a031302f0
6
+ metadata.gz: c8608628b7836a7a04608e6d571b3be3ccf5e3f2ee8ec88a56e524e96a536ce84d3949ef59f5c948f55328fee6a938652516b32fa13688bfe4a70a486b2a7bf2
7
+ data.tar.gz: 35f65979d6eea4aef9f2a034827b5beb05fc7304ae557d7112b8be0006ccb13ad3bb990fbc8c1b02c768a54139241824babb58b01f38e91f9806b6d1b8d08af7
@@ -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.0"
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)
79
+ def html_slice(html_slice_current_id = DEFAULT_SLICE, wrap: ["", ""], &block)
80
+ @html_slice_current_id = html_slice_current_id
74
81
  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
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
@@ -121,22 +124,20 @@ module HtmlSlice
121
124
  open_tag = build_html_open_tag(tag_name, attributes)
122
125
 
123
126
  if block_given?
124
- @html_slice << open_tag << ">"
127
+ @html_slice[@html_slice_current_id] << open_tag << ">"
125
128
  instance_eval(&block)
126
- @html_slice << "</#{tag_name}>"
129
+ @html_slice[@html_slice_current_id] << "</#{tag_name}>"
130
+ elsif content.empty? && EMPTY_TAGS.include?(tag_name)
131
+ @html_slice[@html_slice_current_id] << open_tag << "/>"
127
132
  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
+ @html_slice[@html_slice_current_id] << open_tag << ">" << content << "</#{tag_name}>"
133
134
  end
134
135
  end
135
136
 
136
137
  def build_html_open_tag(tag_name, attributes)
137
138
  open_tag = "<#{tag_name}"
138
139
  attributes.each do |key, value|
139
- open_tag << " #{key.to_s.gsub('_', '-')}='#{value}'"
140
+ open_tag << " #{key.to_s.gsub("_", "-")}='#{value}'"
140
141
  end
141
142
  open_tag
142
143
  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.0
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-01 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: []