-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathmain.go
309 lines (261 loc) · 7.51 KB
/
main.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
package main
import (
"fmt"
"time"
tea "github.com/charmbracelet/bubbletea"
"github.com/charmbracelet/lipgloss"
"github.com/mmcdole/gofeed"
"github.com/termkit/skeleton"
)
// -----------------------------------------------------------------------------
// Types and Interfaces
// NewsItem represents a single news article with its metadata
type NewsItem struct {
Title string // Title of the article
Summary string // Full content of the article
Link string // URL to the original article
Published time.Time // Publication date
IsRead bool // Read status
}
// -----------------------------------------------------------------------------
// News List Model
// categoryModel implements tea.Model and handles the news list view
type categoryModel struct {
skeleton *skeleton.Skeleton // Reference to main skeleton
color string // Color theme for this tab
feed string // RSS feed URL
items []NewsItem // List of news items
selected int // Currently selected item index
lastUpdate time.Time // Last feed update time
lastError error // Last fetch error if any
isLoading bool // Loading state indicator
}
// fetchMsg represents a completed fetch operation
type fetchMsg struct {
items []NewsItem
err error
}
// -----------------------------------------------------------------------------
// News Detail Model
// newsDetailModel shows the full content of a news item
type newsDetailModel struct {
skeleton *skeleton.Skeleton
news NewsItem
color string
}
// -----------------------------------------------------------------------------
// Model Implementations
// Category Model
func (m *categoryModel) Init() tea.Cmd {
// Start fetching immediately when the model is initialized
m.isLoading = true
return m.fetchCmd()
}
func (m *categoryModel) Update(msg tea.Msg) (tea.Model, tea.Cmd) {
switch msg := msg.(type) {
case fetchMsg:
m.isLoading = false
if msg.err != nil {
m.lastError = msg.err
} else {
m.lastError = nil
m.items = msg.items
m.updateWidgets()
}
return m, nil
case skeleton.IAMActivePage:
m.skeleton.SetActiveTabBorderColor(m.color)
case tea.KeyMsg:
switch msg.String() {
case "up", "k":
if m.selected > 0 {
m.selected--
}
case "down", "j":
if m.selected < len(m.items)-1 {
m.selected++
}
case "enter":
if m.selected < len(m.items) {
news := m.items[m.selected]
m.items[m.selected].IsRead = true
m.updateWidgets()
// Create a unique key for the detail tab
detailKey := fmt.Sprintf("detail-%d", time.Now().UnixNano())
// Create a shorter title for the tab
shortTitle := news.Title
if len(shortTitle) > 20 {
shortTitle = shortTitle[:17] + "..."
}
// Add new detail tab
m.skeleton.AddPage(detailKey, shortTitle, newNewsDetailModel(m.skeleton, news))
return m, nil
}
}
}
return m, nil
}
func (m *categoryModel) View() string {
style := lipgloss.NewStyle().
Align(lipgloss.Left).
Padding(1)
var content []string
if m.isLoading {
content = append(content, lipgloss.NewStyle().
Foreground(lipgloss.Color("39")).
Render("Loading news..."))
} else if m.lastError != nil {
content = append(content, lipgloss.NewStyle().
Foreground(lipgloss.Color("196")).
Render(fmt.Sprintf("Error: %v", m.lastError)))
}
for i, item := range m.items {
title := item.Title
if item.IsRead {
title = lipgloss.NewStyle().
Foreground(lipgloss.Color("240")).
Render("✓ " + title)
} else {
title = lipgloss.NewStyle().
Bold(true).
Render("• " + title)
}
if i == m.selected {
title = lipgloss.NewStyle().
Background(lipgloss.Color("214")).
Foreground(lipgloss.Color("235")).
Render("> " + title)
} else {
title = " " + title
}
content = append(content, title)
}
if len(content) == 0 && !m.isLoading && m.lastError == nil {
content = append(content, "No news available")
}
// Add key bindings help
help := []string{
"",
lipgloss.NewStyle().Faint(true).Render("j/k or ↑/↓: Navigate"),
lipgloss.NewStyle().Faint(true).Render("enter: Open article"),
lipgloss.NewStyle().Faint(true).Render("ctrl+w: Close tab"),
lipgloss.NewStyle().Faint(true).Render("ctrl+c: Quit"),
}
content = append(content, help...)
return style.Render(lipgloss.JoinVertical(lipgloss.Left, content...))
}
// News Detail Model
func (m *newsDetailModel) Init() tea.Cmd {
return nil
}
func (m *newsDetailModel) Update(msg tea.Msg) (tea.Model, tea.Cmd) {
switch msg := msg.(type) {
case skeleton.IAMActivePage:
m.skeleton.SetActiveTabBorderColor(m.color)
case tea.KeyMsg:
if msg.Type == tea.KeyCtrlW {
if key := m.skeleton.GetActivePage(); key != "" {
m.skeleton.DeletePage(key)
}
}
}
return m, nil
}
func (m *newsDetailModel) View() string {
style := lipgloss.NewStyle().
Align(lipgloss.Left).
Padding(1)
content := []string{
lipgloss.NewStyle().Bold(true).Render(m.news.Title),
"",
lipgloss.NewStyle().Faint(true).Render(m.news.Published.Format("2006-01-02 15:04")),
"",
m.news.Summary,
"",
lipgloss.NewStyle().Underline(true).Render(m.news.Link),
}
return style.Render(lipgloss.JoinVertical(lipgloss.Left, content...))
}
// -----------------------------------------------------------------------------
// Helper Methods
func newCategoryModel(s *skeleton.Skeleton, feed string, color string) *categoryModel {
return &categoryModel{
skeleton: s,
color: color,
feed: feed,
items: make([]NewsItem, 0),
selected: 0,
lastUpdate: time.Now(),
}
}
func (m *categoryModel) fetchCmd() tea.Cmd {
return func() tea.Msg {
fp := gofeed.NewParser()
feed, err := fp.ParseURL(m.feed)
if err != nil {
return fetchMsg{err: err}
}
items := make([]NewsItem, 0)
for _, item := range feed.Items {
pubDate := time.Now()
if item.PublishedParsed != nil {
pubDate = *item.PublishedParsed
}
content := item.Content
if content == "" {
content = item.Description // fallback to description if content is empty
}
items = append(items, NewsItem{
Title: item.Title,
Summary: content, // use content instead of description
Link: item.Link,
Published: pubDate,
IsRead: false,
})
}
return fetchMsg{items: items}
}
}
func (m *categoryModel) updateWidgets() {
m.skeleton.UpdateWidgetValue("count", fmt.Sprintf("News: %d | Unread: %d", len(m.items), m.countUnread()))
}
func (m *categoryModel) countUnread() int {
unread := 0
for _, item := range m.items {
if !item.IsRead {
unread++
}
}
return unread
}
func newNewsDetailModel(s *skeleton.Skeleton, news NewsItem) *newsDetailModel {
return &newsDetailModel{
skeleton: s,
news: news,
color: "205", // Pink color for detail tabs
}
}
// -----------------------------------------------------------------------------
// Main Program
func main() {
s := skeleton.NewSkeleton()
// Main tab with gruvbox theme
s.AddPage("news", "News", newCategoryModel(s, "https://dev.to/feed", "142")) // Gruvbox green
s.AddWidget("app", "News Reader")
s.AddWidget("count", "Loading...")
s.AddWidget("time", time.Now().Format("15:04:05"))
s.SetActiveTabBorderColor("142") // Gruvbox green
s.SetWidgetBorderColor("142") // Gruvbox green
s.SetBorderColor("214") // Gruvbox orange
// Update time every second
go func() {
for {
time.Sleep(time.Second)
s.UpdateWidgetValue("time", time.Now().Format("15:04:05"))
}
}()
p := tea.NewProgram(s)
if err := p.Start(); err != nil {
panic(err)
}
}