-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathelement.go
279 lines (236 loc) · 6.78 KB
/
element.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
package gohtml
import (
"strings"
"golang.org/x/net/html"
"github.com/saihon/gohtml/attr"
"github.com/saihon/gohtml/find"
"github.com/saihon/gohtml/utils"
)
// Element
type Element struct {
Node *html.Node
}
// GetElementsByTagName returns find all elements have given tagname
func (e Element) GetElementsByTagName(tagname string) Collection {
var c Collection
c.Nodes = find.ByTag(e.Node, tagname)
return c
}
// GetElementsByName returns find all elements has given name
func (e Element) GetElementsByName(name string) Collection {
var c Collection
c.Nodes = find.ByName(e.Node, name)
return c
}
// GetElementsByClassName returns find all elements has given classname
func (e Element) GetElementsByClassName(classname string) Collection {
var c Collection
c.Nodes = find.ByClass(e.Node, classname)
return c
}
// QuerySelectorAll returns find all elements has given css selector
func (e Element) QuerySelectorAll(s string) Collection {
var c Collection
c.Nodes = find.QueryAll(e.Node, s)
return c
}
// GetElementById returns find an element has given id
func (e Element) GetElementById(id string) *Element {
if n := find.ById(e.Node, id); n != nil {
return &Element{Node: n}
}
return nil
}
// QuerySelector returns find an element have given css selector
func (e Element) QuerySelector(s string) *Element {
if n := find.Query(e.Node, s); n != nil {
return &Element{Node: n}
}
return nil
}
// FirstChild returns first child node
func (e Element) FirstChild() *html.Node {
return e.Node.FirstChild
}
// LastChild returns last child node
func (e Element) LastChild() *html.Node {
return e.Node.LastChild
}
// NextSibling returns next sibling node
func (e Element) NextSibling() *html.Node {
return e.Node.NextSibling
}
// PreviousSibling returns previous sibling node
func (e Element) PreviousSibling() *html.Node {
return e.Node.PrevSibling
}
// ParentNode returns parent node
func (e Element) ParentNode() *html.Node {
return e.Node.Parent
}
// ChildNodes returns all of child nodes
func (e Element) ChildNodes() []*html.Node {
return utils.ChildNodes(e.Node)
}
// HasChildNodes returns true if "Document" has node
func (e Element) HasChildNodes() bool {
return e.Node.FirstChild != nil
}
// InnerHTML set or get inner html to an element
func (e Element) InnerHTML(text ...string) string {
return utils.Html(e.Node, text...)
}
// OuterHTML include element itself
func (e Element) OuterHTML() string {
return utils.HTML(e.Node)
}
// Children returns all of child html.ElementNode as "Collection"
func (e Element) Children() Collection {
var nodes []*html.Node
for c := e.Node.FirstChild; c != nil; c = c.NextSibling {
if utils.IsElement(c) {
nodes = append(nodes, c)
}
}
return Collection{Nodes: nodes}
}
// ParentElement returns parent node as "*Element"
func (e Element) ParentElement() *Element {
if n := utils.Parent(e.Node); n != nil {
return &Element{n}
}
return nil
}
// FirstElementChild returns first html.ElementNode as "*Element"
func (e Element) FirstElementChild() *Element {
if n := utils.First(e.Node); n != nil {
return &Element{Node: n}
}
return nil
}
// ChildElementCount returns the number of html.ElementNode
func (e Element) ChildElementCount() int {
return utils.Count(e.Node)
}
// NextElementSibling returns next html.ElementNode as "*Element"
func (e Element) NextElementSibling() *Element {
if n := utils.Next(e.Node); n != nil {
return &Element{Node: n}
}
return nil
}
// PreviousElementSibling returns previous html.ElementNode as "*Element"
func (e Element) PreviousElementSibling() *Element {
if n := utils.Prev(e.Node); n != nil {
return &Element{Node: n}
}
return nil
}
// LastElementChild returns last html.ElementNode as "*Element"
func (e Element) LastElementChild() *Element {
if n := utils.Last(e.Node); n != nil {
return &Element{Node: n}
}
return nil
}
// CloneNode returns clone "*Element"
func (e Element) CloneNode() *Element {
if n := utils.Clone(e.Node); n != nil {
return &Element{n}
}
return nil
}
// Remove delete Element itself
func (e Element) Remove() {
utils.Remove(e.Node)
}
// RemoveChild remove a given "*Element"
// specified *Element is must be child
func (e Element) RemoveChild(c *Element) {
e.Node.RemoveChild(c.Node)
}
// ReplaceChild returns old element. panic if an error
func (e Element) ReplaceChild(newElement, oldElement *Element) *Element {
n := utils.Replace(e.Node, newElement.Node, oldElement.Node)
return &Element{n}
}
// AppendChild append "*Element" as last child
func (e Element) AppendChild(c *Element) {
e.Node.AppendChild(c.Node)
}
// InsertBefore inserts a newChild before the oldChild as child
func (e Element) InsertBefore(newChild, oldChild *Element) {
e.Node.InsertBefore(newChild.Node, oldChild.Node)
}
// Position
/*
<!-- beforebegin -->
<p>
<!-- afterbegin -->
childnodes
<!-- beforeend -->
</p>
<!-- afterend -->
*/
type Position int
const (
Beforebegin = Position(utils.Beforebegin)
Afterbegin = Position(utils.Afterbegin)
Beforeend = Position(utils.Beforeend)
Afterend = Position(utils.Afterend)
)
// InsertAdjacentHTML inserts text HTML as the html.ElementNode to specified position
func (e Element) InsertAdjacentHTML(p Position, texthtml string) error {
nodes, err := html.ParseFragment(strings.NewReader(texthtml), &html.Node{Type: html.ElementNode})
if err != nil {
return err
}
for _, n := range nodes {
if err := utils.Insert(utils.Position(p), e.Node, n); err != nil {
return err
}
}
return nil
}
// InsertAdjacentText inserts text as the html.TextNode to specified position
func (e Element) InsertAdjacentText(p Position, text string) error {
n := &html.Node{
Type: html.TextNode,
Data: html.EscapeString(text),
}
return utils.Insert(utils.Position(p), e.Node, n)
}
// InsertAdjacentElement inserts element to specified position
func (e Element) InsertAdjacentElement(p Position, newElement *Element) error {
return utils.Insert(utils.Position(p), e.Node, newElement.Node)
}
// TextContent set or get text to an element
func (e Element) TextContent(text ...string) string {
return utils.Text(e.Node, text...)
}
// InnerText set or get text to an element
func (e Element) InnerText(text ...string) string {
return utils.Text(e.Node, text...)
}
// TagName returns string as uppercase
func (e Element) TagName() string {
if e.Node.Type == html.ElementNode {
return strings.ToUpper(e.Node.Data)
}
return ""
}
// LocalName returns string as lowercase
func (e Element) LocalName() string {
if e.Node.Type == html.ElementNode {
return strings.ToLower(e.Node.Data)
}
return ""
}
// Id returns id value of attribute or if element not has id empty string
func (e Element) Id() string {
return attr.Get(e.Node, "id")
}
// ClassName returns class value of attribute or if element not has class empty string
func (e Element) ClassName() string {
return attr.Get(e.Node, "class")
}