-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathheader.go
316 lines (266 loc) · 8.8 KB
/
header.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
package skeleton
import (
"strings"
"github.com/charmbracelet/bubbles/viewport"
tea "github.com/charmbracelet/bubbletea"
"github.com/charmbracelet/lipgloss"
)
// header is a helper for rendering the header of the terminal.
type header struct {
// termReady is control terminal is ready or not, it responsible for the terminal size
termReady bool
// currentTab is hold the current tab index
currentTab int
// viewport is hold the viewport, it is responsible for the terminal size
viewport *viewport.Model
// keyMap responsible for the key bindings
keyMap *keyMap
// headers are hold the headers of the terminal
headers []commonHeader
// properties are hold the properties of the header
properties *headerProperties
// titleLength is hold the length of the title
titleLength int
updater *Updater
// lockedTabs holds the keys of individually locked tabs
lockedTabs map[string]bool
}
// newHeader returns a new header.
func newHeader() *header {
return &header{
properties: defaultHeaderProperties(),
viewport: newTerminalViewport(),
currentTab: 0,
keyMap: newKeyMap(),
updater: NewUpdater(),
lockedTabs: make(map[string]bool),
}
}
// headerProperties are hold the properties of the header.
type headerProperties struct {
borderColor string
leftTabPadding int
rightTabPadding int
titleStyleActive lipgloss.Style
titleStyleInactive lipgloss.Style
titleStyleDisabled lipgloss.Style
}
// defaultHeaderProperties returns the default properties of the header.
func defaultHeaderProperties() *headerProperties {
borderColor := "39"
leftPadding := 2
rightPadding := 2
return &headerProperties{
borderColor: borderColor,
leftTabPadding: leftPadding,
rightTabPadding: rightPadding,
titleStyleActive: func() lipgloss.Style {
b := lipgloss.DoubleBorder()
b.Right = "├"
b.Left = "┤"
return lipgloss.NewStyle().BorderStyle(b).
PaddingLeft(leftPadding).PaddingRight(rightPadding).
BorderForeground(lipgloss.Color("205"))
}(),
titleStyleInactive: func() lipgloss.Style {
b := lipgloss.RoundedBorder()
b.Right = "├"
b.Left = "┤"
return lipgloss.NewStyle().BorderStyle(b).
PaddingLeft(leftPadding).PaddingRight(rightPadding).
BorderForeground(lipgloss.Color("255"))
}(),
titleStyleDisabled: func() lipgloss.Style {
b := lipgloss.RoundedBorder()
b.Right = "├"
b.Left = "┤"
return lipgloss.NewStyle().BorderStyle(b).
PaddingLeft(leftPadding).PaddingRight(rightPadding).
BorderForeground(lipgloss.Color("240")).Foreground(lipgloss.Color("240"))
}(),
}
}
// commonHeader is hold the header required fields.
type commonHeader struct {
key string
title string
}
func (h *header) Init() tea.Cmd {
return nil
}
func (h *header) Update(msg tea.Msg) (*header, tea.Cmd) {
var cmds []tea.Cmd
switch msg := msg.(type) {
case tea.WindowSizeMsg:
if !h.termReady {
if msg.Width > 0 && msg.Height > 0 {
h.termReady = true
}
}
h.viewport.Width = msg.Width
h.viewport.Height = msg.Height
h.calculateTitleLength()
cmds = append(cmds, h.calculateTitleLength())
}
return h, tea.Batch(cmds...)
}
type HeaderSizeMsg struct {
NotEnoughToHandleHeaders bool
}
// calculateTitleLength calculates the length of the title.
func (h *header) calculateTitleLength() tea.Cmd {
var titleLen int
for _, hdr := range h.headers {
titleLen += len([]rune(hdr.title))
titleLen += h.properties.leftTabPadding + h.properties.rightTabPadding
titleLen += 2 // for the border between titles
}
requiredLineCountForLine := h.viewport.Width - (titleLen + 2)
h.titleLength = titleLen
if requiredLineCountForLine < 0 {
return func() tea.Msg {
return HeaderSizeMsg{NotEnoughToHandleHeaders: false}
}
} else {
return func() tea.Msg {
return HeaderSizeMsg{NotEnoughToHandleHeaders: true}
}
}
}
// View renders the header.
func (h *header) View() string {
if !h.termReady {
return "setting up terminal..."
}
requiredLineCount := h.viewport.Width - (h.titleLength + 2)
if requiredLineCount < 0 {
return ""
}
line := strings.Repeat("─", requiredLineCount)
line = lipgloss.NewStyle().Foreground(lipgloss.Color(h.properties.borderColor)).Render(line)
var renderedTitles []string
renderedTitles = append(renderedTitles, "")
for i, hdr := range h.headers {
if i == h.currentTab {
renderedTitles = append(renderedTitles, h.properties.titleStyleActive.Render(hdr.title))
} else {
if h.GetLockTabs() || h.IsTabLocked(hdr.key) {
renderedTitles = append(renderedTitles, h.properties.titleStyleDisabled.Render(hdr.title))
} else {
renderedTitles = append(renderedTitles, h.properties.titleStyleInactive.Render(hdr.title))
}
}
}
leftCorner := lipgloss.JoinVertical(lipgloss.Top, "╭", "│")
rightCorner := lipgloss.JoinVertical(lipgloss.Top, "╮", "│")
leftCorner = lipgloss.NewStyle().Foreground(lipgloss.Color(h.properties.borderColor)).Render(leftCorner)
rightCorner = lipgloss.NewStyle().Foreground(lipgloss.Color(h.properties.borderColor)).Render(rightCorner)
return lipgloss.JoinHorizontal(lipgloss.Bottom, leftCorner, lipgloss.JoinHorizontal(lipgloss.Center, append(renderedTitles, line)...), rightCorner)
}
// SetLeftPadding sets the left padding of the header.
func (h *header) SetLeftPadding(padding int) {
h.properties.leftTabPadding = padding
h.properties.titleStyleActive = h.properties.titleStyleActive.PaddingLeft(padding)
h.properties.titleStyleInactive = h.properties.titleStyleInactive.PaddingLeft(padding)
h.properties.titleStyleDisabled = h.properties.titleStyleDisabled.PaddingLeft(padding)
h.calculateTitleLength()
}
// SetRightPadding sets the right padding of the header.
func (h *header) SetRightPadding(padding int) {
h.properties.rightTabPadding = padding
h.properties.titleStyleActive = h.properties.titleStyleActive.PaddingRight(padding)
h.properties.titleStyleInactive = h.properties.titleStyleInactive.PaddingRight(padding)
h.properties.titleStyleDisabled = h.properties.titleStyleDisabled.PaddingRight(padding)
h.calculateTitleLength()
}
// SetInactiveTabTextColor sets the idle tab color of the header.
func (h *header) SetInactiveTabTextColor(color string) {
h.properties.titleStyleInactive = h.properties.titleStyleInactive.Foreground(lipgloss.Color(color))
}
// SetInactiveTabBorderColor sets the idle tab border color of the header.
func (h *header) SetInactiveTabBorderColor(color string) {
h.properties.titleStyleInactive = h.properties.titleStyleInactive.BorderForeground(lipgloss.Color(color))
}
// SetActiveTabTextColor sets the active tab color of the header.
func (h *header) SetActiveTabTextColor(color string) {
h.properties.titleStyleActive = h.properties.titleStyleActive.Foreground(lipgloss.Color(color))
}
// SetActiveTabBorderColor sets the active tab border color of the header.
func (h *header) SetActiveTabBorderColor(color string) {
h.properties.titleStyleActive = h.properties.titleStyleActive.BorderForeground(lipgloss.Color(color))
}
// SetBorderColor sets the border color of the header.
func (h *header) SetBorderColor(color string) {
h.properties.borderColor = color
}
// SetCurrentTab sets the current tab index.
func (h *header) SetCurrentTab(tab int) {
h.currentTab = tab
}
// SetLockTabs sets the lock tabs status.
func (h *header) SetLockTabs(lock bool) {
if lock {
for _, header := range h.headers {
h.LockTab(header.key)
}
} else {
h.lockedTabs = make(map[string]bool)
}
h.updater.Update()
}
// GetLockTabs returns the lock tabs status.
func (h *header) GetLockTabs() bool {
for _, header := range h.headers {
if !h.IsTabLocked(header.key) {
return false
}
}
return true
}
// GetCurrentTab returns the current tab index.
func (h *header) GetCurrentTab() int {
return h.currentTab
}
// AddCommonHeader adds a new header to the header.
func (h *header) AddCommonHeader(key string, title string) {
h.headers = append(h.headers, commonHeader{
key: key,
title: title,
})
h.calculateTitleLength()
h.updater.Update()
}
// UpdateCommonHeader updates the header by the given key.
func (h *header) UpdateCommonHeader(key string, title string) {
for i, header := range h.headers {
if header.key == key {
h.headers[i].title = title
}
}
h.calculateTitleLength()
h.updater.Update()
}
// DeleteCommonHeader deletes the header by the given key.
func (h *header) DeleteCommonHeader(key string) {
for i, header := range h.headers {
if header.key == key {
h.headers = append(h.headers[:i], h.headers[i+1:]...)
}
}
h.calculateTitleLength()
h.updater.Update()
}
// IsTabLocked checks if a specific tab is locked
func (h *header) IsTabLocked(key string) bool {
return h.lockedTabs[key]
}
// LockTab locks a specific tab by its key
func (h *header) LockTab(key string) {
h.lockedTabs[key] = true
h.updater.Update()
}
// UnlockTab unlocks a specific tab by its key
func (h *header) UnlockTab(key string) {
delete(h.lockedTabs, key)
h.updater.Update()
}