blob: 813f4ba6721b24a2e5d167fdc74872c73231afa9 (
plain)
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
|
package components
// ConfigSectionData represents data for a configuration section
type ConfigSectionData struct {
Title string
Icon string
Description string
Fields []interface{} // Will hold field data structures
}
// InfoSectionData represents data for an informational section
type InfoSectionData struct {
Title string
Icon string
Type string // "info", "warning", "success", "danger"
Content string
}
// ConfigSection renders a Bootstrap card for configuration settings
templ ConfigSection(data ConfigSectionData) {
<div class="row">
<div class="col-12">
<div class="card mb-4">
<div class="card-header">
<h5 class="mb-0">
if data.Icon != "" {
<i class={ data.Icon + " me-2" }></i>
}
{ data.Title }
</h5>
if data.Description != "" {
<small class="text-muted">{ data.Description }</small>
}
</div>
<div class="card-body">
for _, field := range data.Fields {
switch v := field.(type) {
case TextFieldData:
@TextField(v)
case NumberFieldData:
@NumberField(v)
case CheckboxFieldData:
@CheckboxField(v)
case SelectFieldData:
@SelectField(v)
case DurationFieldData:
@DurationField(v)
case DurationInputFieldData:
@DurationInputField(v)
}
}
</div>
</div>
</div>
</div>
}
// InfoSection renders a Bootstrap alert section for informational content
templ InfoSection(data InfoSectionData) {
<div class="row">
<div class="col-12">
<div class="card mb-3">
<div class="card-header">
<h5 class="mb-0">
if data.Icon != "" {
<i class={ data.Icon + " me-2" }></i>
}
{ data.Title }
</h5>
</div>
<div class="card-body">
<div class={ "alert alert-" + data.Type } role="alert">
{data.Content}
</div>
</div>
</div>
</div>
</div>
}
|