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
|
package testdata
import (
tui "github.com/grindlemire/go-tui"
)
type HeaderView struct {
Root *tui.Element
watchers []tui.Watcher
bindApp func(*tui.App)
unbindApp func()
}
func (v *HeaderView) UnbindApp() {
if v.unbindApp != nil {
v.unbindApp()
}
}
func (v *HeaderView) GetRoot() *tui.Element { return v.Root }
func (v *HeaderView) GetWatchers() []tui.Watcher { return v.watchers }
func (v *HeaderView) Render(app *tui.App) *tui.Element { return v.Root }
func (v *HeaderView) BindApp(app *tui.App) {
if v.bindApp != nil {
v.bindApp(app)
}
}
func (v *HeaderView) UpdateProps(fresh tui.Component) {
f, ok := fresh.(*HeaderView)
if !ok {
return
}
v.Root = f.Root
v.watchers = f.watchers
v.bindApp = f.bindApp
v.unbindApp = f.unbindApp
}
var _ tui.AppBinder = (*HeaderView)(nil)
var _ tui.AppUnbinder = (*HeaderView)(nil)
var _ tui.PropsUpdater = (*HeaderView)(nil)
func Header(title string) *HeaderView {
var view HeaderView
var watchers []tui.Watcher
__tui_0 := tui.New(
tui.WithBorder(tui.BorderSingle),
tui.WithPadding(1),
)
__tui_1 := tui.New(
tui.WithText(title),
)
__tui_0.AddChild(__tui_1)
__bindApp := func(app *tui.App) {
}
__unbindApp := func() {
}
view = HeaderView{
Root: __tui_0,
watchers: watchers,
bindApp: __bindApp,
unbindApp: __unbindApp,
}
return &view
}
type FooterView struct {
Root *tui.Element
watchers []tui.Watcher
bindApp func(*tui.App)
unbindApp func()
}
func (v *FooterView) UnbindApp() {
if v.unbindApp != nil {
v.unbindApp()
}
}
func (v *FooterView) GetRoot() *tui.Element { return v.Root }
func (v *FooterView) GetWatchers() []tui.Watcher { return v.watchers }
func (v *FooterView) Render(app *tui.App) *tui.Element { return v.Root }
func (v *FooterView) BindApp(app *tui.App) {
if v.bindApp != nil {
v.bindApp(app)
}
}
func (v *FooterView) UpdateProps(fresh tui.Component) {
f, ok := fresh.(*FooterView)
if !ok {
return
}
v.Root = f.Root
v.watchers = f.watchers
v.bindApp = f.bindApp
v.unbindApp = f.unbindApp
}
var _ tui.AppBinder = (*FooterView)(nil)
var _ tui.AppUnbinder = (*FooterView)(nil)
var _ tui.PropsUpdater = (*FooterView)(nil)
func Footer() *FooterView {
var view FooterView
var watchers []tui.Watcher
__tui_0 := tui.New(
tui.WithPadding(1),
)
__tui_1 := tui.New(
tui.WithText("Footer content"),
)
__tui_0.AddChild(__tui_1)
__bindApp := func(app *tui.App) {
}
__unbindApp := func() {
}
view = FooterView{
Root: __tui_0,
watchers: watchers,
bindApp: __bindApp,
unbindApp: __unbindApp,
}
return &view
}
|