yazi/yazi-plugin/preset/components/parent.lua
2024-10-30 19:06:06 +08:00

48 lines
848 B
Lua

Parent = {
_id = "parent",
}
function Parent:new(area, tab)
return setmetatable({
_area = area,
_tab = tab,
_folder = tab.parent,
}, { __index = self })
end
function Parent:reflow() return { self } end
function Parent:redraw()
if not self._folder then
return {}
end
local entities = {}
for _, f in ipairs(self._folder.window) do
entities[#entities + 1] = Entity:new(f):redraw()
end
return {
ui.List(entities):area(self._area),
}
end
-- Mouse events
function Parent:click(event, up)
if up or not event.is_left then
return
end
local y = event.y - self._area.y + 1
local window = self._folder and self._folder.window or {}
if window[y] then
ya.manager_emit("reveal", { window[y].url })
else
ya.manager_emit("leave", {})
end
end
function Parent:scroll(event, step) end
function Parent:touch(event, step) end