aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAdam <adamdharrison@gmail.com>2022-09-18 18:16:48 -0400
committerAdam <adamdharrison@gmail.com>2022-09-18 18:16:48 -0400
commita1feb9696cbbffc3ba061dcffc5a0ada9891fb22 (patch)
tree8cc4cc473e9d7e2e91f862e875d61a32de5fecb7
parentda37e3ed1e11853c5133c9851a4fc2dbf2ca8872 (diff)
downloadlite-xl-plugin-manager-a1feb9696cbbffc3ba061dcffc5a0ada9891fb22.tar.gz
lite-xl-plugin-manager-a1feb9696cbbffc3ba061dcffc5a0ada9891fb22.zip
Probably last update before release.
-rw-r--r--lpm.lua2
-rw-r--r--plugins/plugin_manager/init.lua76
-rw-r--r--plugins/plugin_manager/plugin_view.lua20
3 files changed, 74 insertions, 24 deletions
diff --git a/lpm.lua b/lpm.lua
index cab07c3..d13d89b 100644
--- a/lpm.lua
+++ b/lpm.lua
@@ -967,7 +967,7 @@ end
local function lpm_repo_list()
if JSON then
- io.stdout:write(json.encode({ repositories = common.map(repositories, function(repo) return { remote = repo.remote, commit = repo.commit, branch = repo.branch, path = repo.local_path .. PATHSEP .. (repo.commit or repo.branch), remotes = common.map(repository.remotes or {}, function(r) return remote.remote .. ":" .. (remote.commit or remote.branch) end) } end) }) .. "\n")
+ io.stdout:write(json.encode({ repositories = common.map(repositories, function(repo) return { remote = repo.remote, commit = repo.commit, branch = repo.branch, path = repo.local_path .. PATHSEP .. (repo.commit or repo.branch), remotes = common.map(repo.remotes or {}, function(r) return remote.remote .. ":" .. (remote.commit or remote.branch) end) } end) }) .. "\n")
else
for i, repository in ipairs(repositories) do
local _, remotes = repository:parse_manifest()
diff --git a/plugins/plugin_manager/init.lua b/plugins/plugin_manager/init.lua
index 97ec914..0520030 100644
--- a/plugins/plugin_manager/init.lua
+++ b/plugins/plugin_manager/init.lua
@@ -1,4 +1,4 @@
--- mod-version:3 --lite-xl 2.1
+-- mod-version:3 --lite-xl 2.1 --priority:5
local core = require "core"
local common = require "core.common"
@@ -25,9 +25,11 @@ config.plugins.plugin_manager = common.merge({
-- Whether or not to force install things.
force = false,
-- Dumps commands that run to stdout, as well as responses from lpm.
- debug = true
+ debug = false
}, config.plugins.plugin_manager)
+package.path = package.path .. ";" .. USERDIR .. "libraries/?.lua" .. ";" .. USERDIR .. "libraries/?/init.lua"
+
if not config.plugins.plugin_manager.lpm_binary_path then
local paths = {
DATADIR .. PATHSEP .. "plugins" .. PATHSEP .. "plugin_manager" .. PATHSEP .. config.plugins.plugin_manager.lpm_binary_name,
@@ -73,7 +75,7 @@ local function run(cmd)
table.insert(cmd, "--assume-yes")
if config.plugins.plugin_manager.force then table.insert(cmd, "--force") end
local proc = process.start(cmd)
- if config.plugins.plugin_manager.debug then for i, v in ipairs(cmd) do print((i > 1 and " " or "") .. v) end end
+ if config.plugins.plugin_manager.debug then for i, v in ipairs(cmd) do io.stdout:write((i > 1 and " " or "") .. v) end io.stdout:write("\n") end
local promise = Promise.new()
table.insert(running_processes, { proc, promise, "" })
if #running_processes == 1 then
@@ -119,7 +121,8 @@ end
function PluginManager:refresh()
- return run({ "plugin", "list" }):done(function(plugins)
+ local prom = Promise.new()
+ run({ "plugin", "list" }):done(function(plugins)
self.plugins = json.decode(plugins)["plugins"]
table.sort(self.plugins, function(a,b) return a.name < b.name end)
self.valid_plugins = {}
@@ -129,7 +132,12 @@ function PluginManager:refresh()
end
end
self.last_refresh = os.time()
+ prom:resolve(plugins)
+ run({ "repo", "list" }):done(function(repositories)
+ self.repositories = repositories
+ end)
end)
+ return prom
end
@@ -172,22 +180,7 @@ function PluginManager:uninstall(plugin)
end
-local function get_suggestions(text)
- local items = {}
- if not PluginManager.plugins then return end
- for i, plugin in ipairs(PluginManager.plugins) do
- if not plugin.mod_version or tostring(plugin.mod_version) == tostring(MOD_VERSION) then
- table.insert(items, plugin.name .. ":" .. plugin.version)
- end
- end
- return common.fuzzy_match(items, text)
-end
-
command.add(nil, {
- ["plugin-manager:show"] = function()
- local node = core.root_view:get_active_node_default()
- node:add_view(PluginView())
- end,
["plugin-manager:install"] = function()
core.command_view:enter("Enter plugin name",
function(name)
@@ -196,7 +189,16 @@ command.add(nil, {
core.log("Successfully installed plugin " .. name .. ".")
end)
end,
- function(text) return get_suggestions(text) end
+ function(text)
+ local items = {}
+ if not PluginManager.plugins then return end
+ for i, plugin in ipairs(PluginManager.plugins) do
+ if not plugin.mod_version or tostring(plugin.mod_version) == tostring(MOD_VERSION) then
+ table.insert(items, plugin.name .. ":" .. plugin.version)
+ end
+ end
+ return common.fuzzy_match(items, text)
+ end
)
end,
["plugin-manager:remove"] = function()
@@ -207,7 +209,38 @@ command.add(nil, {
core.log("Successfully removed plugin " .. name .. ".")
end)
end,
- function(text) return get_suggestions(PluginManager.local_plugins, text) end
+ function(text)
+ local items = {}
+ if not PluginManager.plugins then return end
+ for i, plugin in ipairs(PluginManager.plugins) do
+ if plugin.status == "installed" then
+ table.insert(items, plugin.name .. ":" .. plugin.version)
+ end
+ end
+ return common.fuzzy_match(items, text)
+ end
+ )
+ end,
+ ["plugin-manager:add-repository"] = function()
+ core.command_view:enter("Enter repository url",
+ function(url)
+ PluginManager:add(url):done(function()
+ core.log("Successfully added repository " .. url .. ".")
+ end)
+ end,
+ function(text) return get_suggestions(text) end
+ )
+ end,
+ ["plugin-manager:remove-repository"] = function()
+ core.command_view:enter("Enter repository url",
+ function(url)
+ PluginManager:add(url):done(function()
+ core.log("Successfully removed repository " .. url .. ".")
+ end)
+ end,
+ function(text)
+ return get_suggestions(text)
+ end
)
end,
["plugin-manager:refresh"] = function() PluginManager:refresh():done(function() core.log("Successfully refreshed plugin listing.") end) end,
@@ -217,6 +250,7 @@ PluginManager.promise = Promise
PluginManager.initialized = Promise.new()
PluginManager:refresh():done(function()
PluginManager.initialized:resolve()
+ PluginManager.view = require "plugins.plugin_manager.plugin_view"
end)
diff --git a/plugins/plugin_manager/plugin_view.lua b/plugins/plugin_manager/plugin_view.lua
index f661b00..7e7f04d 100644
--- a/plugins/plugin_manager/plugin_view.lua
+++ b/plugins/plugin_manager/plugin_view.lua
@@ -26,7 +26,8 @@ PluginView.menu = ContextMenu()
PluginView.menu:register(nil, {
{ text = "Install", command = "plugin-manager:install-hovered" },
- { text = "Uninstall", command = "plugin-manager:uninstall-hovered" }
+ { text = "Uninstall", command = "plugin-manager:uninstall-hovered" },
+ { text = "View Source", command = "plugin-manager:view-source-hovered" }
})
function PluginView:new()
@@ -189,7 +190,6 @@ command.add(nil, {
end
})
-
command.add(PluginView, {
["plugin-manager:select"] = function(x, y)
plugin_view.selected_plugin, plugin_view.selected_plugin_idx = plugin_view.hovered_plugin, plugin_view.hovered_plugin_idx
@@ -215,6 +215,22 @@ command.add(function()
end, {
["plugin-manager:uninstall-hovered"] = function() plugin_view:uninstall(plugin_view.hovered_plugin) end
})
+command.add(function()
+ return core.active_view and core.active_view:is(PluginView) and plugin_view.hovered_plugin and plugin_view.hovered_plugin.status == "installed"
+end, {
+ ["plugin-manager:view-source-hovered"] = function()
+ local directory = plugin_view.hovered_plugin.type == "library" and "libraries" or "plugins"
+ local opened = false
+ for i, path in ipairs({ USERDIR .. PATHSEP .. directory .. PATHSEP .. plugin_view.hovered_plugin.name .. ".lua", USERDIR .. PATHSEP .. directory .. PATHSEP .. plugin_view.hovered_plugin.name .. PATHSEP .. "init.lua" }) do
+ local stat = system.get_file_info(path)
+ if stat and stat.type == "file" then
+ core.root_view:open_doc(core.open_doc(path))
+ opened = true
+ end
+ end
+ if not opened then core.error("Can't find source for plugin.") end
+ end
+})
keymap.add {