| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364 |
- package layout
- import (
- "reflect"
- "github.com/charmbracelet/bubbles/v2/key"
- tea "github.com/charmbracelet/bubbletea/v2"
- )
- var Current *LayoutInfo
- func init() {
- Current = &LayoutInfo{
- Size: LayoutSizeNormal,
- Viewport: Dimensions{Width: 80, Height: 25},
- Container: Dimensions{Width: 80, Height: 25},
- }
- }
- type LayoutSize string
- const (
- LayoutSizeSmall LayoutSize = "small"
- LayoutSizeNormal LayoutSize = "normal"
- LayoutSizeLarge LayoutSize = "large"
- )
- type Dimensions struct {
- Width int
- Height int
- }
- type LayoutInfo struct {
- Size LayoutSize
- Viewport Dimensions
- Container Dimensions
- }
- type Focusable interface {
- Focus() tea.Cmd
- Blur() tea.Cmd
- IsFocused() bool
- }
- type Sizeable interface {
- SetSize(width, height int) tea.Cmd
- GetSize() (int, int)
- }
- type Bindings interface {
- BindingKeys() []key.Binding
- }
- func KeyMapToSlice(t any) (bindings []key.Binding) {
- typ := reflect.TypeOf(t)
- if typ.Kind() != reflect.Struct {
- return nil
- }
- for i := range typ.NumField() {
- v := reflect.ValueOf(t).Field(i)
- bindings = append(bindings, v.Interface().(key.Binding))
- }
- return
- }
|