go-sh-manymanuals/gshmm.go

279 lines
6.7 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:51:32 +02:00
// filenameFilterMode searches by PDF file name.
const filenameFilterMode = "filename"
// contentFilterMode searches by PDF contents.
const contentFilterMode = "content"
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 {
input textinput.Model // Fuzzy search interface
2023-05-10 13:07:34 +02:00
datasheets []datasheet // All datasheets under cwd
datasheetNames []string // All datasheet names (caching)
filteredDatasheets []string // Filtered view on all datasheets
datasheetViewport viewport.Model // Viewport for the PDF content
2023-05-10 18:51:32 +02:00
filterMode string // The filtering mode ("filename", "content")
2023-05-10 13:07:34 +02:00
}
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:51:32 +02:00
// toggleFilterMode toggles the filter mode.
func (m *model) toggleFilterMode() {
if m.filterMode == filenameFilterMode {
m.filterMode = contentFilterMode
} else {
m.filterMode = filenameFilterMode
}
}
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()
var datasheets []datasheet
var datasheetNames []string
2023-05-10 13:07:34 +02:00
// 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)
datasheet := datasheet{
2023-05-10 13:07:34 +02:00
filename: name,
absPath: path,
contents: contents,
}
datasheets = append(datasheets, datasheet)
datasheetNames = append(datasheetNames, name)
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. this should also
// be set in relation to the list of filenames also. they
// should have some visually pleasing ratio set i imagine
2023-05-10 13:07:34 +02:00
viewp := viewport.New(60, 30)
selectedDatasheet := datasheets[len(datasheets)-1].contents
viewp.SetContent(selectedDatasheet)
2023-05-10 13:07:34 +02:00
m := model{
input: input,
datasheets: datasheets,
datasheetNames: datasheetNames,
filteredDatasheets: datasheetNames,
datasheetViewport: viewp,
2023-05-10 18:51:32 +02:00
filterMode: filenameFilterMode,
2023-05-10 01:09:56 +02:00
}
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
}
// filterDatasheetNames filters datasheet names based on user input.
func filterDatasheetNames(m model) []string {
search := m.input.Value()
if !(len(search) >= minCharsUntilFilter) {
return m.datasheetNames
}
var matchedDatasheets []string
matches := fuzzy.Find(search, m.datasheetNames)
for _, match := range matches {
matchedDatasheets = append(matchedDatasheets, match.Str)
}
if len(matches) > 0 {
return matchedDatasheets
}
return m.datasheetNames
}
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
if m.input.Focused() {
m.filteredDatasheets = filterDatasheetNames(m)
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 19:01:57 +02:00
lastDatasheet := m.filteredDatasheets[len(m.filteredDatasheets)-1]
viewportText := m.datasheetFromName(lastDatasheet)
2023-05-10 18:36:13 +02:00
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":
2023-05-10 00:49:15 +02:00
return m, tea.Quit
2023-05-10 18:51:32 +02:00
case "tab":
m.toggleFilterMode()
2023-05-10 00:49:15 +02:00
}
}
m.input, cmd = m.input.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?
sheets := strings.Join(m.filteredDatasheets, "\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
body.WriteString("\n" + m.input.View())
2023-05-10 01:36:11 +02:00
2023-05-10 18:51:32 +02:00
mode := "filter: "
if m.filterMode == filenameFilterMode {
mode += "filename"
} else {
// TODO make this mode actually work once we figure out bleve
mode += "content (FIXME)"
}
body.WriteString("\n" + mode)
help := "[ctrl-c]: quit | [tab]: filter mode"
body.WriteString("\n" + help)
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)
}
}