Initial commit
commit
8cf45e08ef
|
|
@ -0,0 +1,6 @@
|
|||
{
|
||||
"diagnostics.disable": [
|
||||
"unused-function",
|
||||
"unused-local"
|
||||
]
|
||||
}
|
||||
|
|
@ -0,0 +1,82 @@
|
|||
local selected_or_hovered = ya.sync(function()
|
||||
local tab, urls = cx.active, {}
|
||||
for _, u in pairs(tab.selected) do
|
||||
urls[#urls + 1] = { name = u:name(), url = tostring(u) }
|
||||
end
|
||||
if #urls == 0 and tab.current.hovered then
|
||||
urls[1] = { name = tab.current.hovered.url:name(), url = tostring(tab.current.hovered.url) }
|
||||
end
|
||||
return urls
|
||||
end)
|
||||
|
||||
local confirm_remove = function(file)
|
||||
local title = 'Remove "' .. file.name .. '"? y/n/a/c '
|
||||
local w = #title
|
||||
local val, event = ya.input({
|
||||
title = title,
|
||||
value = "y",
|
||||
position = { "top-center", w = w },
|
||||
})
|
||||
|
||||
if event ~= 1 then
|
||||
return "n"
|
||||
end
|
||||
if val == "y" then
|
||||
return "y"
|
||||
elseif val == "a" then
|
||||
return "a"
|
||||
elseif val == "n" then
|
||||
return "n"
|
||||
else
|
||||
return "c"
|
||||
end
|
||||
end
|
||||
|
||||
local remove_file = function(file)
|
||||
local notify_success = function(name)
|
||||
ya.notify({
|
||||
title = "Rip File",
|
||||
content = "Burried " .. name,
|
||||
timeout = 2,
|
||||
})
|
||||
end
|
||||
local notify_error = function(name)
|
||||
ya.notify({
|
||||
title = "Rip File",
|
||||
content = "Error removing " .. name,
|
||||
timeout = 2,
|
||||
})
|
||||
end
|
||||
|
||||
local status, err = Command("rip"):arg(file.url):status()
|
||||
if not status or status.code ~= 0 then
|
||||
notify_error(file.name)
|
||||
else
|
||||
notify_success(file.name)
|
||||
end
|
||||
end
|
||||
|
||||
return {
|
||||
entry = function()
|
||||
ya.manager_emit("escape", { visual = true })
|
||||
|
||||
local files = selected_or_hovered()
|
||||
local confirm_all = false
|
||||
|
||||
for _, file in ipairs(files) do
|
||||
if not confirm_all then
|
||||
local should_remove = confirm_remove(file)
|
||||
if should_remove == "n" then
|
||||
goto continue
|
||||
elseif should_remove ~= "y" and should_remove ~= "a" then
|
||||
return
|
||||
elseif should_remove == "a" then
|
||||
confirm_all = true
|
||||
end
|
||||
end
|
||||
|
||||
remove_file(file)
|
||||
::continue::
|
||||
end
|
||||
end,
|
||||
}
|
||||
Loading…
Reference in New Issue