1
0
mirror of https://github.com/jesseduffield/lazygit.git synced 2024-12-12 11:15:00 +02:00
lazygit/pkg/gui/context/list_context_trait.go

67 lines
1.8 KiB
Go
Raw Normal View History

2022-01-29 10:09:20 +02:00
package context
import (
"fmt"
"github.com/jesseduffield/lazygit/pkg/gui/types"
"github.com/jesseduffield/lazygit/pkg/utils"
)
type ListContextTrait struct {
2022-02-05 08:04:10 +02:00
types.Context
2022-01-29 10:09:20 +02:00
c *ContextCommon
2022-02-05 08:04:10 +02:00
list types.IList
getDisplayStrings func(startIdx int, length int) [][]string
}
2022-01-29 10:09:20 +02:00
2023-03-23 13:05:25 +02:00
func (self *ListContextTrait) IsListContext() {}
2022-02-05 08:04:10 +02:00
func (self *ListContextTrait) GetList() types.IList {
return self.list
2022-01-29 10:09:20 +02:00
}
func (self *ListContextTrait) FocusLine() {
// we need a way of knowing whether we've rendered to the view yet.
self.GetViewTrait().FocusPoint(self.list.GetSelectedLineIdx())
2022-04-16 07:59:02 +02:00
self.setFooter()
}
func (self *ListContextTrait) setFooter() {
self.GetViewTrait().SetFooter(formatListFooter(self.list.GetSelectedLineIdx(), self.list.Len()))
2022-01-29 10:09:20 +02:00
}
func formatListFooter(selectedLineIdx int, length int) string {
return fmt.Sprintf("%d of %d", selectedLineIdx+1, length)
}
func (self *ListContextTrait) HandleFocus(opts types.OnFocusOpts) error {
2022-01-29 10:09:20 +02:00
self.FocusLine()
self.GetViewTrait().SetHighlight(self.list.Len() > 0)
return self.Context.HandleFocus(opts)
2022-01-29 10:09:20 +02:00
}
func (self *ListContextTrait) HandleFocusLost(opts types.OnFocusLostOpts) error {
self.GetViewTrait().SetOriginX(0)
2022-01-29 10:09:20 +02:00
return self.Context.HandleFocusLost(opts)
2022-01-29 10:09:20 +02:00
}
2022-02-05 08:04:10 +02:00
// OnFocus assumes that the content of the context has already been rendered to the view. OnRender is the function which actually renders the content to the view
func (self *ListContextTrait) HandleRender() error {
self.list.RefreshSelectedIdx()
2022-03-19 00:31:52 +02:00
content := utils.RenderDisplayStrings(self.getDisplayStrings(0, self.list.Len()))
self.GetViewTrait().SetContent(content)
2022-02-05 08:04:10 +02:00
self.c.Render()
2022-04-16 07:59:02 +02:00
self.setFooter()
2022-01-29 10:09:20 +02:00
return nil
}
func (self *ListContextTrait) OnSearchSelect(selectedLineIdx int) error {
2022-02-05 08:04:10 +02:00
self.GetList().SetSelectedLineIdx(selectedLineIdx)
return self.HandleFocus(types.OnFocusOpts{})
2022-01-29 10:09:20 +02:00
}