go-sh-manymanuals/gshmm.go

241 lines
5.6 KiB
Go
Raw Normal View History

2023-05-10 18:34:09 +02:00
// go-sh-manymanuals TODO
2023-05-10 00:49:15 +02:00
package main
import (
"flag"
"fmt"
"os"
2023-05-10 09:58:59 +02:00
"path/filepath"
2023-05-10 01:36:11 +02:00
"strings"
2023-05-10 00:49:15 +02:00
2023-05-10 01:09:56 +02:00
"github.com/charmbracelet/bubbles/textinput"
2023-05-10 13:07:34 +02:00
"github.com/charmbracelet/bubbles/viewport"
2023-05-10 00:49:15 +02:00
tea "github.com/charmbracelet/bubbletea"
2023-05-10 13:07:34 +02:00
"github.com/charmbracelet/lipgloss"
pdf "github.com/johbar/go-poppler"
2023-05-10 09:53:08 +02:00
"github.com/sahilm/fuzzy"
2023-05-10 00:49:15 +02:00
)
2023-05-10 18:34:09 +02:00
// help is the command-line interface help output.
2023-05-10 00:49:15 +02:00
const help = `go-sh-manymanuals: TODO
TODO
Options:
-h output help
`
2023-05-10 01:36:11 +02:00
// minCharsUntilFilter is the minimum amount of characters that are
// required before the filtering logic commences actually filtering.
2023-05-10 09:53:08 +02:00
const minCharsUntilFilter = 2
2023-05-10 01:36:11 +02:00
2023-05-10 18:34:09 +02:00
// helpFlag is the help flag for the command-line interface.
2023-05-10 00:49:15 +02:00
var helpFlag bool
2023-05-10 18:34:09 +02:00
// handleCliFlags handles command-line flags.
2023-05-10 00:49:15 +02:00
func handleCliFlags() {
flag.BoolVar(&helpFlag, "h", false, "output help")
flag.Parse()
}
2023-05-10 18:34:09 +02:00
// readPDF reads the plain text contents of a PDF. This does not include the
// formatting. Only the content you see when you view it through a PDF reader.
// The library we're using makes use of the C bindings to the Poppler PDF
// library https://poppler.freedesktop.org which appears to offer a good mix of
// reliability and effectiveness.
2023-05-10 13:07:34 +02:00
func readPDF(name string) (string, error) {
doc, err := pdf.Open(name)
2023-05-10 13:07:34 +02:00
if err != nil {
return "", err
2023-05-10 13:07:34 +02:00
}
defer doc.Close()
2023-05-10 13:07:34 +02:00
var txt string
for i := 0; i < doc.GetNPages(); i++ {
txt += doc.GetPage(i).Text()
2023-05-10 13:07:34 +02:00
}
return txt, nil
2023-05-10 13:07:34 +02:00
}
2023-05-10 18:34:09 +02:00
// model offers the core of the state for the entire UI.
2023-05-10 00:49:15 +02:00
type model struct {
2023-05-10 18:34:09 +02:00
filterInput textinput.Model // Fuzzy search interface
datasheets []datasheet // All datasheets under cwd
2023-05-10 18:36:13 +02:00
datasheetsView []string // Filtered view on all datasheets
datasheetViewport viewport.Model // Viewport for the PDF content
2023-05-10 13:07:34 +02:00
}
2023-05-10 18:36:13 +02:00
// datasheetNames lists all datasheet names.
func (m model) datasheetNames() []string {
2023-05-10 18:34:09 +02:00
// TODO: cache this somewhere, it's called several times... in the model?
2023-05-10 13:07:34 +02:00
var names []string
for _, datasheet := range m.datasheets {
names = append(names, datasheet.filename)
}
return names
}
2023-05-10 18:34:09 +02:00
// datasheetFromName retrieves a datasheet via a name.
2023-05-10 14:35:13 +02:00
func (m model) datasheetFromName(name string) string {
for _, d := range m.datasheets {
if d.filename == name {
return d.contents
}
}
return ""
}
2023-05-10 18:34:09 +02:00
// datasheet represents a datasheet on disk.
2023-05-10 13:07:34 +02:00
type datasheet struct {
2023-05-10 18:34:09 +02:00
filename string // The name of the file
absPath string // the absolute file path
contents string // the contents of the PDF
2023-05-10 00:49:15 +02:00
}
2023-05-10 18:34:09 +02:00
// initialModel constucts an initial state for the UI.
2023-05-10 00:49:15 +02:00
func initialModel() model {
2023-05-10 01:09:56 +02:00
input := textinput.New()
input.Focus()
2023-05-10 13:07:34 +02:00
var ds []datasheet
// TODO: handle error in interface?
2023-05-10 09:58:59 +02:00
_ = filepath.Walk(".", func(path string, info os.FileInfo, err error) error {
if err != nil {
return err
}
name := info.Name()
if strings.HasSuffix(name, "pdf") {
2023-05-10 13:07:34 +02:00
// TODO: handle error in interface?
2023-05-10 14:35:13 +02:00
// TODO: don't read them all up front while blocking?
// we could run this in a goroutine somewhere
// this currently slows down startup time
2023-05-10 13:07:34 +02:00
contents, _ := readPDF(path)
d := datasheet{
filename: name,
absPath: path,
contents: contents,
}
ds = append(ds, d)
2023-05-10 09:58:59 +02:00
}
return nil
})
2023-05-10 09:53:08 +02:00
// TODO: set width/heigh to match terminal
2023-05-10 13:07:34 +02:00
viewp := viewport.New(60, 30)
viewp.SetContent(ds[len(ds)-1].contents)
m := model{
filterInput: input,
datasheets: ds,
2023-05-10 18:36:13 +02:00
datasheetViewport: viewp,
2023-05-10 01:09:56 +02:00
}
2023-05-10 18:36:13 +02:00
m.datasheetsView = m.datasheetNames()
2023-05-10 13:07:34 +02:00
return m
2023-05-10 00:49:15 +02:00
}
2023-05-10 18:34:09 +02:00
// Init initialises the program.
2023-05-10 00:49:15 +02:00
func (m model) Init() tea.Cmd {
2023-05-10 01:09:56 +02:00
return textinput.Blink
2023-05-10 00:49:15 +02:00
}
2023-05-10 18:34:09 +02:00
// Update updates the program state.
2023-05-10 00:49:15 +02:00
func (m model) Update(msg tea.Msg) (tea.Model, tea.Cmd) {
2023-05-10 13:07:34 +02:00
var (
cmd tea.Cmd
cmds []tea.Cmd
)
2023-05-10 01:09:56 +02:00
2023-05-10 01:36:11 +02:00
if m.filterInput.Focused() {
2023-05-10 09:53:08 +02:00
var matched []string
2023-05-10 01:36:11 +02:00
search := m.filterInput.Value()
if len(search) >= minCharsUntilFilter {
2023-05-10 18:36:13 +02:00
matches := fuzzy.Find(search, m.datasheetNames())
2023-05-10 09:53:08 +02:00
for _, match := range matches {
matched = append(matched, match.Str)
}
if len(matches) > 0 {
2023-05-10 18:36:13 +02:00
m.datasheetsView = matched
2023-05-10 09:53:08 +02:00
} else {
2023-05-10 18:36:13 +02:00
m.datasheetsView = m.datasheetNames()
2023-05-10 01:36:11 +02:00
}
2023-05-10 09:53:08 +02:00
} else {
2023-05-10 18:36:13 +02:00
m.datasheetsView = m.datasheetNames()
2023-05-10 01:36:11 +02:00
}
2023-05-10 14:35:13 +02:00
// TODO: implement cursor for scrolling up/down filtered
// results so we can view the PDF contents as desired
2023-05-10 16:45:23 +02:00
// it's currently just the last one (closest to input)
2023-05-10 18:36:13 +02:00
lastdatasheet := m.datasheetsView[len(m.datasheetsView)-1]
viewportText := m.datasheetFromName(lastdatasheet)
m.datasheetViewport.SetContent(viewportText)
2023-05-10 01:36:11 +02:00
}
// TODO: handle terminal resizing
2023-05-10 00:49:15 +02:00
switch msg := msg.(type) {
case tea.KeyMsg:
switch msg.String() {
case "ctrl+c", "q":
return m, tea.Quit
}
}
2023-05-10 01:09:56 +02:00
m.filterInput, cmd = m.filterInput.Update(msg)
2023-05-10 13:07:34 +02:00
cmds = append(cmds, cmd)
2023-05-10 18:36:13 +02:00
m.datasheetViewport, cmd = m.datasheetViewport.Update(msg)
2023-05-10 13:07:34 +02:00
cmds = append(cmds, cmd)
2023-05-10 01:09:56 +02:00
2023-05-10 13:07:34 +02:00
return m, tea.Batch(cmds...)
2023-05-10 00:49:15 +02:00
}
2023-05-10 18:34:09 +02:00
// View outputs the program state for viewing.
2023-05-10 00:49:15 +02:00
func (m model) View() string {
2023-05-10 01:36:11 +02:00
body := strings.Builder{}
2023-05-10 13:07:34 +02:00
// TODO: paginate / trim view to last 10 or something?
2023-05-10 18:36:13 +02:00
sheets := strings.Join(m.datasheetsView, "\n")
2023-05-10 16:45:23 +02:00
// TODO: style further with lipgloss, e.g. borders, margins, etc.
2023-05-10 18:36:13 +02:00
panes := lipgloss.JoinHorizontal(lipgloss.Left, sheets, m.datasheetViewport.View())
2023-05-10 16:45:23 +02:00
2023-05-10 13:07:34 +02:00
body.WriteString(panes)
2023-05-10 01:36:11 +02:00
2023-05-10 13:07:34 +02:00
body.WriteString("\n" + m.filterInput.View())
2023-05-10 01:36:11 +02:00
return body.String()
2023-05-10 00:49:15 +02:00
}
2023-05-10 18:34:09 +02:00
// main is the command-line entrypoint.
2023-05-10 00:49:15 +02:00
func main() {
handleCliFlags()
if helpFlag {
fmt.Printf(help)
os.Exit(0)
}
2023-05-10 13:07:34 +02:00
f, err := tea.LogToFile("debug.log", "debug")
if err != nil {
fmt.Println("fatal:", err)
os.Exit(1)
}
defer f.Close()
p := tea.NewProgram(
initialModel(),
tea.WithAltScreen(),
tea.WithMouseCellMotion(),
)
2023-05-10 00:49:15 +02:00
if err := p.Start(); err != nil {
fmt.Printf("oops, something went wrong: %v", err)
os.Exit(1)
}
}