-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtextinput.go
362 lines (327 loc) · 8.17 KB
/
textinput.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
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
package carbon
import (
"fmt"
"io"
"golang.org/x/exp/slices"
)
type textInput struct {
attrs []Attr
size string
value string
placeholder string
light bool
disabled bool
helperText string
name string
labelText string
hideLabel bool
invalid bool
invalidText string
warn bool
warnText string
required bool
inline bool
readonly bool
isFluid bool
}
var _ Component = (*textInput)(nil)
func TextInput(labelText string) *textInput {
return &textInput{
attrs: nil,
size: "",
value: "",
placeholder: "",
light: false,
disabled: false,
helperText: "",
name: "",
labelText: labelText,
hideLabel: false,
invalid: false,
invalidText: "",
warn: false,
warnText: "",
required: false,
inline: false,
readonly: false,
isFluid: false,
}
}
func (t *textInput) Attr(name string, value string) *textInput {
t.attrs = append(t.attrs, Attr{name, value})
return t
}
func (t *textInput) Size(size string) *textInput {
var sizes = []string{"", "sm", "xl"}
if slices.Contains(sizes, size) == false {
panic("invalid size, options are: " + fmt.Sprintf("%v", sizes))
}
t.size = size
return t
}
func (t *textInput) Value(value string) *textInput {
t.value = value
return t
}
func (t *textInput) Placeholder(placeholder string) *textInput {
t.placeholder = placeholder
return t
}
func (t *textInput) Light(v bool) *textInput {
t.light = v
return t
}
func (t *textInput) Disabled(v bool) *textInput {
t.disabled = v
return t
}
func (t *textInput) HelperText(helperText string) *textInput {
t.helperText = helperText
return t
}
func (t *textInput) Name(name string) *textInput {
t.name = name
return t
}
func (t *textInput) HideLabel(v bool) *textInput {
t.hideLabel = v
return t
}
func (t *textInput) Invalid(v bool) *textInput {
t.invalid = v
return t
}
func (t *textInput) InvalidText(invalidText string) *textInput {
t.invalidText = invalidText
return t
}
func (t *textInput) Warn(v bool) *textInput {
t.warn = v
return t
}
func (t *textInput) WarnText(warnText string) *textInput {
t.warnText = warnText
return t
}
func (t *textInput) Required(v bool) *textInput {
t.required = v
return t
}
func (t *textInput) Inline(v bool) *textInput {
t.inline = v
return t
}
func (t *textInput) Readonly(v bool) *textInput {
t.readonly = v
return t
}
func (t *textInput) Fluid(v bool) *textInput {
t.isFluid = v
return t
}
func (t *textInput) Render(w io.Writer) {
id := "ccs-" + useId()
error := t.invalid && !t.readonly
helperId := "helper-" + id
errorId := "error-" + id
warnId := "warn-" + id
renderLabelText := renderLabelTextClosure(id, t.hideLabel, t.disabled, t.inline, t.size, t.labelText)
renderHelperText := renderHelperTextClosure(t.disabled, t.inline, t.helperText)
w.Write([]byte(`<div class="bx--form-item bx--text-input-wrapper`))
if t.inline {
w.Write([]byte(` bx--text-input-wrapper--inline`))
}
if t.light {
w.Write([]byte(` bx--text-input-wrapper--light`))
}
if t.readonly {
w.Write([]byte(` bx--text-input-wrapper--readonly`))
}
w.Write([]byte(`">`))
if t.inline {
w.Write([]byte(`<div class="bx--text-input__label-helper-wrapper">`))
if t.labelText != "" {
renderLabelText(w)
}
if !t.isFluid && t.helperText != "" {
renderHelperText(w)
}
w.Write([]byte(`</div>`))
}
if !t.inline && t.labelText != "" {
renderLabelText(w)
}
w.Write([]byte(`<div class="bx--text-input__field-outer-wrapper`))
if t.inline {
w.Write([]byte(` bx--text-input__field-outer-wrapper--inline`))
}
w.Write([]byte(`">`))
{
w.Write([]byte(`<div`))
if error {
w.Write([]byte(` data-invalid`))
}
if t.warn {
w.Write([]byte(` data-warn`))
}
w.Write([]byte(` class="bx--text-input__field-wrapper`))
if !t.invalid && t.warn {
w.Write([]byte(` bx--text-input__field-wrapper--warning`))
}
w.Write([]byte(`">`))
{
if t.readonly {
EditOff().Attr("class", "bx--text-input__readonly-icon").Render(w)
} else {
if t.invalid {
WarningFilled().Attr("class", "bx--text-input__invalid-icon").Render(w)
}
if !t.invalid && t.warn {
WarningAltFilled().Attr("class", "bx--text-input__invalid-icon bx--text-input__invalid-icon--warning").Render(w)
}
}
w.Write([]byte(`<input`))
if error {
w.Write([]byte(` data-invalid aria-invalid`))
}
if t.warn {
w.Write([]byte(` data-warn`))
}
describedBy := ternary(error, errorId, ternary(t.warn, warnId, ternary(t.helperText != "", helperId, "")))
if describedBy != "" {
w.Write([]byte(` aria-describedby="`))
io.WriteString(w, describedBy)
w.Write([]byte(`"`))
}
if t.disabled {
w.Write([]byte(` disabled`))
}
w.Write([]byte(` id="`))
io.WriteString(w, id)
w.Write([]byte(`"`))
if t.name != "" {
w.Write([]byte(` name="`))
io.WriteString(w, t.name)
w.Write([]byte(`"`))
}
if t.placeholder != "" {
w.Write([]byte(` placeholder="`))
io.WriteString(w, t.placeholder)
w.Write([]byte(`"`))
}
if t.value != "" {
w.Write([]byte(` value="`))
io.WriteString(w, t.value)
w.Write([]byte(`"`))
}
if t.required {
w.Write([]byte(` required`))
}
if t.readonly {
w.Write([]byte(` readonly`))
}
w.Write([]byte(` class="bx--text-input`))
if t.light {
w.Write([]byte(` bx--text-input--light`))
}
if error {
w.Write([]byte(` bx--text-input--invalid`))
}
if t.warn {
w.Write([]byte(` bx--text-input--warning`))
}
if t.size == "sm" || t.size == "xl" {
w.Write([]byte(` bx--text-input--`))
io.WriteString(w, t.size)
}
w.Write([]byte(`"`))
renderAttrs(w, t.attrs)
w.Write([]byte(`/>`))
if t.isFluid {
w.Write([]byte(`<hr class="bx--text-input__divider" />`))
}
if t.isFluid && !t.inline && t.invalid {
w.Write([]byte(`<div class="bx--form-requirement" id="`))
io.WriteString(w, errorId)
w.Write([]byte(`">`))
io.WriteString(w, t.invalidText)
w.Write([]byte(`</div>`))
}
if t.isFluid && !t.inline && t.warn {
w.Write([]byte(`<div class="bx--form-requirement" id="`))
io.WriteString(w, warnId)
w.Write([]byte(`">`))
io.WriteString(w, t.warnText)
w.Write([]byte(`</div>`))
}
}
w.Write([]byte(`</div>`))
if !t.invalid && !t.warn && !t.isFluid && !t.inline && t.helperText != "" {
w.Write([]byte(`<div id="`))
io.WriteString(w, helperId)
w.Write([]byte(`" class="bx--form__helper-text`))
if t.disabled {
w.Write([]byte(` bx--form__helper-text--disabled`))
}
if t.inline {
w.Write([]byte(` bx--form__helper-text--inline`))
}
w.Write([]byte(`">`))
io.WriteString(w, t.helperText)
w.Write([]byte(`</div>`))
}
if !t.isFluid && t.invalid {
w.Write([]byte(`<div class="bx--form-requirement" id="`))
io.WriteString(w, errorId)
w.Write([]byte(`">`))
io.WriteString(w, t.invalidText)
w.Write([]byte(`</div>`))
}
if !t.isFluid && !t.invalid && t.warn {
w.Write([]byte(`<div class="bx--form-requirement" id="`))
io.WriteString(w, warnId)
w.Write([]byte(`">`))
io.WriteString(w, t.warnText)
w.Write([]byte(`</div>`))
}
}
w.Write([]byte(`</div>`))
w.Write([]byte(`</div>`))
}
func renderLabelTextClosure(forId string, hideLabel, disabled, inline bool, size, labelText string) func(io.Writer) {
return func(w io.Writer) {
w.Write([]byte(`<label for="`))
io.WriteString(w, forId)
w.Write([]byte(`" class="bx--label`))
if hideLabel {
w.Write([]byte(` bx--visually-hidden`))
}
if disabled {
w.Write([]byte(` bx--label--disabled`))
}
if inline {
w.Write([]byte(` bx--label--inline`))
}
if size == "sm" || size == "xl" {
w.Write([]byte(` bx--label--inline--`))
io.WriteString(w, size)
}
w.Write([]byte(`">`))
io.WriteString(w, labelText)
w.Write([]byte(`</label>`))
}
}
func renderHelperTextClosure(disabled, inline bool, helperText string) func(io.Writer) {
return func(w io.Writer) {
w.Write([]byte(`<div class="bx--form__helper-text`))
if disabled {
w.Write([]byte(` bx--form__helper-text--disabled`))
}
if inline {
w.Write([]byte(` bx--form__helper-text--inline`))
}
w.Write([]byte(`">`))
io.WriteString(w, helperText)
w.Write([]byte(`</div>`))
}
}