diff options
author | Adam <adamdharrison@gmail.com> | 2022-09-18 18:16:48 -0400 |
---|---|---|
committer | Adam <adamdharrison@gmail.com> | 2022-09-18 18:16:48 -0400 |
commit | a1feb9696cbbffc3ba061dcffc5a0ada9891fb22 (patch) | |
tree | 8cc4cc473e9d7e2e91f862e875d61a32de5fecb7 /plugins | |
parent | da37e3ed1e11853c5133c9851a4fc2dbf2ca8872 (diff) | |
download | lite-xl-plugin-manager-a1feb9696cbbffc3ba061dcffc5a0ada9891fb22.tar.gz lite-xl-plugin-manager-a1feb9696cbbffc3ba061dcffc5a0ada9891fb22.zip |
Probably last update before release.
Diffstat (limited to 'plugins')
-rw-r--r-- | plugins/plugin_manager/init.lua | 76 | ||||
-rw-r--r-- | plugins/plugin_manager/plugin_view.lua | 20 |
2 files changed, 73 insertions, 23 deletions
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 { |