1
0
Fork 0

go back to a more elegant and consistent look, while merging some of the ideas of the previous one

This commit is contained in:
Peter Domínguez 2025-06-02 11:00:24 -04:00
parent 5a600d1cdc
commit 2b59f0f44d
3 changed files with 83 additions and 23 deletions

View file

@ -2,13 +2,13 @@ local M = {}
function M:peek(job)
local child = Command("ouch")
:args({ "l", "-t", "-y", tostring(job.file.url) })
:arg({ "l", "-t", "-y", tostring(job.file.url) })
:stdout(Command.PIPED)
:stderr(Command.PIPED)
:spawn()
local limit = job.area.h
local file_name = string.match(tostring(job.file.url), ".*[/\\](.*)")
local lines = string.format("📁 \x1b[2m%s\x1b[0m\n", file_name)
local lines = string.format("\u{1f4c1} %s\n", file_name)
local num_lines = 1
local num_skip = 0
repeat
@ -31,12 +31,12 @@ function M:peek(job)
child:start_kill()
if job.skip > 0 and num_lines < limit then
ya.manager_emit(
ya.emit(
"peek",
{ tostring(math.max(0, job.skip - (limit - num_lines))), only_if = tostring(job.file.url), upper_bound = "" }
)
else
ya.preview_widgets(job, { ui.Text(lines):area(job.area) })
ya.preview_widget(job, { ui.Text(lines):area(job.area) })
end
end
@ -44,7 +44,7 @@ function M:seek(job)
local h = cx.active.current.hovered
if h and h.url == job.file.url then
local step = math.floor(job.units * job.area.h / 10)
ya.manager_emit("peek", {
ya.emit("peek", {
math.max(0, cx.active.preview.skip + step),
only_if = tostring(job.file.url),
})
@ -81,15 +81,15 @@ local get_compression_target = ya.sync(function()
table.insert(paths, tostring(url))
end
-- The compression targets are aquired, now unselect them
ya.manager_emit("escape", {})
ya.emit("escape", {})
end
return paths, default_name
end)
local function invoke_compress_command(paths, name)
local cmd_output, err_code = Command("ouch")
:args({ "c", "-y" })
:args(paths)
:arg({ "c", "-y" })
:arg(paths)
:arg(name)
:stderr(Command.PIPED)
:output()
@ -116,7 +116,7 @@ function M:entry(job)
default_fmt = "zip"
end
ya.manager_emit("escape", { visual = true })
ya.emit("escape", { visual = true })
-- Get the files that need to be compressed and infer a default archive name
local paths, default_name = get_compression_target()