Compare commits

...

5 commits

Author SHA1 Message Date
Lilian Jónsdóttir 03c09e1da6 version bump
- respond to terminal resize events
- update packaging script
2024-07-31 09:51:05 -07:00
Lilian Jónsdóttir 40521eb646 handle terminal resize event 2024-07-31 00:53:02 -07:00
Lilian Jónsdóttir dd6d3421b0 update readme 2024-07-31 00:51:14 -07:00
Lilian Jónsdóttir 98a5044662 make linter happier 2024-07-31 00:13:48 -07:00
Lilian Jónsdóttir 747a24ebd6 update justfile package command
- include screenshots (moved to their own dir), completions
- build for x86_64, arm, and arm64
2024-07-31 00:03:25 -07:00
13 changed files with 145 additions and 117 deletions

2
.gitignore vendored
View file

@ -1,2 +1,2 @@
bin/
dist/*.tar.gz
dist/

View file

@ -48,7 +48,7 @@ Find files in the trash based on the filter flags and any filename args.
#### flags
*--all*, *-a*
operate on all files in trash
restore all files in trash
*--original-path* dir, *-O* dir
restore files trashed from this directory
@ -60,7 +60,7 @@ Find files in the trash based on the filter flags and any filename args.
#### flags
*--all*, *-a*
operate on all files in trash
clean all files in trash
*--original-path* dir, *-O* dir
remove files trashed from this directory
@ -117,6 +117,6 @@ See also gt(1) or `gt --help`.
## Screenshots
![trashing screenshot](./dist/Screenshot01.png)
![trashing screenshot](./screenshots/Screenshot01.png)
![list screenshot](./dist/Screenshot02.png)
![list screenshot](./screenshots/Screenshot02.png)

8
gt.1
View file

@ -5,11 +5,11 @@
.nh
.ad l
.\" Begin generated content:
.TH "gt" "1" "2024-07-31" "gt version v0.0.1" "User Commands"
.TH "gt" "1" "2024-07-31" "gt version v0.0.2" "User Commands"
.PP
.SH NAME
.PP
gt - manual page for gt version 0.\&0.\&1
gt - manual page for gt version 0.\&0.\&2
.PP
.SH DESCRIPTION
.PP
@ -27,7 +27,7 @@ g(o)t(rash) is a simple, command line program to interface with the XDG Trash.\&
.PP
.SS VERSION:
.PP
0.\&0.\&1
0.\&0.\&2
.PP
.SS AUTHOR:
.PP
@ -68,7 +68,7 @@ operate on files recursively
.RE
\fB--work-dir\fR dir, \fB-w\fR dir
.RS 4
operate on files in this `DIRECTORY`
operate on files in this directory
.PP
.RE
\fB--hidden\fR, \fB-h\fR

View file

@ -1,8 +1,8 @@
gt(1) ["gt version v0.0.1" ["User Commands"]]
gt(1) ["gt version v0.0.2" ["User Commands"]]
# NAME
gt \- manual page for gt version 0.0.1
gt \- manual page for gt version 0.0.2
# DESCRIPTION
@ -20,7 +20,7 @@ g(o)t(rash) is a simple, command line program to interface with the XDG Trash. F
## VERSION:
0.0.1
0.0.2
## AUTHOR:

View file

@ -10,8 +10,8 @@ import (
const sep = string(os.PathSeparator)
var (
home string = os.Getenv("HOME")
pwd, _ = os.Getwd()
home = os.Getenv("HOME")
pwd, _ = os.Getwd()
)
// UnExpand returns dir after expanding some directory shortcuts

View file

@ -27,9 +27,8 @@ func SortByModified(a, b File) int {
return 1
} else if a.Date().After(b.Date()) {
return -1
} else {
return 0
}
return 0
}
func SortByModifiedReverse(a, b File) int {
@ -37,9 +36,8 @@ func SortByModifiedReverse(a, b File) int {
return 1
} else if a.Date().Before(b.Date()) {
return -1
} else {
return 0
}
return 0
}
func SortBySize(a, b File) int {
@ -87,9 +85,8 @@ func SortDirectoriesFirst(a, b File) int {
return 1
} else if a.IsDir() && !b.IsDir() {
return -1
} else {
return 0
}
return 0
}
func SortDirectoriesLast(a, b File) int {
@ -97,9 +94,8 @@ func SortDirectoriesLast(a, b File) int {
return 1
} else if !a.IsDir() && b.IsDir() {
return -1
} else {
return 0
}
return 0
}
func doNameSort(a, b File) int {
@ -119,7 +115,6 @@ func doNameSort(a, b File) int {
func getSortingSize(f File) int64 {
if f.IsDir() {
return -1
} else {
return f.Filesize()
}
return f.Filesize()
}

View file

@ -296,19 +296,19 @@ func ensureUniqueName(filename, trashDir string) (string, string) {
// doesn't exist, so use it
path := filepath.Join(filedir, filename)
return info, path
} else {
// otherwise, try random suffixes until one works
log.Debugf("%s exists in trash, generating random name", filename)
var tries int
for {
tries++
rando := randomFilename(randomStrLength)
newName := filepath.Join(infodir, filename+rando+trashInfoExt)
if _, err := os.Stat(newName); os.IsNotExist(err) {
path := filepath.Join(filedir, filename+rando)
log.Debugf("settled on random name %s%s on the %s try", filename, rando, humanize.Ordinal(tries))
return newName, path
}
}
// otherwise, try random suffixes until one works
log.Debugf("%s exists in trash, generating random name", filename)
var tries int
for {
tries++
rando := randomFilename(randomStrLength)
newName := filepath.Join(infodir, filename+rando+trashInfoExt)
if _, err := os.Stat(newName); os.IsNotExist(err) {
path := filepath.Join(filedir, filename+rando)
log.Debugf("settled on random name %s%s on the %s try", filename, rando, humanize.Ordinal(tries))
return newName, path
}
}
}

View file

@ -4,6 +4,7 @@ package interactive
import (
"fmt"
"math"
"os"
"path/filepath"
"slices"
"strings"
@ -12,6 +13,7 @@ import (
"git.burning.moe/celediel/gt/internal/files"
"git.burning.moe/celediel/gt/internal/interactive/modes"
"git.burning.moe/celediel/gt/internal/interactive/sorting"
"golang.org/x/term"
"github.com/charmbracelet/bubbles/key"
"github.com/charmbracelet/bubbles/table"
@ -84,64 +86,37 @@ type model struct {
fltrfiles files.Files
}
func newModel(fls []files.File, width, height int, selectall, readonly, once bool, workdir string, mode modes.Mode) model {
var (
fwidth = int(math.Round(float64(width-woffset) * filenameColumnW))
owidth = int(math.Round(float64(width-woffset) * pathColumnW))
dwidth = int(math.Round(float64(width-woffset) * dateColumnW))
swidth = int(math.Round(float64(width-woffset) * sizeColumnW))
cwidth = int(math.Round(float64(width-woffset) * checkColumnW))
theight = min(height-hoffset, len(fls))
func newModel(fls []files.File, selectall, readonly, once bool, workdir string, mode modes.Mode) (m model) {
m = model{
keys: defaultKeyMap(),
readonly: readonly,
once: once,
mode: mode,
selected: map[string]bool{},
selectsize: 0,
files: fls,
}
mdl = model{
keys: defaultKeyMap(),
readonly: readonly,
once: once,
termheight: height,
termwidth: width,
mode: mode,
selected: map[string]bool{},
selectsize: 0,
files: fls,
}
)
m.termwidth, m.termheight = termSizes()
if workdir != "" {
mdl.workdir = filepath.Clean(workdir)
m.workdir = filepath.Clean(workdir)
}
rows := mdl.freshRows()
rows := m.freshRows()
columns := m.freshColumns()
var datecolumn string
switch mdl.mode {
case modes.Trashing:
datecolumn = modifiedColumn
default:
datecolumn = trashedColumn
}
theight := min(m.termheight-hoffset, len(fls))
m.table = createTable(columns, rows, theight)
columns := []table.Column{
{Title: filenameColumn, Width: fwidth},
{Title: pathColumn, Width: owidth},
{Title: datecolumn, Width: dwidth},
{Title: sizeColumn, Width: swidth},
}
if !mdl.readonly {
columns = append(columns, table.Column{Title: uncheck, Width: cwidth})
} else {
columns[0].Width += cwidth
}
mdl.table = createTable(columns, rows, theight)
mdl.sorting = sorting.Name
mdl.sort()
m.sorting = sorting.Name
m.sort()
if selectall {
mdl.selectAll()
m.selectAll()
}
return mdl
return
}
type keyMap struct {
@ -239,6 +214,8 @@ func (m model) Update(msg tea.Msg) (tea.Model, tea.Cmd) {
}
switch msg := msg.(type) {
case tea.WindowSizeMsg:
m.updateTableSize()
case tea.KeyMsg:
if m.filtering {
switch {
@ -312,7 +289,6 @@ func (m model) View() string {
}
func (m model) showHelp() string {
// TODO: maybe use bubbletea built in help
var filterText string
if m.filter != "" {
filterText = fmt.Sprintf(" (%s)", m.filter)
@ -613,6 +589,48 @@ func (m *model) filteredFiles() (filteredFiles files.Files) {
return
}
func (m *model) freshColumns() []table.Column {
var (
fwidth = int(math.Round(float64(m.termwidth-woffset) * filenameColumnW))
owidth = int(math.Round(float64(m.termwidth-woffset) * pathColumnW))
dwidth = int(math.Round(float64(m.termwidth-woffset) * dateColumnW))
swidth = int(math.Round(float64(m.termwidth-woffset) * sizeColumnW))
cwidth = int(math.Round(float64(m.termwidth-woffset) * checkColumnW))
datecolumn string
)
switch m.mode {
case modes.Trashing:
datecolumn = modifiedColumn
default:
datecolumn = trashedColumn
}
columns := []table.Column{
{Title: filenameColumn, Width: fwidth},
{Title: pathColumn, Width: owidth},
{Title: datecolumn, Width: dwidth},
{Title: sizeColumn, Width: swidth},
}
if !m.readonly {
columns = append(columns, table.Column{Title: uncheck, Width: cwidth})
} else {
columns[0].Width += cwidth
}
return columns
}
func (m *model) updateTableSize() {
width, height := termSizes()
m.termheight = height
m.termwidth = width - poffset
m.table.SetWidth(m.termwidth)
m.updateTableHeight()
m.table.SetColumns(m.freshColumns())
}
func (m *model) updateTableHeight() {
h := min(m.termheight-hoffset, len(m.table.Rows()))
m.table.SetHeight(h)
@ -621,8 +639,8 @@ func (m *model) updateTableHeight() {
}
}
func Select(fls files.Files, width, height int, selectall, once bool, workdir string, mode modes.Mode) (files.Files, modes.Mode, error) {
mdl := newModel(fls, width, height, selectall, false, once, workdir, mode)
func Select(fls files.Files, selectall, once bool, workdir string, mode modes.Mode) (files.Files, modes.Mode, error) {
mdl := newModel(fls, selectall, false, once, workdir, mode)
endmodel, err := tea.NewProgram(mdl).Run()
if err != nil {
return fls, 0, err
@ -634,8 +652,8 @@ func Select(fls files.Files, width, height int, selectall, once bool, workdir st
return m.selectedFiles(), m.mode, nil
}
func Show(fls files.Files, width, height int, once bool, workdir string) error {
mdl := newModel(fls, width, height, false, true, once, workdir, modes.Listing)
func Show(fls files.Files, once bool, workdir string) error {
mdl := newModel(fls, false, true, once, workdir, modes.Listing)
if _, err := tea.NewProgram(mdl).Run(); err != nil {
return err
}
@ -725,3 +743,14 @@ func isMatch(pattern, filename string) bool {
f := strings.ToLower(filename)
return fuzzy.Match(p, f)
}
func termSizes() (width int, height int) {
// read the term height and width for tables
var err error
width, height, err = term.GetSize(int(os.Stdout.Fd()))
if err != nil {
width = 80
height = 24
}
return
}

View file

@ -11,8 +11,6 @@ import (
"golang.org/x/term"
)
// TODO: use charm stuff for this
func YesNo(prompt string) bool {
return AskRune(prompt, "y/n") == 'y'
}

View file

@ -1,10 +1,16 @@
binary := "gt"
version := "0.0.1"
version := "0.0.2"
build_dir := "bin"
dist_dir := "dist"
cmd := "."
output := "." / build_dir / binary
dist := "." / dist_dir / binary
contrib_dir := "." / "contrib"
screenshots_dir := "screenshots"
archive_base := dist_dir / binary + "-" + version
linux_archive := archive_base + "-x86_64.tar"
arm64_archive := archive_base + "-arm64.tar"
arm_archive := archive_base + "-arm.tar"
# do the thing
default: test check install
@ -13,12 +19,24 @@ default: test check install
build:
go build -o {{output}} {{cmd}}
package:
go build -o {{binary}}
distrobox enter alpine -- go build -o {{binary}}-musl {{cmd}}
tar cafv {{dist_dir}}/{{binary}}-{{version}}-x86_64.tar.gz {{binary}} README.md LICENSE
tar cafv {{dist_dir}}/{{binary}}-{{version}}-x86_64-musl.tar.gz {{binary}}-musl README.md LICENSE
rm {{binary}} {{binary}}-musl
package $CGO_ENABLED="0": man
go build -o {{binary}} {{cmd}}
tar cafv {{linux_archive}} {{binary}} {{binary}}.1 README.md LICENSE {{screenshots_dir}}
tar rafv {{linux_archive}} -C {{contrib_dir}} "completions"
gzip -f {{linux_archive}}
rm {{binary}}
GOARCH="arm" GOARM="7" go build -o {{binary}} {{cmd}}
tar cafv {{arm_archive}} {{binary}} {{binary}}.1 README.md LICENSE {{screenshots_dir}}
tar rafv {{arm_archive}} -C {{contrib_dir}} "completions"
gzip -f {{arm_archive}}
rm {{binary}}
GOARCH="arm64" go build -o {{binary}} {{cmd}}
tar cafv {{arm64_archive}} {{binary}} {{binary}}.1 README.md LICENSE {{screenshots_dir}}
tar rafv {{arm64_archive}} -C {{contrib_dir}} "completions"
gzip -f {{arm64_archive}}
rm {{binary}}
# run from source
run:
@ -44,7 +62,6 @@ install-man:
# clean up after yourself
clean:
-rm {{output}}
-rm {{output}}-musl
-rm {{dist_dir}}/*.tar.gz
# run go tests

25
main.go
View file

@ -1,3 +1,4 @@
// Package main does the thing
package main
import (
@ -17,13 +18,12 @@ import (
"github.com/adrg/xdg"
"github.com/charmbracelet/log"
"github.com/urfave/cli/v2"
"golang.org/x/term"
)
const (
appname string = "gt"
appsubtitle string = "xdg trash cli"
appversion string = "v0.0.1"
appversion string = "v0.0.2"
appdesc string = `A small command line program to interface with the
Freedesktop.org / XDG trash specification.
@ -45,8 +45,6 @@ var (
askconfirm, all bool
workdir, ogdir cli.Path
recursive bool
termwidth int
termheight int
trashDir = filepath.Join(xdg.DataHome, "Trash")
@ -64,15 +62,6 @@ var (
log.Errorf("unknown log level '%s' (possible values: debug, info, warn, error, fatal, default: warn)", loglvl)
}
// read the term height and width for tables
width, height, e := term.GetSize(int(os.Stdout.Fd()))
if e != nil {
width = 80
height = 24
}
termwidth = width
termheight = height
// ensure trash directories exist
if _, e := os.Stat(trashDir); os.IsNotExist(e) {
if err := os.Mkdir(trashDir, executePerm); err != nil {
@ -132,7 +121,7 @@ var (
fmt.Fprintln(os.Stdout, msg)
return nil
}
selected, mode, err = interactive.Select(infiles, termwidth, termheight, false, false, workdir, modes.Interactive)
selected, mode, err = interactive.Select(infiles, false, false, workdir, modes.Interactive)
if err != nil {
return err
}
@ -233,7 +222,7 @@ var (
filesToTrash = append(filesToTrash, fls...)
}
selected, _, err := interactive.Select(filesToTrash, termwidth, termheight, false, false, workdir, modes.Trashing)
selected, _, err := interactive.Select(filesToTrash, false, false, workdir, modes.Trashing)
if err != nil {
return err
}
@ -272,7 +261,7 @@ var (
return err
}
return interactive.Show(fls, termwidth, termheight, noInterArg, workdir)
return interactive.Show(fls, noInterArg, workdir)
},
}
@ -294,7 +283,7 @@ var (
return err
}
selected, _, err := interactive.Select(fls, termwidth, termheight, all, all, workdir, modes.Restoring)
selected, _, err := interactive.Select(fls, all, all, workdir, modes.Restoring)
if err != nil {
return err
}
@ -323,7 +312,7 @@ var (
return err
}
selected, _, err := interactive.Select(fls, termwidth, termheight, all, all, workdir, modes.Cleaning)
selected, _, err := interactive.Select(fls, all, all, workdir, modes.Cleaning)
if err != nil {
return err
}

View file

Before

Width:  |  Height:  |  Size: 1.1 MiB

After

Width:  |  Height:  |  Size: 1.1 MiB

View file

Before

Width:  |  Height:  |  Size: 324 KiB

After

Width:  |  Height:  |  Size: 324 KiB