mirror of
https://github.com/sxyazi/yazi.git
synced 2026-05-13 08:16:40 +00:00
64 lines
1.5 KiB
Lua
64 lines
1.5 KiB
Lua
local M = {}
|
|
|
|
function M:peek(job)
|
|
local start, cache = os.clock(), ya.file_cache(job)
|
|
if not cache then
|
|
return
|
|
end
|
|
|
|
local ok, err = self:preload(job)
|
|
if not ok or err then
|
|
return
|
|
end
|
|
|
|
ya.sleep(math.max(0, rt.preview.image_delay / 1000 + start - os.clock()))
|
|
|
|
local _, err = ya.image_show(cache, job.area)
|
|
ya.preview_widget(job, err and ui.Text(tostring(err)):area(job.area):wrap(ui.Text.WRAP))
|
|
end
|
|
|
|
function M:seek() end
|
|
|
|
function M:preload(job)
|
|
local cache = ya.file_cache(job)
|
|
if not cache or fs.cha(cache) then
|
|
return true
|
|
end
|
|
|
|
local cmd = M.with_limit()
|
|
if job.args.flatten then
|
|
cmd = cmd:arg("-flatten")
|
|
end
|
|
|
|
-- stylua: ignore
|
|
local status, err = cmd:args {
|
|
tostring(job.file.url), "-auto-orient", "-strip",
|
|
"-sample", string.format("%dx%d>", rt.preview.max_width, rt.preview.max_height),
|
|
"-quality", rt.preview.image_quality,
|
|
string.format("JPG:%s", cache),
|
|
}:status()
|
|
|
|
if status then
|
|
return status.success
|
|
else
|
|
return true, Err("Failed to start `magick`, error: %s", err)
|
|
end
|
|
end
|
|
|
|
function M:spot(job) require("file"):spot(job) end
|
|
|
|
function M.with_limit()
|
|
local cmd = Command("magick"):args { "-limit", "thread", 1 }
|
|
if rt.tasks.image_alloc > 0 then
|
|
cmd = cmd:args({ "-limit", "memory", rt.tasks.image_alloc }):args { "-limit", "disk", "1MiB" }
|
|
end
|
|
if rt.tasks.image_bound[1] > 0 then
|
|
cmd = cmd:args { "-limit", "width", rt.tasks.image_bound[1] }
|
|
end
|
|
if rt.tasks.image_bound[2] > 0 then
|
|
cmd = cmd:args { "-limit", "height", rt.tasks.image_bound[2] }
|
|
end
|
|
return cmd
|
|
end
|
|
|
|
return M
|