2020-05-13 16:53:58 +00:00
|
|
|
package ui
|
|
|
|
|
|
|
|
import (
|
2020-07-14 20:05:21 +00:00
|
|
|
"errors"
|
2020-05-13 23:02:39 +00:00
|
|
|
"fmt"
|
2022-10-25 14:40:51 +00:00
|
|
|
"os"
|
2020-05-13 23:02:39 +00:00
|
|
|
"sort"
|
|
|
|
"strings"
|
2020-05-19 00:45:13 +00:00
|
|
|
"time"
|
2020-05-13 23:02:39 +00:00
|
|
|
|
2020-05-26 17:42:25 +00:00
|
|
|
"github.com/charmbracelet/bubbles/paginator"
|
|
|
|
"github.com/charmbracelet/bubbles/spinner"
|
|
|
|
"github.com/charmbracelet/bubbles/textinput"
|
|
|
|
tea "github.com/charmbracelet/bubbletea"
|
2021-06-14 20:52:00 +00:00
|
|
|
"github.com/charmbracelet/lipgloss"
|
2024-07-03 15:11:29 +00:00
|
|
|
"github.com/charmbracelet/log"
|
2020-07-20 15:00:17 +00:00
|
|
|
"github.com/muesli/reflow/ansi"
|
2020-12-14 23:54:39 +00:00
|
|
|
"github.com/muesli/reflow/truncate"
|
2020-11-16 20:25:23 +00:00
|
|
|
"github.com/sahilm/fuzzy"
|
2020-05-13 16:53:58 +00:00
|
|
|
)
|
|
|
|
|
2020-05-15 00:23:11 +00:00
|
|
|
const (
|
2020-07-16 19:09:06 +00:00
|
|
|
stashIndent = 1
|
2020-11-30 23:44:58 +00:00
|
|
|
stashViewItemHeight = 3 // height of stash entry, including gap
|
|
|
|
stashViewTopPadding = 5 // logo, status bar, gaps
|
|
|
|
stashViewBottomPadding = 3 // pagination and gaps, but not help
|
2020-05-22 02:29:46 +00:00
|
|
|
stashViewHorizontalPadding = 6
|
2020-12-14 21:26:29 +00:00
|
|
|
)
|
|
|
|
|
2024-07-03 15:11:29 +00:00
|
|
|
var stashingStatusMessage = statusMessage{normalStatusMessage, "Stashing..."}
|
2020-05-15 00:23:11 +00:00
|
|
|
|
2020-07-28 20:41:44 +00:00
|
|
|
var (
|
2024-07-03 15:11:29 +00:00
|
|
|
dividerDot = darkGrayFg.SetString(" • ")
|
|
|
|
dividerBar = darkGrayFg.SetString(" │ ")
|
2021-06-14 20:52:00 +00:00
|
|
|
|
|
|
|
logoStyle = lipgloss.NewStyle().
|
|
|
|
Foreground(lipgloss.Color("#ECFD65")).
|
2023-03-03 02:42:12 +00:00
|
|
|
Background(fuchsia).
|
2021-06-14 20:52:00 +00:00
|
|
|
Bold(true)
|
|
|
|
|
|
|
|
stashSpinnerStyle = lipgloss.NewStyle().
|
|
|
|
Foreground(gray)
|
|
|
|
stashInputPromptStyle = lipgloss.NewStyle().
|
|
|
|
Foreground(yellowGreen).
|
|
|
|
MarginRight(1)
|
|
|
|
stashInputCursorStyle = lipgloss.NewStyle().
|
2023-03-03 02:42:12 +00:00
|
|
|
Foreground(fuchsia).
|
2021-06-14 20:52:00 +00:00
|
|
|
MarginRight(1)
|
2020-07-28 20:41:44 +00:00
|
|
|
)
|
|
|
|
|
2020-05-13 16:53:58 +00:00
|
|
|
// MSG
|
|
|
|
|
2022-10-25 14:40:51 +00:00
|
|
|
type (
|
2024-07-03 15:11:29 +00:00
|
|
|
filteredMarkdownMsg []*markdown
|
|
|
|
fetchedMarkdownMsg *markdown
|
2022-10-25 14:40:51 +00:00
|
|
|
)
|
2020-12-10 01:12:01 +00:00
|
|
|
|
2020-05-13 16:53:58 +00:00
|
|
|
// MODEL
|
|
|
|
|
2020-12-11 03:53:09 +00:00
|
|
|
// stashViewState is the high-level state of the file listing.
|
2020-11-26 03:49:49 +00:00
|
|
|
type stashViewState int
|
2020-05-21 20:05:13 +00:00
|
|
|
|
2020-05-13 16:53:58 +00:00
|
|
|
const (
|
2020-11-26 03:49:49 +00:00
|
|
|
stashStateReady stashViewState = iota
|
2020-05-15 19:08:45 +00:00
|
|
|
stashStateLoadingDocument
|
2020-07-16 19:54:55 +00:00
|
|
|
stashStateShowingError
|
2020-05-13 16:53:58 +00:00
|
|
|
)
|
|
|
|
|
2020-12-03 23:15:59 +00:00
|
|
|
// The types of documents we are currently showing to the user.
|
2020-12-08 23:38:10 +00:00
|
|
|
type sectionKey int
|
2020-11-28 23:30:51 +00:00
|
|
|
|
|
|
|
const (
|
2024-07-03 15:11:29 +00:00
|
|
|
documentsSection = iota
|
2020-12-15 18:37:11 +00:00
|
|
|
filterSection
|
2020-11-28 23:30:51 +00:00
|
|
|
)
|
|
|
|
|
2020-12-11 03:53:09 +00:00
|
|
|
// section contains definitions and state information for displaying a tab and
|
|
|
|
// its contents in the file listing view.
|
2020-12-08 23:38:10 +00:00
|
|
|
type section struct {
|
|
|
|
key sectionKey
|
|
|
|
paginator paginator.Model
|
|
|
|
cursor int
|
2020-12-03 23:15:59 +00:00
|
|
|
}
|
|
|
|
|
2020-12-11 03:53:09 +00:00
|
|
|
// map sections to their associated types.
|
2023-05-05 09:40:36 +00:00
|
|
|
var sections = map[sectionKey]section{}
|
2020-12-03 23:15:59 +00:00
|
|
|
|
2020-12-11 03:53:09 +00:00
|
|
|
// filterState is the current filtering state in the file listing.
|
2020-11-26 01:15:21 +00:00
|
|
|
type filterState int
|
|
|
|
|
|
|
|
const (
|
2020-11-28 23:30:51 +00:00
|
|
|
unfiltered filterState = iota // no filter set
|
|
|
|
filtering // user is actively setting a filter
|
|
|
|
filterApplied // a filter is applied and user is not editing filter
|
2020-11-26 01:15:21 +00:00
|
|
|
)
|
|
|
|
|
2020-12-14 21:26:29 +00:00
|
|
|
// statusMessageType adds some context to the status message being sent.
|
|
|
|
type statusMessageType int
|
|
|
|
|
|
|
|
// Types of status messages.
|
|
|
|
const (
|
|
|
|
normalStatusMessage statusMessageType = iota
|
|
|
|
subtleStatusMessage
|
2020-12-18 21:26:03 +00:00
|
|
|
errorStatusMessage
|
2020-12-14 21:26:29 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
// statusMessage is an ephemeral note displayed in the UI.
|
|
|
|
type statusMessage struct {
|
|
|
|
status statusMessageType
|
|
|
|
message string
|
|
|
|
}
|
|
|
|
|
2023-05-05 09:40:36 +00:00
|
|
|
func initSections() {
|
|
|
|
sections = map[sectionKey]section{
|
2024-07-03 15:11:29 +00:00
|
|
|
documentsSection: {
|
|
|
|
key: documentsSection,
|
2023-05-05 09:40:36 +00:00
|
|
|
paginator: newStashPaginator(),
|
|
|
|
},
|
|
|
|
filterSection: {
|
|
|
|
key: filterSection,
|
|
|
|
paginator: newStashPaginator(),
|
|
|
|
},
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-12-14 21:26:29 +00:00
|
|
|
// String returns a styled version of the status message appropriate for the
|
|
|
|
// given context.
|
|
|
|
func (s statusMessage) String() string {
|
|
|
|
switch s.status {
|
|
|
|
case subtleStatusMessage:
|
|
|
|
return dimGreenFg(s.message)
|
2020-12-18 21:26:03 +00:00
|
|
|
case errorStatusMessage:
|
|
|
|
return redFg(s.message)
|
2020-12-14 21:26:29 +00:00
|
|
|
default:
|
|
|
|
return greenFg(s.message)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-05-13 16:53:58 +00:00
|
|
|
type stashModel struct {
|
2020-12-18 19:28:21 +00:00
|
|
|
common *commonModel
|
|
|
|
err error
|
|
|
|
spinner spinner.Model
|
|
|
|
filterInput textinput.Model
|
|
|
|
stashFullyLoaded bool // have we loaded all available stashed documents from the server?
|
|
|
|
viewState stashViewState
|
|
|
|
filterState filterState
|
|
|
|
showFullHelp bool
|
|
|
|
showStatusMessage bool
|
|
|
|
statusMessage statusMessage
|
|
|
|
statusMessageTimer *time.Timer
|
2020-11-28 23:30:51 +00:00
|
|
|
|
2020-12-08 23:38:10 +00:00
|
|
|
// Available document sections we can cycle through. We use a slice, rather
|
|
|
|
// than a map, because order is important.
|
|
|
|
sections []section
|
2020-11-28 23:30:51 +00:00
|
|
|
|
2020-12-03 23:15:59 +00:00
|
|
|
// Index of the section we're currently looking at
|
2020-12-08 23:38:10 +00:00
|
|
|
sectionIndex int
|
2020-11-28 02:52:51 +00:00
|
|
|
|
2024-07-03 15:11:29 +00:00
|
|
|
// Tracks if docs were loaded
|
|
|
|
loaded bool
|
2020-05-15 00:23:11 +00:00
|
|
|
|
2020-11-23 21:56:44 +00:00
|
|
|
// The master set of markdown documents we're working with.
|
|
|
|
markdowns []*markdown
|
|
|
|
|
|
|
|
// Markdown documents we're currently displaying. Filtering, toggles and so
|
|
|
|
// on will alter this slice so we can show what is relevant. For that
|
|
|
|
// reason, this field should be considered ephemeral.
|
|
|
|
filteredMarkdowns []*markdown
|
|
|
|
|
2020-05-21 19:14:33 +00:00
|
|
|
// Page we're fetching stash items from on the server, which is different
|
|
|
|
// from the local pagination. Generally, the server will return more items
|
|
|
|
// than we can display at a time so we can paginate locally without having
|
|
|
|
// to fetch every time.
|
2024-07-03 15:11:29 +00:00
|
|
|
serverPage int64
|
2020-10-18 01:46:02 +00:00
|
|
|
}
|
|
|
|
|
2020-10-18 03:01:20 +00:00
|
|
|
func (m stashModel) loadingDone() bool {
|
2024-07-03 15:11:29 +00:00
|
|
|
return m.loaded
|
2020-10-18 03:01:20 +00:00
|
|
|
}
|
|
|
|
|
2020-12-08 23:38:10 +00:00
|
|
|
func (m stashModel) currentSection() *section {
|
|
|
|
return &m.sections[m.sectionIndex]
|
|
|
|
}
|
|
|
|
|
|
|
|
func (m stashModel) paginator() *paginator.Model {
|
|
|
|
return &m.currentSection().paginator
|
|
|
|
}
|
|
|
|
|
|
|
|
func (m *stashModel) setPaginator(p paginator.Model) {
|
|
|
|
m.currentSection().paginator = p
|
|
|
|
}
|
|
|
|
|
|
|
|
func (m stashModel) cursor() int {
|
|
|
|
return m.currentSection().cursor
|
|
|
|
}
|
|
|
|
|
|
|
|
func (m *stashModel) setCursor(i int) {
|
|
|
|
m.currentSection().cursor = i
|
|
|
|
}
|
|
|
|
|
2022-01-30 00:42:38 +00:00
|
|
|
// Whether or not the spinner should be spinning.
|
|
|
|
func (m stashModel) shouldSpin() bool {
|
|
|
|
loading := !m.loadingDone()
|
|
|
|
openingDocument := m.viewState == stashStateLoadingDocument
|
2024-07-03 15:11:29 +00:00
|
|
|
return loading || openingDocument
|
2022-01-30 00:42:38 +00:00
|
|
|
}
|
|
|
|
|
2020-05-19 17:20:39 +00:00
|
|
|
func (m *stashModel) setSize(width, height int) {
|
2020-12-11 01:43:31 +00:00
|
|
|
m.common.width = width
|
|
|
|
m.common.height = height
|
2020-05-15 00:23:11 +00:00
|
|
|
|
2024-07-03 15:11:29 +00:00
|
|
|
m.filterInput.Width = width - stashViewHorizontalPadding*2 - ansi.PrintableRuneWidth(
|
|
|
|
m.filterInput.Prompt,
|
|
|
|
)
|
2020-12-09 20:24:24 +00:00
|
|
|
|
|
|
|
m.updatePagination()
|
2020-10-24 20:47:40 +00:00
|
|
|
}
|
|
|
|
|
2020-11-23 21:56:44 +00:00
|
|
|
func (m *stashModel) resetFiltering() {
|
2020-11-26 01:15:21 +00:00
|
|
|
m.filterState = unfiltered
|
2020-11-23 21:56:44 +00:00
|
|
|
m.filterInput.Reset()
|
|
|
|
m.filteredMarkdowns = nil
|
2020-12-16 22:55:57 +00:00
|
|
|
|
2024-07-03 15:11:29 +00:00
|
|
|
sortMarkdowns(m.markdowns)
|
2020-12-15 18:37:11 +00:00
|
|
|
|
2021-03-01 21:10:28 +00:00
|
|
|
// If the filtered section is present (it's always at the end) slice it out
|
|
|
|
// of the sections slice to remove it from the UI.
|
2020-12-15 18:37:11 +00:00
|
|
|
if m.sections[len(m.sections)-1].key == filterSection {
|
|
|
|
m.sections = m.sections[:len(m.sections)-1]
|
|
|
|
}
|
2021-03-01 21:10:28 +00:00
|
|
|
|
|
|
|
// If the current section is out of bounds (it would be if we cut down the
|
|
|
|
// slice above) then return to the first section.
|
2020-12-15 18:37:11 +00:00
|
|
|
if m.sectionIndex > len(m.sections)-1 {
|
|
|
|
m.sectionIndex = 0
|
|
|
|
}
|
2021-03-01 21:10:28 +00:00
|
|
|
|
|
|
|
// Update pagination after we've switched sections.
|
|
|
|
m.updatePagination()
|
2020-11-23 21:56:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Is a filter currently being applied?
|
2020-12-15 18:37:11 +00:00
|
|
|
func (m stashModel) filterApplied() bool {
|
2020-11-26 01:15:21 +00:00
|
|
|
return m.filterState != unfiltered
|
2020-11-23 21:56:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Should we be updating the filter?
|
|
|
|
func (m stashModel) shouldUpdateFilter() bool {
|
|
|
|
// If we're in the middle of setting a note don't update the filter so that
|
|
|
|
// the focus won't jump around.
|
2024-07-03 15:11:29 +00:00
|
|
|
return m.filterApplied()
|
2020-11-23 21:56:44 +00:00
|
|
|
}
|
|
|
|
|
2020-12-08 23:38:10 +00:00
|
|
|
// Update pagination according to the amount of markdowns for the current
|
|
|
|
// state.
|
|
|
|
func (m *stashModel) updatePagination() {
|
2020-11-30 17:17:30 +00:00
|
|
|
_, helpHeight := m.helpView()
|
|
|
|
|
2020-12-11 01:43:31 +00:00
|
|
|
availableHeight := m.common.height -
|
2020-11-30 17:17:30 +00:00
|
|
|
stashViewTopPadding -
|
2020-11-30 23:44:58 +00:00
|
|
|
helpHeight -
|
|
|
|
stashViewBottomPadding
|
|
|
|
|
2020-12-08 23:38:10 +00:00
|
|
|
m.paginator().PerPage = max(1, availableHeight/stashViewItemHeight)
|
2020-10-28 01:17:18 +00:00
|
|
|
|
2020-11-23 21:56:44 +00:00
|
|
|
if pages := len(m.getVisibleMarkdowns()); pages < 1 {
|
2020-12-08 23:38:10 +00:00
|
|
|
m.paginator().SetTotalPages(1)
|
2020-10-28 01:17:18 +00:00
|
|
|
} else {
|
2020-12-08 23:38:10 +00:00
|
|
|
m.paginator().SetTotalPages(pages)
|
2020-10-28 01:17:18 +00:00
|
|
|
}
|
2020-05-22 02:29:46 +00:00
|
|
|
|
2020-05-15 02:48:38 +00:00
|
|
|
// Make sure the page stays in bounds
|
2020-12-08 23:38:10 +00:00
|
|
|
if m.paginator().Page >= m.paginator().TotalPages-1 {
|
|
|
|
m.paginator().Page = max(0, m.paginator().TotalPages-1)
|
2020-05-15 02:48:38 +00:00
|
|
|
}
|
2020-05-13 16:53:58 +00:00
|
|
|
}
|
|
|
|
|
2020-08-24 20:07:43 +00:00
|
|
|
// MarkdownIndex returns the index of the currently selected markdown item.
|
2020-05-21 19:14:33 +00:00
|
|
|
func (m stashModel) markdownIndex() int {
|
2020-12-08 23:38:10 +00:00
|
|
|
return m.paginator().Page*m.paginator().PerPage + m.cursor()
|
2020-05-21 19:14:33 +00:00
|
|
|
}
|
|
|
|
|
2020-08-24 20:07:43 +00:00
|
|
|
// Return the current selected markdown in the stash.
|
2020-05-22 20:28:15 +00:00
|
|
|
func (m stashModel) selectedMarkdown() *markdown {
|
2020-07-15 19:51:51 +00:00
|
|
|
i := m.markdownIndex()
|
2020-10-24 20:45:05 +00:00
|
|
|
|
2020-11-23 21:56:44 +00:00
|
|
|
mds := m.getVisibleMarkdowns()
|
|
|
|
if i < 0 || len(mds) == 0 || len(mds) <= i {
|
2020-06-02 22:58:15 +00:00
|
|
|
return nil
|
|
|
|
}
|
2020-10-24 20:45:05 +00:00
|
|
|
|
2020-11-23 21:56:44 +00:00
|
|
|
return mds[i]
|
2020-05-22 20:28:15 +00:00
|
|
|
}
|
|
|
|
|
2020-08-24 20:07:43 +00:00
|
|
|
// Adds markdown documents to the model.
|
2020-05-22 20:01:23 +00:00
|
|
|
func (m *stashModel) addMarkdowns(mds ...*markdown) {
|
2024-07-03 15:11:29 +00:00
|
|
|
if len(mds) == 0 {
|
2020-07-15 23:56:37 +00:00
|
|
|
return
|
|
|
|
}
|
2020-12-09 20:24:24 +00:00
|
|
|
|
2024-07-03 15:11:29 +00:00
|
|
|
m.markdowns = append(m.markdowns, mds...)
|
|
|
|
if !m.filterApplied() {
|
|
|
|
sortMarkdowns(m.markdowns)
|
2020-07-15 23:56:37 +00:00
|
|
|
}
|
2020-11-25 16:40:24 +00:00
|
|
|
|
2024-07-03 15:11:29 +00:00
|
|
|
m.updatePagination()
|
2020-11-25 16:40:24 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Returns the markdowns that should be currently shown.
|
|
|
|
func (m stashModel) getVisibleMarkdowns() []*markdown {
|
2020-12-15 18:37:11 +00:00
|
|
|
if m.filterState == filtering || m.currentSection().key == filterSection {
|
2020-11-23 21:56:44 +00:00
|
|
|
return m.filteredMarkdowns
|
|
|
|
}
|
2020-11-25 16:40:24 +00:00
|
|
|
|
2024-07-03 15:11:29 +00:00
|
|
|
return m.markdowns
|
2020-11-23 21:56:44 +00:00
|
|
|
}
|
|
|
|
|
2020-11-18 01:46:26 +00:00
|
|
|
// Command for opening a markdown document in the pager. Note that this also
|
|
|
|
// alters the model.
|
|
|
|
func (m *stashModel) openMarkdown(md *markdown) tea.Cmd {
|
2020-11-28 23:30:51 +00:00
|
|
|
m.viewState = stashStateLoadingDocument
|
2024-07-03 15:11:29 +00:00
|
|
|
cmd := loadLocalMarkdown(md)
|
2022-01-30 00:42:38 +00:00
|
|
|
return tea.Batch(cmd, m.spinner.Tick)
|
2020-11-18 01:46:26 +00:00
|
|
|
}
|
|
|
|
|
2020-08-21 17:39:59 +00:00
|
|
|
func (m *stashModel) hideStatusMessage() {
|
|
|
|
m.showStatusMessage = false
|
2020-12-14 21:26:29 +00:00
|
|
|
m.statusMessage = statusMessage{}
|
2020-08-21 17:39:59 +00:00
|
|
|
if m.statusMessageTimer != nil {
|
|
|
|
m.statusMessageTimer.Stop()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-10-24 20:50:34 +00:00
|
|
|
func (m *stashModel) moveCursorUp() {
|
2020-12-08 23:38:10 +00:00
|
|
|
m.setCursor(m.cursor() - 1)
|
|
|
|
if m.cursor() < 0 && m.paginator().Page == 0 {
|
2020-10-24 20:50:34 +00:00
|
|
|
// Stop
|
2020-12-08 23:38:10 +00:00
|
|
|
m.setCursor(0)
|
2020-10-24 20:50:34 +00:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2020-12-08 23:38:10 +00:00
|
|
|
if m.cursor() >= 0 {
|
2020-10-24 20:50:34 +00:00
|
|
|
return
|
|
|
|
}
|
|
|
|
// Go to previous page
|
2020-12-08 23:38:10 +00:00
|
|
|
m.paginator().PrevPage()
|
2020-10-24 20:50:34 +00:00
|
|
|
|
2020-12-08 23:38:10 +00:00
|
|
|
m.setCursor(m.paginator().ItemsOnPage(len(m.getVisibleMarkdowns())) - 1)
|
2020-10-24 20:50:34 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func (m *stashModel) moveCursorDown() {
|
2020-12-08 23:38:10 +00:00
|
|
|
itemsOnPage := m.paginator().ItemsOnPage(len(m.getVisibleMarkdowns()))
|
2020-10-24 20:50:34 +00:00
|
|
|
|
2020-12-08 23:38:10 +00:00
|
|
|
m.setCursor(m.cursor() + 1)
|
|
|
|
if m.cursor() < itemsOnPage {
|
2020-10-24 20:50:34 +00:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2020-12-08 23:38:10 +00:00
|
|
|
if !m.paginator().OnLastPage() {
|
|
|
|
m.paginator().NextPage()
|
|
|
|
m.setCursor(0)
|
2020-10-24 20:50:34 +00:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2020-11-18 01:46:26 +00:00
|
|
|
// During filtering the cursor position can exceed the number of
|
2020-10-24 20:50:34 +00:00
|
|
|
// itemsOnPage. It's more intuitive to start the cursor at the
|
|
|
|
// topmost position when moving it down in this scenario.
|
2020-12-08 23:38:10 +00:00
|
|
|
if m.cursor() > itemsOnPage {
|
|
|
|
m.setCursor(0)
|
2020-10-24 20:50:34 +00:00
|
|
|
return
|
|
|
|
}
|
2020-12-08 23:38:10 +00:00
|
|
|
m.setCursor(itemsOnPage - 1)
|
2020-10-24 20:50:34 +00:00
|
|
|
}
|
|
|
|
|
2020-05-13 16:53:58 +00:00
|
|
|
// INIT
|
|
|
|
|
2020-12-11 01:43:31 +00:00
|
|
|
func newStashModel(common *commonModel) stashModel {
|
2022-01-30 00:42:38 +00:00
|
|
|
sp := spinner.New()
|
2020-11-13 21:17:50 +00:00
|
|
|
sp.Spinner = spinner.Line
|
2021-06-14 20:52:00 +00:00
|
|
|
sp.Style = stashSpinnerStyle
|
2020-05-13 16:53:58 +00:00
|
|
|
|
2022-01-30 00:42:38 +00:00
|
|
|
si := textinput.New()
|
2021-06-14 20:52:00 +00:00
|
|
|
si.Prompt = "Find:"
|
|
|
|
si.PromptStyle = stashInputPromptStyle
|
2024-07-03 15:11:29 +00:00
|
|
|
si.Cursor.Style = stashInputCursorStyle
|
2020-10-24 20:37:18 +00:00
|
|
|
si.Focus()
|
|
|
|
|
2024-07-03 15:11:29 +00:00
|
|
|
s := []section{
|
|
|
|
sections[documentsSection],
|
2020-12-03 23:15:59 +00:00
|
|
|
}
|
|
|
|
|
2020-05-13 16:53:58 +00:00
|
|
|
m := stashModel{
|
2020-12-11 01:43:31 +00:00
|
|
|
common: common,
|
2020-12-11 01:20:43 +00:00
|
|
|
spinner: sp,
|
|
|
|
filterInput: si,
|
|
|
|
serverPage: 1,
|
|
|
|
sections: s,
|
2020-05-13 16:53:58 +00:00
|
|
|
}
|
|
|
|
|
2020-07-15 18:18:46 +00:00
|
|
|
return m
|
2020-05-13 16:53:58 +00:00
|
|
|
}
|
|
|
|
|
2020-12-15 18:37:11 +00:00
|
|
|
func newStashPaginator() paginator.Model {
|
2023-01-24 18:02:10 +00:00
|
|
|
p := paginator.New()
|
2020-12-15 18:37:11 +00:00
|
|
|
p.Type = paginator.Dots
|
|
|
|
p.ActiveDot = brightGrayFg("•")
|
2023-05-05 09:40:36 +00:00
|
|
|
p.InactiveDot = darkGrayFg.Render("•")
|
2020-12-15 18:37:11 +00:00
|
|
|
return p
|
|
|
|
}
|
|
|
|
|
2020-05-13 16:53:58 +00:00
|
|
|
// UPDATE
|
|
|
|
|
2020-11-25 16:40:24 +00:00
|
|
|
func (m stashModel) update(msg tea.Msg) (stashModel, tea.Cmd) {
|
2020-07-15 23:19:44 +00:00
|
|
|
var cmds []tea.Cmd
|
2020-05-15 00:52:25 +00:00
|
|
|
|
2020-05-13 16:53:58 +00:00
|
|
|
switch msg := msg.(type) {
|
2020-07-16 19:19:59 +00:00
|
|
|
case errMsg:
|
|
|
|
m.err = msg
|
|
|
|
|
2020-07-15 20:41:41 +00:00
|
|
|
case localFileSearchFinished:
|
2020-11-20 03:26:31 +00:00
|
|
|
// We're finished searching for local files
|
2024-07-03 15:11:29 +00:00
|
|
|
m.loaded = true
|
2020-12-10 01:12:01 +00:00
|
|
|
|
2020-11-23 21:56:44 +00:00
|
|
|
case filteredMarkdownMsg:
|
|
|
|
m.filteredMarkdowns = msg
|
2024-07-03 15:11:29 +00:00
|
|
|
m.setCursor(0)
|
2020-11-23 21:56:44 +00:00
|
|
|
return m, nil
|
|
|
|
|
2020-06-22 19:11:48 +00:00
|
|
|
case spinner.TickMsg:
|
2022-01-30 00:42:38 +00:00
|
|
|
if m.shouldSpin() {
|
|
|
|
var cmd tea.Cmd
|
|
|
|
m.spinner, cmd = m.spinner.Update(msg)
|
2020-05-15 22:39:23 +00:00
|
|
|
cmds = append(cmds, cmd)
|
2020-05-13 16:53:58 +00:00
|
|
|
}
|
2020-05-20 19:18:59 +00:00
|
|
|
|
2020-08-21 17:39:59 +00:00
|
|
|
case statusMessageTimeoutMsg:
|
|
|
|
if applicationContext(msg) == stashContext {
|
|
|
|
m.hideStatusMessage()
|
|
|
|
}
|
2020-05-13 16:53:58 +00:00
|
|
|
}
|
|
|
|
|
2020-11-26 01:15:21 +00:00
|
|
|
if m.filterState == filtering {
|
|
|
|
cmds = append(cmds, m.handleFiltering(msg))
|
|
|
|
return m, tea.Batch(cmds...)
|
|
|
|
}
|
|
|
|
|
2020-11-25 16:40:24 +00:00
|
|
|
// Updates per the current state
|
2020-11-28 23:30:51 +00:00
|
|
|
switch m.viewState {
|
|
|
|
case stashStateReady:
|
2020-11-25 16:40:24 +00:00
|
|
|
cmds = append(cmds, m.handleDocumentBrowsing(msg))
|
|
|
|
case stashStateShowingError:
|
|
|
|
// Any key exists the error view
|
|
|
|
if _, ok := msg.(tea.KeyMsg); ok {
|
2020-11-28 23:30:51 +00:00
|
|
|
m.viewState = stashStateReady
|
2020-11-25 16:40:24 +00:00
|
|
|
}
|
|
|
|
}
|
2020-05-22 13:38:34 +00:00
|
|
|
|
2020-11-25 16:40:24 +00:00
|
|
|
return m, tea.Batch(cmds...)
|
|
|
|
}
|
2020-08-25 23:32:19 +00:00
|
|
|
|
2020-12-01 03:12:05 +00:00
|
|
|
// Updates for when a user is browsing the markdown listing.
|
2020-11-25 16:40:24 +00:00
|
|
|
func (m *stashModel) handleDocumentBrowsing(msg tea.Msg) tea.Cmd {
|
|
|
|
var cmds []tea.Cmd
|
2020-08-25 23:32:19 +00:00
|
|
|
|
2020-12-09 20:24:24 +00:00
|
|
|
numDocs := len(m.getVisibleMarkdowns())
|
2020-10-24 20:47:40 +00:00
|
|
|
|
2020-11-25 16:40:24 +00:00
|
|
|
switch msg := msg.(type) {
|
|
|
|
// Handle keys
|
|
|
|
case tea.KeyMsg:
|
|
|
|
switch msg.String() {
|
2020-12-03 23:15:59 +00:00
|
|
|
case "k", "ctrl+k", "up":
|
2020-11-25 16:40:24 +00:00
|
|
|
m.moveCursorUp()
|
|
|
|
|
2020-12-03 23:15:59 +00:00
|
|
|
case "j", "ctrl+j", "down":
|
2020-11-25 16:40:24 +00:00
|
|
|
m.moveCursorDown()
|
|
|
|
|
|
|
|
// Go to the very start
|
|
|
|
case "home", "g":
|
2020-12-08 23:38:10 +00:00
|
|
|
m.paginator().Page = 0
|
|
|
|
m.setCursor(0)
|
2020-11-25 16:40:24 +00:00
|
|
|
|
|
|
|
// Go to the very end
|
|
|
|
case "end", "G":
|
2020-12-08 23:38:10 +00:00
|
|
|
m.paginator().Page = m.paginator().TotalPages - 1
|
2020-12-09 20:24:24 +00:00
|
|
|
m.setCursor(m.paginator().ItemsOnPage(numDocs) - 1)
|
2020-11-25 16:40:24 +00:00
|
|
|
|
2020-12-15 18:37:11 +00:00
|
|
|
// Clear filter (if applicable)
|
2022-10-25 14:40:51 +00:00
|
|
|
case keyEsc:
|
2020-12-15 18:37:11 +00:00
|
|
|
if m.filterApplied() {
|
2020-11-28 23:30:51 +00:00
|
|
|
m.resetFiltering()
|
|
|
|
}
|
2020-12-03 23:15:59 +00:00
|
|
|
|
2020-12-15 18:37:11 +00:00
|
|
|
// Next section
|
2020-12-17 23:01:41 +00:00
|
|
|
case "tab", "L":
|
2020-12-15 18:37:11 +00:00
|
|
|
if len(m.sections) == 0 || m.filterState == filtering {
|
2020-12-03 23:15:59 +00:00
|
|
|
break
|
|
|
|
}
|
2020-12-08 23:38:10 +00:00
|
|
|
m.sectionIndex++
|
|
|
|
if m.sectionIndex >= len(m.sections) {
|
|
|
|
m.sectionIndex = 0
|
2020-12-03 23:15:59 +00:00
|
|
|
}
|
2020-12-08 23:38:10 +00:00
|
|
|
m.updatePagination()
|
2020-12-03 23:15:59 +00:00
|
|
|
|
2020-12-15 18:37:11 +00:00
|
|
|
// Previous section
|
2020-12-17 23:01:41 +00:00
|
|
|
case "shift+tab", "H":
|
2020-12-15 18:37:11 +00:00
|
|
|
if len(m.sections) == 0 || m.filterState == filtering {
|
2020-12-03 23:15:59 +00:00
|
|
|
break
|
|
|
|
}
|
2020-12-08 23:38:10 +00:00
|
|
|
m.sectionIndex--
|
|
|
|
if m.sectionIndex < 0 {
|
|
|
|
m.sectionIndex = len(m.sections) - 1
|
2020-12-03 23:15:59 +00:00
|
|
|
}
|
2020-12-08 23:38:10 +00:00
|
|
|
m.updatePagination()
|
2020-08-21 17:39:59 +00:00
|
|
|
|
2024-07-03 15:11:29 +00:00
|
|
|
case "F":
|
|
|
|
m.loaded = false
|
|
|
|
return findLocalFiles(*m.common)
|
|
|
|
|
2022-07-15 02:53:13 +00:00
|
|
|
// Edit document in EDITOR
|
|
|
|
case "e":
|
|
|
|
md := m.selectedMarkdown()
|
2024-07-03 15:11:29 +00:00
|
|
|
return openEditor(md.localPath)
|
2022-07-15 02:53:13 +00:00
|
|
|
|
2020-11-25 16:40:24 +00:00
|
|
|
// Open document
|
2022-10-25 14:40:51 +00:00
|
|
|
case keyEnter:
|
2020-11-25 16:40:24 +00:00
|
|
|
m.hideStatusMessage()
|
2020-06-03 16:46:53 +00:00
|
|
|
|
2020-12-09 20:24:24 +00:00
|
|
|
if numDocs == 0 {
|
2020-11-25 16:40:24 +00:00
|
|
|
break
|
|
|
|
}
|
2020-05-22 13:38:34 +00:00
|
|
|
|
2020-11-25 16:40:24 +00:00
|
|
|
// Load the document from the server. We'll handle the message
|
|
|
|
// that comes back in the main update function.
|
|
|
|
md := m.selectedMarkdown()
|
|
|
|
cmds = append(cmds, m.openMarkdown(md))
|
2020-11-19 23:56:46 +00:00
|
|
|
|
2020-11-25 16:40:24 +00:00
|
|
|
// Filter your notes
|
|
|
|
case "/":
|
|
|
|
m.hideStatusMessage()
|
2020-10-24 20:18:19 +00:00
|
|
|
|
2020-11-25 16:40:24 +00:00
|
|
|
// Build values we'll filter against
|
|
|
|
for _, md := range m.markdowns {
|
|
|
|
md.buildFilterValue()
|
|
|
|
}
|
2020-11-17 15:27:57 +00:00
|
|
|
|
2024-07-03 15:11:29 +00:00
|
|
|
m.filteredMarkdowns = m.markdowns
|
2020-11-23 21:56:44 +00:00
|
|
|
|
2020-12-08 23:38:10 +00:00
|
|
|
m.paginator().Page = 0
|
|
|
|
m.setCursor(0)
|
2020-11-26 01:15:21 +00:00
|
|
|
m.filterState = filtering
|
2020-11-25 16:40:24 +00:00
|
|
|
m.filterInput.CursorEnd()
|
|
|
|
m.filterInput.Focus()
|
|
|
|
return textinput.Blink
|
2020-10-24 20:37:18 +00:00
|
|
|
|
2020-11-30 17:17:30 +00:00
|
|
|
// Toggle full help
|
|
|
|
case "?":
|
|
|
|
m.showFullHelp = !m.showFullHelp
|
2020-12-08 23:38:10 +00:00
|
|
|
m.updatePagination()
|
2020-11-30 17:17:30 +00:00
|
|
|
|
2020-11-25 16:40:24 +00:00
|
|
|
// Show errors
|
|
|
|
case "!":
|
2020-11-28 23:30:51 +00:00
|
|
|
if m.err != nil && m.viewState == stashStateReady {
|
|
|
|
m.viewState = stashStateShowingError
|
2020-11-25 16:40:24 +00:00
|
|
|
return nil
|
2020-07-21 18:55:00 +00:00
|
|
|
}
|
|
|
|
}
|
2020-11-25 16:40:24 +00:00
|
|
|
}
|
2020-07-21 18:55:00 +00:00
|
|
|
|
2020-11-25 16:40:24 +00:00
|
|
|
// Update paginator. Pagination key handling is done here, but it could
|
|
|
|
// also be moved up to this level, in which case we'd use model methods
|
|
|
|
// like model.PageUp().
|
2020-12-08 23:38:10 +00:00
|
|
|
newPaginatorModel, cmd := m.paginator().Update(msg)
|
|
|
|
m.setPaginator(newPaginatorModel)
|
2020-11-25 16:40:24 +00:00
|
|
|
cmds = append(cmds, cmd)
|
|
|
|
|
|
|
|
// Extra paginator keystrokes
|
|
|
|
if key, ok := msg.(tea.KeyMsg); ok {
|
|
|
|
switch key.String() {
|
|
|
|
case "b", "u":
|
2020-12-08 23:38:10 +00:00
|
|
|
m.paginator().PrevPage()
|
2020-11-25 16:40:24 +00:00
|
|
|
case "f", "d":
|
2020-12-08 23:38:10 +00:00
|
|
|
m.paginator().NextPage()
|
2020-05-15 21:31:43 +00:00
|
|
|
}
|
2020-11-25 16:40:24 +00:00
|
|
|
}
|
2020-05-15 23:16:22 +00:00
|
|
|
|
2020-11-25 16:40:24 +00:00
|
|
|
// Keep the index in bounds when paginating
|
2020-12-08 23:38:10 +00:00
|
|
|
itemsOnPage := m.paginator().ItemsOnPage(len(m.getVisibleMarkdowns()))
|
|
|
|
if m.cursor() > itemsOnPage-1 {
|
|
|
|
m.setCursor(max(0, itemsOnPage-1))
|
2020-11-25 16:40:24 +00:00
|
|
|
}
|
2020-05-15 23:16:22 +00:00
|
|
|
|
2020-11-25 16:40:24 +00:00
|
|
|
return tea.Batch(cmds...)
|
|
|
|
}
|
2020-05-22 13:38:34 +00:00
|
|
|
|
2020-12-01 03:12:05 +00:00
|
|
|
// Updates for when a user is in the filter editing interface.
|
2020-11-25 16:40:24 +00:00
|
|
|
func (m *stashModel) handleFiltering(msg tea.Msg) tea.Cmd {
|
|
|
|
var cmds []tea.Cmd
|
2020-10-24 20:37:18 +00:00
|
|
|
|
2020-11-25 16:40:24 +00:00
|
|
|
// Handle keys
|
|
|
|
if msg, ok := msg.(tea.KeyMsg); ok {
|
|
|
|
switch msg.String() {
|
2022-10-25 14:40:51 +00:00
|
|
|
case keyEsc:
|
2020-11-25 16:40:24 +00:00
|
|
|
// Cancel filtering
|
|
|
|
m.resetFiltering()
|
2022-10-25 14:40:51 +00:00
|
|
|
case keyEnter, "tab", "shift+tab", "ctrl+k", "up", "ctrl+j", "down":
|
2020-11-25 16:40:24 +00:00
|
|
|
m.hideStatusMessage()
|
2020-11-10 23:15:10 +00:00
|
|
|
|
2020-11-25 16:40:24 +00:00
|
|
|
if len(m.markdowns) == 0 {
|
|
|
|
break
|
|
|
|
}
|
2020-11-10 23:15:10 +00:00
|
|
|
|
2020-11-25 16:40:24 +00:00
|
|
|
h := m.getVisibleMarkdowns()
|
2020-10-25 03:51:23 +00:00
|
|
|
|
2020-11-25 16:40:24 +00:00
|
|
|
// If we've filtered down to nothing, clear the filter
|
|
|
|
if len(h) == 0 {
|
2020-11-28 23:30:51 +00:00
|
|
|
m.viewState = stashStateReady
|
2020-11-25 16:40:24 +00:00
|
|
|
m.resetFiltering()
|
|
|
|
break
|
|
|
|
}
|
2020-10-24 20:37:18 +00:00
|
|
|
|
2020-11-25 16:40:24 +00:00
|
|
|
// When there's only one filtered markdown left we can just
|
|
|
|
// "open" it directly
|
|
|
|
if len(h) == 1 {
|
2020-11-28 23:30:51 +00:00
|
|
|
m.viewState = stashStateReady
|
2020-11-25 16:40:24 +00:00
|
|
|
m.resetFiltering()
|
|
|
|
cmds = append(cmds, m.openMarkdown(h[0]))
|
|
|
|
break
|
2020-10-24 20:18:19 +00:00
|
|
|
}
|
2020-10-24 20:37:18 +00:00
|
|
|
|
2020-12-15 18:37:11 +00:00
|
|
|
// Add new section if it's not present
|
|
|
|
if m.sections[len(m.sections)-1].key != filterSection {
|
|
|
|
m.sections = append(m.sections, sections[filterSection])
|
|
|
|
}
|
|
|
|
m.sectionIndex = len(m.sections) - 1
|
|
|
|
|
2020-11-25 16:40:24 +00:00
|
|
|
m.filterInput.Blur()
|
2020-11-23 21:56:44 +00:00
|
|
|
|
2020-11-26 01:15:21 +00:00
|
|
|
m.filterState = filterApplied
|
2020-11-25 16:40:24 +00:00
|
|
|
if m.filterInput.Value() == "" {
|
|
|
|
m.resetFiltering()
|
|
|
|
}
|
2020-11-23 21:56:44 +00:00
|
|
|
}
|
2020-11-25 16:40:24 +00:00
|
|
|
}
|
2020-10-24 20:47:40 +00:00
|
|
|
|
2020-11-25 16:40:24 +00:00
|
|
|
// Update the filter text input component
|
|
|
|
newFilterInputModel, inputCmd := m.filterInput.Update(msg)
|
|
|
|
currentFilterVal := m.filterInput.Value()
|
|
|
|
newFilterVal := newFilterInputModel.Value()
|
|
|
|
m.filterInput = newFilterInputModel
|
|
|
|
cmds = append(cmds, inputCmd)
|
2020-10-24 20:47:40 +00:00
|
|
|
|
2020-11-25 16:40:24 +00:00
|
|
|
// If the filtering input has changed, request updated filtering
|
|
|
|
if newFilterVal != currentFilterVal {
|
|
|
|
cmds = append(cmds, filterMarkdowns(*m))
|
|
|
|
}
|
2020-05-22 02:29:46 +00:00
|
|
|
|
2020-11-25 16:40:24 +00:00
|
|
|
// Update pagination
|
2020-12-08 23:38:10 +00:00
|
|
|
m.updatePagination()
|
2020-11-23 21:56:44 +00:00
|
|
|
|
2020-11-25 16:40:24 +00:00
|
|
|
return tea.Batch(cmds...)
|
|
|
|
}
|
2020-05-22 02:29:46 +00:00
|
|
|
|
2020-05-13 16:53:58 +00:00
|
|
|
// VIEW
|
|
|
|
|
2020-11-25 16:40:24 +00:00
|
|
|
func (m stashModel) view() string {
|
2020-05-13 16:53:58 +00:00
|
|
|
var s string
|
2020-11-28 23:30:51 +00:00
|
|
|
switch m.viewState {
|
2020-07-16 19:54:55 +00:00
|
|
|
case stashStateShowingError:
|
|
|
|
return errorView(m.err, false)
|
2020-05-15 19:08:45 +00:00
|
|
|
case stashStateLoadingDocument:
|
2020-11-13 21:17:50 +00:00
|
|
|
s += " " + m.spinner.View() + " Loading document..."
|
2020-11-28 23:30:51 +00:00
|
|
|
case stashStateReady:
|
2020-10-24 20:37:18 +00:00
|
|
|
loadingIndicator := " "
|
2022-01-30 00:42:38 +00:00
|
|
|
if m.shouldSpin() {
|
2020-11-13 21:17:50 +00:00
|
|
|
loadingIndicator = m.spinner.View()
|
2020-07-15 20:41:41 +00:00
|
|
|
}
|
|
|
|
|
2020-07-16 19:09:06 +00:00
|
|
|
// Only draw the normal header if we're not using the header area for
|
2020-12-09 20:24:24 +00:00
|
|
|
// something else (like a note or delete prompt).
|
2024-07-03 15:11:29 +00:00
|
|
|
header := m.headerView()
|
2020-07-16 19:09:06 +00:00
|
|
|
|
2020-12-09 20:24:24 +00:00
|
|
|
// Rules for the logo, filter and status message.
|
2020-12-14 23:54:39 +00:00
|
|
|
logoOrFilter := " "
|
2020-12-15 18:37:11 +00:00
|
|
|
if m.showStatusMessage && m.filterState == filtering {
|
2020-12-14 23:54:39 +00:00
|
|
|
logoOrFilter += m.statusMessage.String()
|
2020-12-15 18:37:11 +00:00
|
|
|
} else if m.filterState == filtering {
|
2020-12-14 23:54:39 +00:00
|
|
|
logoOrFilter += m.filterInput.View()
|
2020-12-09 20:24:24 +00:00
|
|
|
} else {
|
2024-07-03 15:11:29 +00:00
|
|
|
logoOrFilter += glowLogoView()
|
2020-12-14 23:54:39 +00:00
|
|
|
if m.showStatusMessage {
|
|
|
|
logoOrFilter += " " + m.statusMessage.String()
|
|
|
|
}
|
2020-10-24 20:37:18 +00:00
|
|
|
}
|
2020-12-18 21:26:03 +00:00
|
|
|
logoOrFilter = truncate.StringWithTail(logoOrFilter, uint(m.common.width-1), ellipsis)
|
2020-10-24 20:37:18 +00:00
|
|
|
|
2020-12-03 23:15:59 +00:00
|
|
|
help, helpHeight := m.helpView()
|
|
|
|
|
|
|
|
populatedView := m.populatedView()
|
|
|
|
populatedViewHeight := strings.Count(populatedView, "\n") + 2
|
|
|
|
|
|
|
|
// We need to fill any empty height with newlines so the footer reaches
|
|
|
|
// the bottom.
|
2020-12-11 01:43:31 +00:00
|
|
|
availHeight := m.common.height -
|
2020-12-03 23:15:59 +00:00
|
|
|
stashViewTopPadding -
|
|
|
|
populatedViewHeight -
|
|
|
|
helpHeight -
|
|
|
|
stashViewBottomPadding
|
|
|
|
blankLines := strings.Repeat("\n", max(0, availHeight))
|
|
|
|
|
2020-05-15 23:16:22 +00:00
|
|
|
var pagination string
|
2020-12-08 23:38:10 +00:00
|
|
|
if m.paginator().TotalPages > 1 {
|
|
|
|
pagination = m.paginator().View()
|
2020-05-15 23:16:22 +00:00
|
|
|
|
2020-07-20 15:00:17 +00:00
|
|
|
// If the dot pagination is wider than the width of the window
|
2021-03-01 22:57:54 +00:00
|
|
|
// use the arabic paginator.
|
2020-12-11 01:43:31 +00:00
|
|
|
if ansi.PrintableRuneWidth(pagination) > m.common.width-stashViewHorizontalPadding {
|
2021-03-01 22:57:54 +00:00
|
|
|
// Copy the paginator since m.paginator() returns a pointer to
|
|
|
|
// the active paginator and we don't want to mutate it. In
|
|
|
|
// normal cases, where the paginator is not a pointer, we could
|
|
|
|
// safely change the model parameters for rendering here as the
|
|
|
|
// current model is discarded after reuturning from a View().
|
|
|
|
// One could argue, in fact, that using pointers in
|
|
|
|
// a functional framework is an antipattern and our use of
|
|
|
|
// pointers in our model should be refactored away.
|
2024-07-03 15:11:29 +00:00
|
|
|
p := *(m.paginator())
|
2021-03-01 22:57:54 +00:00
|
|
|
p.Type = paginator.Arabic
|
2021-06-14 20:52:00 +00:00
|
|
|
pagination = paginationStyle.Render(p.View())
|
2020-07-20 15:00:17 +00:00
|
|
|
}
|
|
|
|
|
2020-08-13 16:32:48 +00:00
|
|
|
// We could also look at m.stashFullyLoaded and add an indicator
|
|
|
|
// showing that we don't actually know how many more pages there
|
|
|
|
// are.
|
2020-05-15 22:44:22 +00:00
|
|
|
}
|
|
|
|
|
2020-05-15 00:52:25 +00:00
|
|
|
s += fmt.Sprintf(
|
2020-12-14 23:54:39 +00:00
|
|
|
"%s%s\n\n %s\n\n%s\n\n%s %s\n\n%s",
|
2020-07-15 20:41:41 +00:00
|
|
|
loadingIndicator,
|
2020-11-13 21:33:22 +00:00
|
|
|
logoOrFilter,
|
2020-05-15 22:34:42 +00:00
|
|
|
header,
|
2020-12-03 23:15:59 +00:00
|
|
|
populatedView,
|
2020-05-15 01:12:13 +00:00
|
|
|
blankLines,
|
2020-05-15 23:16:22 +00:00
|
|
|
pagination,
|
2020-11-30 17:17:30 +00:00
|
|
|
help,
|
2020-05-15 00:52:25 +00:00
|
|
|
)
|
2020-05-13 23:02:39 +00:00
|
|
|
}
|
2020-07-16 19:09:06 +00:00
|
|
|
return "\n" + indent(s, stashIndent)
|
2020-05-13 23:02:39 +00:00
|
|
|
}
|
|
|
|
|
2024-07-03 15:11:29 +00:00
|
|
|
func glowLogoView() string {
|
|
|
|
return logoStyle.Render(" Glow ")
|
2020-05-19 17:20:39 +00:00
|
|
|
}
|
|
|
|
|
2020-12-09 20:24:24 +00:00
|
|
|
func (m stashModel) headerView() string {
|
2024-07-03 15:11:29 +00:00
|
|
|
localCount := len(m.markdowns)
|
2020-12-09 20:24:24 +00:00
|
|
|
|
2022-10-25 14:40:51 +00:00
|
|
|
var sections []string //nolint:prealloc
|
2020-12-09 20:24:24 +00:00
|
|
|
|
|
|
|
// Filter results
|
2020-12-15 18:37:11 +00:00
|
|
|
if m.filterState == filtering {
|
2024-07-03 15:11:29 +00:00
|
|
|
if localCount == 0 {
|
2020-12-09 20:24:24 +00:00
|
|
|
return grayFg("Nothing found.")
|
2021-03-12 12:30:30 +00:00
|
|
|
}
|
|
|
|
if localCount > 0 {
|
|
|
|
sections = append(sections, fmt.Sprintf("%d local", localCount))
|
|
|
|
}
|
2020-12-09 20:24:24 +00:00
|
|
|
|
|
|
|
for i := range sections {
|
|
|
|
sections[i] = grayFg(sections[i])
|
|
|
|
}
|
|
|
|
|
2023-05-05 09:40:36 +00:00
|
|
|
return strings.Join(sections, dividerDot.String())
|
2020-12-09 20:24:24 +00:00
|
|
|
}
|
2020-07-16 19:09:06 +00:00
|
|
|
|
2020-12-09 20:24:24 +00:00
|
|
|
// Tabs
|
2020-12-03 23:15:59 +00:00
|
|
|
for i, v := range m.sections {
|
|
|
|
var s string
|
|
|
|
|
2020-12-08 23:38:10 +00:00
|
|
|
switch v.key {
|
2024-07-03 15:11:29 +00:00
|
|
|
case documentsSection:
|
|
|
|
s = fmt.Sprintf("%d documents", localCount)
|
|
|
|
|
2020-12-15 18:37:11 +00:00
|
|
|
case filterSection:
|
|
|
|
s = fmt.Sprintf("%d “%s”", len(m.filteredMarkdowns), m.filterInput.Value())
|
2020-09-07 23:14:59 +00:00
|
|
|
}
|
2020-07-16 19:09:06 +00:00
|
|
|
|
2020-12-08 23:38:10 +00:00
|
|
|
if m.sectionIndex == i && len(m.sections) > 1 {
|
2021-06-14 20:52:00 +00:00
|
|
|
s = selectedTabStyle.Render(s)
|
2020-12-03 23:15:59 +00:00
|
|
|
} else {
|
2021-06-14 20:52:00 +00:00
|
|
|
s = tabStyle.Render(s)
|
2020-07-16 19:09:06 +00:00
|
|
|
}
|
2020-12-03 23:15:59 +00:00
|
|
|
sections = append(sections, s)
|
2020-07-16 19:09:06 +00:00
|
|
|
}
|
2020-10-25 03:57:12 +00:00
|
|
|
|
2024-07-03 15:11:29 +00:00
|
|
|
return strings.Join(sections, dividerBar.String())
|
2020-05-13 23:02:39 +00:00
|
|
|
}
|
|
|
|
|
2020-11-28 23:30:51 +00:00
|
|
|
func (m stashModel) populatedView() string {
|
2020-11-23 21:56:44 +00:00
|
|
|
mds := m.getVisibleMarkdowns()
|
2020-12-03 23:15:59 +00:00
|
|
|
|
2020-12-09 20:24:24 +00:00
|
|
|
var b strings.Builder
|
|
|
|
|
2020-12-03 23:15:59 +00:00
|
|
|
// Empty states
|
|
|
|
if len(mds) == 0 {
|
|
|
|
f := func(s string) {
|
|
|
|
b.WriteString(" " + grayFg(s))
|
|
|
|
}
|
|
|
|
|
2020-12-08 23:38:10 +00:00
|
|
|
switch m.sections[m.sectionIndex].key {
|
2024-07-03 15:11:29 +00:00
|
|
|
case documentsSection:
|
2020-12-03 23:15:59 +00:00
|
|
|
if m.loadingDone() {
|
2024-07-03 15:11:29 +00:00
|
|
|
f("No files found.")
|
2020-12-03 23:15:59 +00:00
|
|
|
} else {
|
|
|
|
f("Looking for local files...")
|
|
|
|
}
|
2020-12-16 21:02:38 +00:00
|
|
|
case filterSection:
|
|
|
|
return ""
|
2020-12-03 23:15:59 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-11-23 21:56:44 +00:00
|
|
|
if len(mds) > 0 {
|
2020-12-08 23:38:10 +00:00
|
|
|
start, end := m.paginator().GetSliceBounds(len(mds))
|
2020-11-23 21:56:44 +00:00
|
|
|
docs := mds[start:end]
|
2020-05-15 00:23:11 +00:00
|
|
|
|
2020-06-02 23:44:26 +00:00
|
|
|
for i, md := range docs {
|
|
|
|
stashItemView(&b, m, i, md)
|
|
|
|
if i != len(docs)-1 {
|
|
|
|
fmt.Fprintf(&b, "\n\n")
|
|
|
|
}
|
2020-05-26 16:36:14 +00:00
|
|
|
}
|
2020-05-13 23:02:39 +00:00
|
|
|
}
|
2020-05-15 00:52:25 +00:00
|
|
|
|
|
|
|
// If there aren't enough items to fill up this page (always the last page)
|
2020-06-02 23:44:26 +00:00
|
|
|
// then we need to add some newlines to fill up the space where stash items
|
|
|
|
// would have been.
|
2020-12-08 23:38:10 +00:00
|
|
|
itemsOnPage := m.paginator().ItemsOnPage(len(mds))
|
|
|
|
if itemsOnPage < m.paginator().PerPage {
|
|
|
|
n := (m.paginator().PerPage - itemsOnPage) * stashViewItemHeight
|
2020-11-23 21:56:44 +00:00
|
|
|
if len(mds) == 0 {
|
2020-06-02 23:44:26 +00:00
|
|
|
n -= stashViewItemHeight - 1
|
|
|
|
}
|
2020-05-26 16:36:14 +00:00
|
|
|
for i := 0; i < n; i++ {
|
|
|
|
fmt.Fprint(&b, "\n")
|
|
|
|
}
|
2020-05-15 00:52:25 +00:00
|
|
|
}
|
|
|
|
|
2020-05-26 16:36:14 +00:00
|
|
|
return b.String()
|
2020-05-15 00:23:11 +00:00
|
|
|
}
|
|
|
|
|
2020-08-24 20:48:10 +00:00
|
|
|
// COMMANDS
|
2020-05-13 16:53:58 +00:00
|
|
|
|
2020-07-14 20:05:21 +00:00
|
|
|
func loadLocalMarkdown(md *markdown) tea.Cmd {
|
|
|
|
return func() tea.Msg {
|
|
|
|
if md.localPath == "" {
|
2020-08-21 20:13:38 +00:00
|
|
|
return errMsg{errors.New("could not load file: missing path")}
|
2020-07-14 20:05:21 +00:00
|
|
|
}
|
|
|
|
|
2022-10-25 14:40:51 +00:00
|
|
|
data, err := os.ReadFile(md.localPath)
|
2020-07-14 20:05:21 +00:00
|
|
|
if err != nil {
|
2024-07-03 15:11:29 +00:00
|
|
|
log.Debug("error reading local file", "error", err)
|
2020-08-21 20:13:38 +00:00
|
|
|
return errMsg{err}
|
2020-07-14 20:05:21 +00:00
|
|
|
}
|
2024-07-03 15:11:29 +00:00
|
|
|
md.Note = md.localPath
|
2020-07-14 20:05:21 +00:00
|
|
|
md.Body = string(data)
|
|
|
|
return fetchedMarkdownMsg(md)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-11-23 21:56:44 +00:00
|
|
|
func filterMarkdowns(m stashModel) tea.Cmd {
|
|
|
|
return func() tea.Msg {
|
2020-12-15 18:37:11 +00:00
|
|
|
if m.filterInput.Value() == "" || !m.filterApplied() {
|
2024-07-03 15:11:29 +00:00
|
|
|
return filteredMarkdownMsg(m.markdowns) // return everything
|
2020-11-23 21:56:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
targets := []string{}
|
2024-07-03 15:11:29 +00:00
|
|
|
mds := m.markdowns
|
2020-11-23 21:56:44 +00:00
|
|
|
|
2020-11-25 16:40:24 +00:00
|
|
|
for _, t := range mds {
|
2020-11-23 21:56:44 +00:00
|
|
|
targets = append(targets, t.filterValue)
|
|
|
|
}
|
|
|
|
|
|
|
|
ranks := fuzzy.Find(m.filterInput.Value(), targets)
|
|
|
|
sort.Stable(ranks)
|
|
|
|
|
|
|
|
filtered := []*markdown{}
|
|
|
|
for _, r := range ranks {
|
2020-11-25 16:40:24 +00:00
|
|
|
filtered = append(filtered, mds[r.Index])
|
2020-11-23 21:56:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return filteredMarkdownMsg(filtered)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2024-07-03 15:11:29 +00:00
|
|
|
func (m *stashModel) loadDocs() tea.Cmd {
|
|
|
|
return findLocalFiles(*m.common)
|
2020-11-23 21:56:44 +00:00
|
|
|
}
|