add dashboard

This commit is contained in:
Robin Olsen
2026-02-10 20:11:36 +01:00
parent ee3e64a883
commit 19b32dca1b
5 changed files with 106 additions and 138 deletions

View File

@@ -1,26 +1,69 @@
package dashboard
import (
"github.com/LazyBachelor/LazyPM/internal/models"
"github.com/LazyBachelor/LazyPM/internal/service"
"github.com/LazyBachelor/LazyPM/pkg/tui/views/issue"
"github.com/charmbracelet/bubbles/help"
"github.com/charmbracelet/bubbles/list"
tea "github.com/charmbracelet/bubbletea"
)
type Model struct {
help help.Model
issueView issue.Model
issueList list.Model
keyMap DashboardKeyMap
svc *service.Services
focusedOnIssue bool
header Header
issueList IssueList
issueDetail IssueDetail
helpBar HelpBar
keyMap DashboardKeyMap
svc *service.Services
width int
height int
focusedPane int // 0 = list, 1 = detail
}
type ListIssue struct {
models.Issue
func NewDashboard(svc *service.Services) *Model {
m := &Model{
header: NewHeader("Project Manager Dashboard"),
keyMap: defaultDashboardKeyMap,
svc: svc,
width: 80,
height: 24,
focusedPane: 0,
}
m.issueList = NewIssueList(svc, 0, 0)
m.issueDetail = NewIssueDetail()
m.helpBar = NewHelpBar(m.keyMap)
if selected := m.issueList.SelectedItem(); selected.ID != "" {
m.issueDetail.SetIssue(selected.Issue)
}
return m
}
func (i ListIssue) Title() string { return i.Issue.Title }
func (i ListIssue) Description() string { return i.Issue.Description }
func (i ListIssue) FilterValue() string { return i.Issue.ID + " " + i.Issue.Title }
func (m *Model) Init() tea.Cmd {
return nil
}
func (m *Model) IsFocusedOnList() bool {
return m.focusedPane == 0
}
func (m *Model) IsFocusedOnDetail() bool {
return m.focusedPane == 1
}
func (m *Model) FocusList() {
m.focusedPane = 0
m.issueDetail.SetFocused(false)
}
func (m *Model) FocusDetail() {
m.focusedPane = 1
m.issueDetail.SetFocused(true)
}
func (m *Model) ToggleFocus() {
if m.focusedPane == 0 {
m.FocusDetail()
} else {
m.FocusList()
}
}