2023-01-02 16:36:52 +08:00
|
|
|
local Util = require("lazy.core.util")
|
2022-12-05 21:45:50 +08:00
|
|
|
local Config = require("lazy.core.config")
|
|
|
|
|
|
|
|
---@class LazyHandler
|
|
|
|
---@field type LazyHandlerTypes
|
|
|
|
---@field extends? LazyHandler
|
|
|
|
---@field active table<string,table<string,string>>
|
2022-12-16 16:13:08 +08:00
|
|
|
---@field super LazyHandler
|
2022-12-05 21:45:50 +08:00
|
|
|
local M = {}
|
|
|
|
|
|
|
|
---@enum LazyHandlerTypes
|
|
|
|
M.types = {
|
|
|
|
keys = "keys",
|
|
|
|
event = "event",
|
|
|
|
cmd = "cmd",
|
|
|
|
ft = "ft",
|
|
|
|
}
|
|
|
|
|
|
|
|
---@type table<string,LazyHandler>
|
|
|
|
M.handlers = {}
|
|
|
|
|
|
|
|
function M.setup()
|
|
|
|
for _, type in pairs(M.types) do
|
|
|
|
M.handlers[type] = M.new(type)
|
|
|
|
end
|
|
|
|
for _, plugin in pairs(Config.plugins) do
|
2023-01-02 16:36:52 +08:00
|
|
|
Util.try(function()
|
|
|
|
M.enable(plugin)
|
|
|
|
end, "Failed to setup handlers for " .. plugin.name)
|
2022-12-05 21:45:50 +08:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
---@param plugin LazyPlugin
|
|
|
|
function M.disable(plugin)
|
|
|
|
for type, handler in pairs(M.handlers) do
|
|
|
|
if plugin[type] then
|
|
|
|
handler:del(plugin)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
---@param plugin LazyPlugin
|
|
|
|
function M.enable(plugin)
|
|
|
|
if not plugin._.loaded then
|
|
|
|
for type, handler in pairs(M.handlers) do
|
|
|
|
if plugin[type] then
|
|
|
|
handler:add(plugin)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
---@param type LazyHandlerTypes
|
|
|
|
function M.new(type)
|
|
|
|
---@type LazyHandler
|
|
|
|
local handler = require("lazy.core.handler." .. type)
|
2022-12-16 16:13:08 +08:00
|
|
|
local super = handler.extends or M
|
|
|
|
local self = setmetatable({}, { __index = setmetatable(handler, { __index = super }) })
|
|
|
|
self.super = super
|
2022-12-05 21:45:50 +08:00
|
|
|
self.active = {}
|
|
|
|
self.type = type
|
|
|
|
return self
|
|
|
|
end
|
|
|
|
|
2023-01-16 17:16:35 +08:00
|
|
|
---@param _value string
|
2022-12-05 21:45:50 +08:00
|
|
|
---@protected
|
2023-01-16 17:16:35 +08:00
|
|
|
function M:_add(_value) end
|
2022-12-05 21:45:50 +08:00
|
|
|
|
2023-01-16 17:16:35 +08:00
|
|
|
---@param _value string
|
2022-12-05 21:45:50 +08:00
|
|
|
---@protected
|
2023-01-16 17:16:35 +08:00
|
|
|
function M:_del(_value) end
|
2022-12-23 04:58:01 +08:00
|
|
|
|
2022-12-05 21:45:50 +08:00
|
|
|
---@param plugin LazyPlugin
|
2023-01-16 17:16:35 +08:00
|
|
|
function M:values(plugin)
|
|
|
|
---@type table<string,any>
|
2023-01-11 20:43:57 +08:00
|
|
|
local values = {}
|
2023-01-16 17:16:35 +08:00
|
|
|
---@diagnostic disable-next-line: no-unknown
|
2022-12-16 16:13:08 +08:00
|
|
|
for _, value in ipairs(plugin[self.type] or {}) do
|
2023-01-16 17:16:35 +08:00
|
|
|
values[value] = value
|
2023-01-11 20:43:57 +08:00
|
|
|
end
|
2023-01-16 17:16:35 +08:00
|
|
|
return values
|
|
|
|
end
|
2023-01-11 20:43:57 +08:00
|
|
|
|
2023-01-16 17:16:35 +08:00
|
|
|
---@param plugin LazyPlugin
|
|
|
|
function M:add(plugin)
|
|
|
|
for key, value in pairs(self:values(plugin)) do
|
2022-12-23 04:58:01 +08:00
|
|
|
if not self.active[key] then
|
|
|
|
self.active[key] = {}
|
2022-12-16 16:13:08 +08:00
|
|
|
self:_add(value)
|
2022-12-05 21:45:50 +08:00
|
|
|
end
|
2022-12-23 04:58:01 +08:00
|
|
|
self.active[key][plugin.name] = plugin.name
|
2022-12-16 16:13:08 +08:00
|
|
|
end
|
2022-12-05 21:45:50 +08:00
|
|
|
end
|
|
|
|
|
|
|
|
---@param plugin LazyPlugin
|
|
|
|
function M:del(plugin)
|
2023-01-16 17:16:35 +08:00
|
|
|
for key, value in pairs(self:values(plugin)) do
|
2022-12-23 04:58:01 +08:00
|
|
|
if self.active[key] and self.active[key][plugin.name] then
|
|
|
|
self.active[key][plugin.name] = nil
|
|
|
|
if vim.tbl_isempty(self.active[key]) then
|
2022-12-16 16:13:08 +08:00
|
|
|
self:_del(value)
|
2022-12-23 04:58:01 +08:00
|
|
|
self.active[key] = nil
|
2022-12-16 16:13:08 +08:00
|
|
|
end
|
2022-12-05 21:45:50 +08:00
|
|
|
end
|
2022-12-16 16:13:08 +08:00
|
|
|
end
|
2022-12-05 21:45:50 +08:00
|
|
|
end
|
|
|
|
|
|
|
|
return M
|