Files
community-plugins/zed-provider/zed_provider.luau
T
dd5d67b1e3 Add Zed Provider launcher plugin (#17)
* Add Zed Provider launcher plugin.

Expose recent Zed workspaces in the launcher so users can reopen projects quickly.

* Update Zed Provider thumbnail with launcher screenshot.

Use the official Noctalia thumbnail generator export for the plugin card.

* Address PR review feedback for Zed Provider.

Fix thumbnail category label, refresh project cache when the query is cleared,
and use noctalia.fuzzyScore for launcher filtering.

* fix(zed-provider): update thumbnail with launcher category label

* chore(zed-provider): reset manifest version to 1.0.0

* docs(zed-provider): align README with plugin documentation requirements

* fix(zed-provider): replace min_noctalia with plugin_api

* Add 'nohup' to plugin dependencies

---------

Co-authored-by: Lemmy <studio@quadbyte.net>
2026-07-17 20:31:04 -04:00

125 lines
2.9 KiB
Luau

--!nonstrict
local cachedProjects = nil
local function getDbPath()
local configured = noctalia.getConfig("db_path")
if type(configured) == "string" and configured ~= "" then
return noctalia.expandPath(configured)
end
return noctalia.expandPath("~/.local/share/zed/db/0-stable/db.sqlite")
end
local function getMaxResults()
local n = noctalia.getConfig("max_results")
return (type(n) == "number" and n > 0) and math.floor(n) or 20
end
local function trim(s)
return s:match("^%s*(.-)%s*$")
end
local function projectName(path)
return path:match("([^/]+)$") or path
end
local function shellQuote(s)
return "'" .. s:gsub("'", "'\"'\"'") .. "'"
end
local function loadProjects(onDone)
local db = getDbPath()
local limit = getMaxResults()
local sql = string.format(
"SELECT DISTINCT paths FROM workspaces WHERE paths IS NOT NULL AND paths != '' AND remote_connection_id IS NULL ORDER BY timestamp DESC LIMIT %d;",
limit
)
local cmd = string.format("sqlite3 -separator '\\n' %s %s 2>/dev/null", shellQuote(db), shellQuote(sql))
noctalia.runAsync(cmd, function(result)
local projects = {}
if result.exitCode == 0 and type(result.stdout) == "string" then
for line in result.stdout:gmatch("[^\n]+") do
local path = trim(line)
if path ~= "" then
table.insert(projects, path)
end
end
end
cachedProjects = projects
onDone(projects)
end)
end
local function makeRows(projects, filter)
local home = noctalia.getenv("HOME") or ""
local rows = {}
for _, path in projects do
local name = projectName(path)
local score = filter == "" and 0 or noctalia.fuzzyScore(filter, name)
if score == nil then
score = noctalia.fuzzyScore(filter, path)
end
if filter == "" or score ~= nil then
local display = (home ~= "" and path:sub(1, #home) == home) and "~" .. path:sub(#home + 1) or path
table.insert(rows, {
id = path,
title = name,
subtitle = display,
icon = "zed",
score = filter == "" and nil or score,
})
end
end
return rows
end
local function showResults(query, projects, filter)
local rows = makeRows(projects, filter)
if #rows == 0 then
launcher.setResults(query, {
{
id = "",
title = noctalia.tr("no-projects-found"),
subtitle = filter ~= "" and noctalia.tr("filter-empty", { filter = filter }) or noctalia.tr("database-empty"),
glyph = "folder-x",
},
})
else
launcher.setResults(query, rows)
end
end
function onQuery(query)
local filter = trim(query)
if filter == "" then
cachedProjects = nil
end
if cachedProjects then
showResults(query, cachedProjects, filter)
return
end
launcher.setResults(query, {
{
id = "",
title = noctalia.tr("loading"),
subtitle = noctalia.tr("loading-subtitle"),
glyph = "loader",
},
})
loadProjects(function(projects)
showResults(query, projects, filter)
end)
end
function onActivate(id)
if id == "" then
return
end
noctalia.runAsync(string.format("nohup zeditor %s &>/dev/null &", shellQuote(id)))
end