glow/ui/ui.go

438 lines
8.8 KiB
Go
Raw Normal View History

package ui
import (
"errors"
2020-05-14 19:06:13 +00:00
"fmt"
"math"
2020-05-14 19:06:13 +00:00
"os"
"strings"
"github.com/charmbracelet/boba"
2020-05-14 02:08:17 +00:00
"github.com/charmbracelet/boba/pager"
"github.com/charmbracelet/boba/spinner"
"github.com/charmbracelet/charm"
"github.com/charmbracelet/charm/ui/common"
"github.com/charmbracelet/charm/ui/keygen"
2020-05-15 19:08:45 +00:00
"github.com/charmbracelet/glamour"
2020-05-13 23:02:39 +00:00
"github.com/muesli/reflow/indent"
2020-05-14 19:06:13 +00:00
te "github.com/muesli/termenv"
)
const (
statusBarHeight = 1
)
var (
glowLogoTextColor = common.Color("#ECFD65")
statusBarBg = common.NewColorPair("#242424", "#E6E6E6")
statusBarFg = common.NewColorPair("#5A5A5A", "#949494")
)
// NewProgram returns a new Boba program
func NewProgram(style string) *boba.Program {
return boba.NewProgram(initialize(style), update, view)
}
// MESSAGES
type fatalErrMsg error
type errMsg error
type newCharmClientMsg *charm.Client
type sshAuthErrMsg struct{}
2020-05-15 19:08:45 +00:00
type contentRenderedMsg string
2020-05-18 21:53:46 +00:00
type terminalResizedMsg struct{}
2020-05-14 19:06:13 +00:00
type terminalSizeMsg struct {
width int
height int
err error
}
func (t terminalSizeMsg) Size() (int, int) { return t.width, t.height }
func (t terminalSizeMsg) Error() error { return t.err }
// MODEL
type state int
const (
stateInitCharmClient state = iota
stateKeygenRunning
stateKeygenFinished
stateShowStash
2020-05-14 02:08:17 +00:00
stateShowDocument
)
type model struct {
style string // style to use
2020-05-14 19:06:13 +00:00
cc *charm.Client
user *charm.User
spinner spinner.Model
keygen keygen.Model
state state
err error
stash stashModel
pager pager.Model
terminalWidth int
terminalHeight int
2020-05-18 22:58:19 +00:00
// Current document being rendered, sans-glamour rendering. We cache
// this here so we can re-render it on resize.
currentDocument *charm.Markdown
2020-05-14 02:08:17 +00:00
}
func (m *model) unloadDocument() {
m.pager = pager.Model{}
m.state = stateShowStash
2020-05-15 19:08:45 +00:00
m.stash.state = stashStateStashLoaded
2020-05-18 22:58:19 +00:00
m.currentDocument = nil
}
// INIT
func initialize(style string) func() (boba.Model, boba.Cmd) {
return func() (boba.Model, boba.Cmd) {
s := spinner.NewModel()
s.Type = spinner.Dot
s.ForegroundColor = common.SpinnerColor
2020-05-16 18:45:32 +00:00
if style == "auto" {
dbg := te.HasDarkBackground()
if dbg == true {
style = "dark"
} else {
style = "light"
}
}
return model{
style: style,
spinner: s,
state: stateInitCharmClient,
}, boba.Batch(
newCharmClient,
spinner.Tick(s),
getTerminalSize(),
2020-05-18 21:53:46 +00:00
listenForTerminalResize(),
)
}
}
// UPDATE
func update(msg boba.Msg, mdl boba.Model) (boba.Model, boba.Cmd) {
m, ok := mdl.(model)
if !ok {
return model{err: errors.New("could not perform assertion on model in update")}, boba.Quit
}
var cmd boba.Cmd
switch msg := msg.(type) {
case boba.KeyMsg:
switch msg.String() {
2020-05-14 02:08:17 +00:00
2020-05-13 23:15:39 +00:00
case "q":
fallthrough
case "esc":
2020-05-14 02:08:17 +00:00
if m.state == stateShowDocument {
m.unloadDocument()
return m, nil
}
return m, boba.Quit
case "ctrl+c":
return m, boba.Quit
2020-05-15 00:23:11 +00:00
// Re-render
case "ctrl+l":
return m, getTerminalSize()
}
case fatalErrMsg:
m.err = msg
return m, boba.Quit
case errMsg:
m.err = msg
return m, nil
2020-05-18 21:53:46 +00:00
case terminalResizedMsg:
return m, boba.Batch(
getTerminalSize(),
listenForTerminalResize(),
)
2020-05-14 19:06:13 +00:00
case terminalSizeMsg:
if msg.Error() != nil {
m.err = msg.Error()
return m, nil
}
w, h := msg.Size()
m.terminalWidth = w
m.terminalHeight = h
2020-05-15 00:23:11 +00:00
m.stash.SetSize(w, h)
2020-05-18 22:58:19 +00:00
if m.state == stateShowDocument {
m.pager.Width = w
m.pager.Height = h
}
var cmd boba.Cmd
if m.state == stateShowDocument {
cmd = renderWithGlamour(m, m.currentDocument.Body)
}
// TODO: load more stash pages if we've resized, are on the last page,
// and haven't loaded more pages yet.
2020-05-18 22:58:19 +00:00
return m, cmd
2020-05-14 19:06:13 +00:00
case sshAuthErrMsg:
// If we haven't run the keygen yet, do that
if m.state != stateKeygenFinished {
m.state = stateKeygenRunning
m.keygen = keygen.NewModel()
return m, keygen.GenerateKeys
}
// The keygen didn't work and we can't auth
m.err = errors.New("SSH authentication failed")
return m, boba.Quit
case spinner.TickMsg:
switch m.state {
case stateInitCharmClient:
m.spinner, cmd = spinner.Update(msg, m.spinner)
}
return m, cmd
case stashSpinnerTickMsg:
2020-05-14 19:06:13 +00:00
if m.state == stateShowStash {
m.stash, cmd = stashUpdate(msg, m.stash)
}
return m, cmd
case keygen.DoneMsg:
m.state = stateKeygenFinished
return m, newCharmClient
case newCharmClientMsg:
m.cc = msg
m.state = stateShowStash
m.stash, cmd = stashInit(m.cc)
2020-05-15 00:23:11 +00:00
m.stash.SetSize(m.terminalWidth, m.terminalHeight)
return m, cmd
2020-05-14 02:08:17 +00:00
case gotStashedItemMsg:
2020-05-15 19:08:45 +00:00
// We've received stashed item data. Render with Glamour and send to
// the pager.
2020-05-14 19:06:13 +00:00
m.pager = pager.NewModel(
m.terminalWidth,
m.terminalHeight-statusBarHeight,
)
2020-05-15 20:22:30 +00:00
2020-05-18 22:58:19 +00:00
m.currentDocument = msg
2020-05-15 19:08:45 +00:00
return m, renderWithGlamour(m, msg.Body)
case contentRenderedMsg:
m.state = stateShowDocument
m.pager.SetContent(string(msg))
2020-05-14 19:06:13 +00:00
return m, nil
2020-05-15 19:08:45 +00:00
}
switch m.state {
case stateKeygenRunning:
mdl, cmd := keygen.Update(msg, boba.Model(m.keygen))
keygenModel, ok := mdl.(keygen.Model)
if !ok {
m.err = errors.New("could not perform assertion on keygen model in main update")
return m, boba.Quit
}
m.keygen = keygenModel
return m, cmd
case stateShowStash:
m.stash, cmd = stashUpdate(msg, m.stash)
return m, cmd
2020-05-14 02:08:17 +00:00
case stateShowDocument:
2020-05-15 19:08:45 +00:00
// Process keys (and eventually mouse) with pager.Update
2020-05-15 20:22:30 +00:00
var cmd boba.Cmd
m.pager, cmd = pager.Update(msg, m.pager)
2020-05-14 02:08:17 +00:00
return m, cmd
}
return m, nil
}
// VIEW
func view(mdl boba.Model) string {
m, ok := mdl.(model)
if !ok {
return "could not perform assertion on model in view"
}
if m.err != nil {
return m.err.Error() + "\n"
}
var s string
switch m.state {
case stateInitCharmClient:
s += spinner.View(m.spinner) + " Initializing..."
case stateKeygenRunning:
s += keygen.View(m.keygen)
case stateKeygenFinished:
s += spinner.View(m.spinner) + " Re-initializing..."
case stateShowStash:
return stashView(m.stash)
2020-05-14 02:08:17 +00:00
case stateShowDocument:
return fmt.Sprintf("\n%s\n%s", pager.View(m.pager), statusBarView(m))
}
return "\n" + indent.String(s, 2)
}
2020-05-15 01:12:13 +00:00
func glowLogoView(text string) string {
return te.String(text).
2020-05-14 19:06:13 +00:00
Bold().
Foreground(glowLogoTextColor).
2020-05-14 19:06:13 +00:00
Background(common.Fuschia.Color()).
String()
2020-05-15 01:12:13 +00:00
}
func statusBarView(m model) string {
// Logo
logoText := " Glow "
logo := glowLogoView(logoText)
2020-05-14 19:06:13 +00:00
// Scroll percent
scrollPercent := math.Max(0.0, math.Min(1.0, m.pager.ScrollPercent()))
percentText := fmt.Sprintf(" %3.f%% ", scrollPercent*100)
percent := te.String(percentText).
Foreground(statusBarFg.Color()).
Background(statusBarBg.Color()).
String()
2020-05-14 19:06:13 +00:00
// Note
2020-05-18 22:58:19 +00:00
noteText := m.currentDocument.Note
2020-05-14 19:06:13 +00:00
if len(noteText) == 0 {
noteText = "(No title)"
}
noteText = truncate(" "+noteText+" ", max(0, m.terminalWidth-len(logoText)-len(percentText)))
2020-05-14 19:06:13 +00:00
note := te.String(noteText).
Foreground(statusBarFg.Color()).
Background(statusBarBg.Color()).String()
// Empty space
emptyCell := te.String(" ").Background(statusBarBg.Color()).String()
padding := max(0, m.terminalWidth-len(logoText)-len(noteText)-len(percentText))
emptySpace := strings.Repeat(emptyCell, padding)
2020-05-14 19:06:13 +00:00
return logo + note + emptySpace + percent
2020-05-14 19:06:13 +00:00
}
// COMMANDS
2020-05-18 21:53:46 +00:00
func listenForTerminalResize() boba.Cmd {
return boba.OnResize(func() boba.Msg {
return terminalResizedMsg{}
})
}
2020-05-15 00:23:11 +00:00
func getTerminalSize() boba.Cmd {
return boba.GetTerminalSize(func(w, h int, err error) boba.TerminalSizeMsg {
return terminalSizeMsg{width: w, height: h, err: err}
})
}
func newCharmClient() boba.Msg {
cfg, err := charm.ConfigFromEnv()
if err != nil {
return fatalErrMsg(err)
}
cc, err := charm.NewClient(cfg)
if err == charm.ErrMissingSSHAuth {
return sshAuthErrMsg{}
} else if err != nil {
return fatalErrMsg(err)
}
return newCharmClientMsg(cc)
}
2020-05-14 00:21:37 +00:00
2020-05-15 19:08:45 +00:00
func renderWithGlamour(m model, md string) boba.Cmd {
return func() boba.Msg {
s, err := glamourRender(m, md)
if err != nil {
return errMsg(err)
}
return contentRenderedMsg(s)
}
}
2020-05-14 00:21:37 +00:00
// ETC
2020-05-15 19:08:45 +00:00
// This is where the magic happens
func glamourRender(m model, markdown string) (string, error) {
if os.Getenv("GLOW_DISABLE_GLAMOUR") != "" {
return markdown, nil
}
2020-05-15 19:08:45 +00:00
// initialize glamour
var gs glamour.TermRendererOption
if m.style == "auto" {
gs = glamour.WithAutoStyle()
} else {
gs = glamour.WithStylePath(m.style)
}
r, err := glamour.NewTermRenderer(
gs,
2020-05-18 22:58:19 +00:00
glamour.WithWordWrap(min(120, m.terminalWidth)),
2020-05-15 19:08:45 +00:00
)
if err != nil {
return "", err
}
out, err := r.Render(markdown)
if err != nil {
return "", err
}
// trim lines
lines := strings.Split(string(out), "\n")
var content string
for i, s := range lines {
content += strings.TrimSpace(s)
// don't add an artificial newline after the last split
if i+1 < len(lines) {
content += "\n"
}
}
return content, nil
}
2020-05-14 00:21:37 +00:00
func min(a, b int) int {
if a < b {
return a
}
return b
}
func max(a, b int) int {
if a > b {
return a
}
return b
}