forked from icza/gowut
-
Notifications
You must be signed in to change notification settings - Fork 0
/
link.go
148 lines (119 loc) · 3.14 KB
/
link.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
// Copyright (C) 2013 Andras Belicza. All rights reserved.
//
// This program is free software: you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.
//
// This program is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
//
// You should have received a copy of the GNU General Public License
// along with this program. If not, see <http://www.gnu.org/licenses/>.
// Link component interface and implementation.
package gwu
// Link interface defines a clickable link pointing to a URL.
// Links are usually used with a text, although Link is a
// container, and allows to set a child component
// which if set will also be a part of the clickable link.
//
// Default style class: "gwu-Link"
type Link interface {
// Link is a Container.
Container
// Link has text.
HasText
// Link has URL string.
HasURL
// Target returns the target of the link.
Target() string
// SetTarget sets the target of the link.
// Tip: pass "_blank" if you want the URL to open in a new window
// (this is the default).
SetTarget(target string)
// Comp returns the optional child component, if set.
Comp() Comp
// SetComp sets the only child component
// (which can be a Container of course).
SetComp(c Comp)
}
// Link implementation.
type linkImpl struct {
compImpl // Component implementation
hasTextImpl // Has text implementation
hasURLImpl // Has text implementation
comp Comp // Optional child component
}
// NewLink creates a new Link.
// By default links open in a new window (tab)
// because their target is set to "_blank".
func NewLink(text, url string) Link {
c := &linkImpl{newCompImpl(nil), newHasTextImpl(text), newHasURLImpl(url), nil}
c.SetTarget("_blank")
c.Style().AddClass("gwu-Link")
return c
}
func (c *linkImpl) Remove(c2 Comp) bool {
if c.comp == nil || !c.comp.Equals(c2) {
return false
}
c2.setParent(nil)
c.comp = nil
return true
}
func (c *linkImpl) ByID(id ID) Comp {
if c.id == id {
return c
}
if c.comp != nil {
if c.comp.ID() == id {
return c.comp
}
if c2, isContainer := c.comp.(Container); isContainer {
if c3 := c2.ByID(id); c3 != nil {
return c3
}
}
}
return nil
}
func (c *linkImpl) Clear() {
if c.comp != nil {
c.comp.setParent(nil)
c.comp = nil
}
}
func (c *linkImpl) Target() string {
return c.attrs["target"]
}
func (c *linkImpl) SetTarget(target string) {
if len(target) == 0 {
delete(c.attrs, "target")
} else {
c.attrs["target"] = target
}
}
func (c *linkImpl) Comp() Comp {
return c.comp
}
func (c *linkImpl) SetComp(c2 Comp) {
c.comp = c2
}
var (
strAOp = []byte("<a") // "<a"
strACL = []byte("</a>") // "</a>"
)
func (c *linkImpl) Render(w Writer) {
w.Write(strAOp)
c.renderURL("href", w)
c.renderAttrsAndStyle(w)
c.renderEHandlers(w)
w.Write(strGT)
c.renderText(w)
if c.comp != nil {
c.comp.Render(w)
}
w.Write(strACL)
}