-
Notifications
You must be signed in to change notification settings - Fork 841
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
docs: add example of Lip Gloss table resizing
- Loading branch information
1 parent
99d7d4b
commit 0acbd4c
Showing
5 changed files
with
164 additions
and
18 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,136 @@ | ||
package main | ||
|
||
import ( | ||
"fmt" | ||
"os" | ||
|
||
tea "github.com/charmbracelet/bubbletea" | ||
"github.com/charmbracelet/lipgloss" | ||
"github.com/charmbracelet/lipgloss/table" | ||
) | ||
|
||
type model struct { | ||
table *table.Table | ||
} | ||
|
||
func (m model) Init() tea.Cmd { return nil } | ||
|
||
func (m model) Update(msg tea.Msg) (tea.Model, tea.Cmd) { | ||
var cmd tea.Cmd | ||
switch msg := msg.(type) { | ||
case tea.WindowSizeMsg: | ||
m.table = m.table.Width(msg.Width) | ||
m.table = m.table.Height(msg.Height) | ||
case tea.KeyMsg: | ||
switch msg.String() { | ||
case "q", "ctrl+c": | ||
return m, tea.Quit | ||
case "enter": | ||
} | ||
} | ||
return m, cmd | ||
} | ||
|
||
func (m model) View() string { | ||
return "\n" + m.table.String() + "\n" | ||
} | ||
|
||
func main() { | ||
re := lipgloss.NewRenderer(os.Stdout) | ||
baseStyle := re.NewStyle().Padding(0, 1) | ||
headerStyle := baseStyle.Copy().Foreground(lipgloss.Color("252")).Bold(true) | ||
selectedStyle := baseStyle.Copy().Foreground(lipgloss.Color("#01BE85")).Background(lipgloss.Color("#00432F")) | ||
typeColors := map[string]lipgloss.Color{ | ||
"Bug": lipgloss.Color("#D7FF87"), | ||
"Electric": lipgloss.Color("#FDFF90"), | ||
"Fire": lipgloss.Color("#FF7698"), | ||
"Flying": lipgloss.Color("#FF87D7"), | ||
"Grass": lipgloss.Color("#75FBAB"), | ||
"Ground": lipgloss.Color("#FF875F"), | ||
"Normal": lipgloss.Color("#929292"), | ||
"Poison": lipgloss.Color("#7D5AFC"), | ||
"Water": lipgloss.Color("#00E2C7"), | ||
} | ||
dimTypeColors := map[string]lipgloss.Color{ | ||
"Bug": lipgloss.Color("#97AD64"), | ||
"Electric": lipgloss.Color("#FCFF5F"), | ||
"Fire": lipgloss.Color("#BA5F75"), | ||
"Flying": lipgloss.Color("#C97AB2"), | ||
"Grass": lipgloss.Color("#59B980"), | ||
"Ground": lipgloss.Color("#C77252"), | ||
"Normal": lipgloss.Color("#727272"), | ||
"Poison": lipgloss.Color("#634BD0"), | ||
"Water": lipgloss.Color("#439F8E"), | ||
} | ||
headers := []interface{}{"#", "NAME", "TYPE 1", "TYPE 2", "JAPANESE", "OFFICIAL ROM."} | ||
rows := [][]string{ | ||
{"1", "Bulbasaur", "Grass", "Poison", "フシギダネ", "Bulbasaur"}, | ||
{"2", "Ivysaur", "Grass", "Poison", "フシギソウ", "Ivysaur"}, | ||
{"3", "Venusaur", "Grass", "Poison", "フシギバナ", "Venusaur"}, | ||
{"4", "Charmander", "Fire", "", "ヒトカゲ", "Hitokage"}, | ||
{"5", "Charmeleon", "Fire", "", "リザード", "Lizardo"}, | ||
{"6", "Charizard", "Fire", "Flying", "リザードン", "Lizardon"}, | ||
{"7", "Squirtle", "Water", "", "ゼニガメ", "Zenigame"}, | ||
{"8", "Wartortle", "Water", "", "カメール", "Kameil"}, | ||
{"9", "Blastoise", "Water", "", "カメックス", "Kamex"}, | ||
{"10", "Caterpie", "Bug", "", "キャタピー", "Caterpie"}, | ||
{"11", "Metapod", "Bug", "", "トランセル", "Trancell"}, | ||
{"12", "Butterfree", "Bug", "Flying", "バタフリー", "Butterfree"}, | ||
{"13", "Weedle", "Bug", "Poison", "ビードル", "Beedle"}, | ||
{"14", "Kakuna", "Bug", "Poison", "コクーン", "Cocoon"}, | ||
{"15", "Beedrill", "Bug", "Poison", "スピアー", "Spear"}, | ||
{"16", "Pidgey", "Normal", "Flying", "ポッポ", "Poppo"}, | ||
{"17", "Pidgeotto", "Normal", "Flying", "ピジョン", "Pigeon"}, | ||
{"18", "Pidgeot", "Normal", "Flying", "ピジョット", "Pigeot"}, | ||
{"19", "Rattata", "Normal", "", "コラッタ", "Koratta"}, | ||
{"20", "Raticate", "Normal", "", "ラッタ", "Ratta"}, | ||
{"21", "Spearow", "Normal", "Flying", "オニスズメ", "Onisuzume"}, | ||
{"22", "Fearow", "Normal", "Flying", "オニドリル", "Onidrill"}, | ||
{"23", "Ekans", "Poison", "", "アーボ", "Arbo"}, | ||
{"24", "Arbok", "Poison", "", "アーボック", "Arbok"}, | ||
{"25", "Pikachu", "Electric", "", "ピカチュウ", "Pikachu"}, | ||
{"26", "Raichu", "Electric", "", "ライチュウ", "Raichu"}, | ||
{"27", "Sandshrew", "Ground", "", "サンド", "Sand"}, | ||
{"28", "Sandslash", "Ground", "", "サンドパン", "Sandpan"}, | ||
} | ||
|
||
t := table.New(). | ||
Headers(headers...). | ||
Rows(rows...). | ||
Border(lipgloss.NormalBorder()). | ||
BorderStyle(re.NewStyle().Foreground(lipgloss.Color("238"))). | ||
StyleFunc(func(row, col int) lipgloss.Style { | ||
if row == 0 { | ||
return headerStyle | ||
} | ||
|
||
if rows[row-1][1] == "Pikachu" { | ||
return selectedStyle | ||
} | ||
|
||
even := row%2 == 0 | ||
|
||
switch col { | ||
case 2, 3: // Type 1 + 2 | ||
c := typeColors | ||
if even { | ||
c = dimTypeColors | ||
} | ||
|
||
color := c[fmt.Sprint(rows[row-1][col])] | ||
return baseStyle.Copy().Foreground(color) | ||
} | ||
|
||
if even { | ||
return baseStyle.Copy().Foreground(lipgloss.Color("245")) | ||
} | ||
return baseStyle.Copy().Foreground(lipgloss.Color("252")) | ||
}). | ||
Border(lipgloss.ThickBorder()) | ||
|
||
m := model{t} | ||
if _, err := tea.NewProgram(m, tea.WithAltScreen()).Run(); err != nil { | ||
fmt.Println("Error running program:", err) | ||
os.Exit(1) | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters