mirror of
https://github.com/sxyazi/yazi.git
synced 2024-12-19 06:41:35 +03:00
49 lines
1.2 KiB
Lua
49 lines
1.2 KiB
Lua
local M = {}
|
|
|
|
function M:peek()
|
|
local cache = ya.file_cache(self)
|
|
if not cache then
|
|
return
|
|
end
|
|
|
|
if self:preload() == 1 then
|
|
ya.image_show(cache, self.area)
|
|
ya.preview_widgets(self, {})
|
|
end
|
|
end
|
|
|
|
function M:seek(units)
|
|
local h = cx.active.current.hovered
|
|
if h and h.url == self.file.url then
|
|
local step = ya.clamp(-1, units, 1)
|
|
ya.manager_emit("peek", { tostring(math.max(0, cx.active.preview.skip + step)), only_if = tostring(self.file.url) })
|
|
end
|
|
end
|
|
|
|
function M:preload()
|
|
local cache = ya.file_cache(self)
|
|
if not cache or fs.symlink_metadata(cache) then
|
|
return 1
|
|
end
|
|
|
|
local output = Command("pdftoppm")
|
|
:args({ "-singlefile", "-jpeg", "-jpegopt", "quality=75", "-f", tostring(self.skip + 1), tostring(self.file.url) })
|
|
:stdout(Command.PIPED)
|
|
:stderr(Command.PIPED)
|
|
:output()
|
|
|
|
if not output then
|
|
return 0
|
|
elseif not output.status:success() then
|
|
local pages = tonumber(output.stderr:match("the last page %((%d+)%)")) or 0
|
|
if self.skip > 0 and pages > 0 then
|
|
ya.manager_emit("peek", { tostring(math.max(0, pages - 1)), only_if = tostring(self.file.url), upper_bound = "" })
|
|
end
|
|
return 0
|
|
end
|
|
|
|
return fs.write(cache, output.stdout) and 1 or 2
|
|
end
|
|
|
|
return M
|