2022-11-23 04:28:08 +08:00
|
|
|
|
local Config = require("lazy.core.config")
|
2022-11-25 05:06:05 +08:00
|
|
|
|
local Util = require("lazy.util")
|
2022-11-21 05:33:47 +08:00
|
|
|
|
local Sections = require("lazy.view.sections")
|
2022-11-27 18:03:17 +08:00
|
|
|
|
local Handler = require("lazy.core.handler")
|
2022-11-28 18:36:12 +08:00
|
|
|
|
local Git = require("lazy.manage.git")
|
2022-12-02 16:22:43 +08:00
|
|
|
|
local Plugin = require("lazy.core.plugin")
|
2022-11-21 05:33:47 +08:00
|
|
|
|
|
|
|
|
|
local Text = require("lazy.view.text")
|
|
|
|
|
|
2022-11-23 23:12:02 +08:00
|
|
|
|
---@alias LazyDiagnostic {row: number, severity: number, message:string}
|
|
|
|
|
|
2022-11-21 05:33:47 +08:00
|
|
|
|
---@class Render:Text
|
|
|
|
|
---@field buf buffer
|
|
|
|
|
---@field win window
|
|
|
|
|
---@field plugins LazyPlugin[]
|
|
|
|
|
---@field progress {total:number, done:number}
|
2022-11-23 23:12:02 +08:00
|
|
|
|
---@field _diagnostics LazyDiagnostic[]
|
|
|
|
|
---@field plugin_range table<string, {from: number, to: number}>
|
|
|
|
|
---@field _details? string
|
2022-12-01 20:56:41 +08:00
|
|
|
|
local M = setmetatable({}, { __index = Text })
|
2022-11-21 05:33:47 +08:00
|
|
|
|
|
2022-11-23 23:12:02 +08:00
|
|
|
|
function M.new(buf, win, padding)
|
2022-11-21 05:34:55 +08:00
|
|
|
|
local self = setmetatable({}, { __index = M })
|
|
|
|
|
self.buf = buf
|
|
|
|
|
self.win = win
|
2022-11-23 23:12:02 +08:00
|
|
|
|
self.padding = padding or 0
|
|
|
|
|
return self
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
function M:update()
|
|
|
|
|
self._lines = {}
|
|
|
|
|
self._diagnostics = {}
|
|
|
|
|
self.plugin_range = {}
|
2022-11-21 07:27:28 +08:00
|
|
|
|
|
2022-11-21 05:34:55 +08:00
|
|
|
|
self.plugins = vim.tbl_values(Config.plugins)
|
2022-11-25 05:06:05 +08:00
|
|
|
|
vim.list_extend(self.plugins, vim.tbl_values(Config.to_clean))
|
2022-11-21 05:34:55 +08:00
|
|
|
|
table.sort(self.plugins, function(a, b)
|
|
|
|
|
return a.name < b.name
|
|
|
|
|
end)
|
|
|
|
|
|
|
|
|
|
self.progress = {
|
|
|
|
|
total = 0,
|
|
|
|
|
done = 0,
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
for _, plugin in ipairs(self.plugins) do
|
2022-11-28 18:19:50 +08:00
|
|
|
|
if plugin._.tasks then
|
|
|
|
|
for _, task in ipairs(plugin._.tasks) do
|
2022-11-21 05:34:55 +08:00
|
|
|
|
self.progress.total = self.progress.total + 1
|
2022-11-28 18:04:32 +08:00
|
|
|
|
if not task:is_running() then
|
2022-11-21 05:34:55 +08:00
|
|
|
|
self.progress.done = self.progress.done + 1
|
|
|
|
|
end
|
|
|
|
|
end
|
|
|
|
|
end
|
|
|
|
|
end
|
|
|
|
|
|
2022-11-29 17:30:14 +08:00
|
|
|
|
local mode = self:title()
|
2022-11-21 05:34:55 +08:00
|
|
|
|
|
2022-11-29 17:30:14 +08:00
|
|
|
|
if mode == "help" then
|
|
|
|
|
self:help()
|
2022-11-29 19:02:25 +08:00
|
|
|
|
elseif mode == "profile" then
|
|
|
|
|
self:profile()
|
2022-11-29 17:30:14 +08:00
|
|
|
|
else
|
|
|
|
|
for _, section in ipairs(Sections) do
|
|
|
|
|
self:section(section)
|
|
|
|
|
end
|
2022-11-21 05:34:55 +08:00
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
self:trim()
|
2022-11-23 23:12:02 +08:00
|
|
|
|
self:render(self.buf)
|
|
|
|
|
vim.diagnostic.set(
|
|
|
|
|
Config.ns,
|
|
|
|
|
self.buf,
|
|
|
|
|
---@param diag LazyDiagnostic
|
|
|
|
|
vim.tbl_map(function(diag)
|
|
|
|
|
diag.col = 0
|
|
|
|
|
diag.lnum = diag.row - 1
|
|
|
|
|
return diag
|
|
|
|
|
end, self._diagnostics),
|
|
|
|
|
{ signs = false }
|
|
|
|
|
)
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
---@param row number
|
|
|
|
|
---@return LazyPlugin?
|
|
|
|
|
function M:get_plugin(row)
|
|
|
|
|
for name, range in pairs(self.plugin_range) do
|
|
|
|
|
if row >= range.from and row <= range.to then
|
|
|
|
|
return Config.plugins[name]
|
|
|
|
|
end
|
|
|
|
|
end
|
2022-11-21 05:33:47 +08:00
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
function M:title()
|
2022-11-29 17:30:14 +08:00
|
|
|
|
self:append(" lazy.nvim ", "LazyH1"):center():nl()
|
2022-11-30 02:51:37 +08:00
|
|
|
|
self:append("press "):append("<?>", "LazySpecial"):append(" for help"):center():nl()
|
2022-11-29 17:30:14 +08:00
|
|
|
|
self:append("https://github.com/folke/lazy.nvim", "LazyMuted"):center():nl()
|
|
|
|
|
|
|
|
|
|
local View = require("lazy.view")
|
|
|
|
|
for _, mode in ipairs(View.modes) do
|
2022-11-29 17:56:17 +08:00
|
|
|
|
if not mode.hide and not mode.plugin then
|
2022-11-29 17:30:14 +08:00
|
|
|
|
local title = " " .. mode.name:sub(1, 1):upper() .. mode.name:sub(2) .. " (" .. mode.key .. ") "
|
|
|
|
|
self:append(title, View.mode == mode.name and "LazyButtonActive" or "LazyButton"):append(" ")
|
|
|
|
|
end
|
|
|
|
|
end
|
|
|
|
|
self:nl()
|
2022-11-21 05:34:55 +08:00
|
|
|
|
if self.progress.done < self.progress.total then
|
|
|
|
|
self:progressbar()
|
|
|
|
|
end
|
|
|
|
|
self:nl()
|
2022-11-29 17:30:14 +08:00
|
|
|
|
|
2022-11-29 19:02:25 +08:00
|
|
|
|
if View.mode ~= "help" and View.mode ~= "profile" then
|
2022-11-29 17:30:14 +08:00
|
|
|
|
if self.progress.done < self.progress.total then
|
|
|
|
|
self:append("Tasks: ", "LazyH2")
|
|
|
|
|
self:append(self.progress.done .. "/" .. self.progress.total, "LazyMuted")
|
|
|
|
|
else
|
|
|
|
|
self:append("Total: ", "LazyH2")
|
|
|
|
|
self:append(#self.plugins .. " plugins", "LazyMuted")
|
|
|
|
|
end
|
|
|
|
|
self:nl():nl()
|
|
|
|
|
end
|
|
|
|
|
return View.mode
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
function M:help()
|
|
|
|
|
local View = require("lazy.view")
|
|
|
|
|
self:append("Help", "LazyH2"):nl():nl()
|
|
|
|
|
|
|
|
|
|
self:append("Keyboard Shortcuts", "LazyH2"):nl()
|
|
|
|
|
for _, mode in ipairs(View.modes) do
|
|
|
|
|
local title = mode.name:sub(1, 1):upper() .. mode.name:sub(2)
|
|
|
|
|
self:append("- ", "LazySpecial", { indent = 2 })
|
|
|
|
|
self:append(title, "Title"):append(" <" .. mode.key .. "> ", "LazyKey")
|
|
|
|
|
self:append(mode.desc or ""):nl()
|
|
|
|
|
end
|
2022-11-21 05:33:47 +08:00
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
function M:progressbar()
|
2022-11-21 05:34:55 +08:00
|
|
|
|
local width = vim.api.nvim_win_get_width(self.win) - 2 * self.padding
|
|
|
|
|
local done = math.floor((self.progress.done / self.progress.total) * width + 0.5)
|
2022-11-29 17:30:14 +08:00
|
|
|
|
if self.progress.done == self.progress.total then
|
|
|
|
|
done = 0
|
|
|
|
|
end
|
2022-11-21 05:34:55 +08:00
|
|
|
|
self:append("", {
|
|
|
|
|
virt_text_win_col = self.padding,
|
|
|
|
|
virt_text = { { string.rep("─", done), "LazyProgressDone" } },
|
|
|
|
|
})
|
|
|
|
|
self:append("", {
|
|
|
|
|
virt_text_win_col = done + self.padding,
|
|
|
|
|
virt_text = { { string.rep("─", width - done), "LazyProgressTodo" } },
|
|
|
|
|
})
|
2022-11-21 05:33:47 +08:00
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
---@param section LazySection
|
|
|
|
|
function M:section(section)
|
2022-11-21 05:34:55 +08:00
|
|
|
|
---@type LazyPlugin[]
|
|
|
|
|
local section_plugins = {}
|
|
|
|
|
---@param plugin LazyPlugin
|
|
|
|
|
self.plugins = vim.tbl_filter(function(plugin)
|
|
|
|
|
if section.filter(plugin) then
|
|
|
|
|
table.insert(section_plugins, plugin)
|
|
|
|
|
return false
|
|
|
|
|
end
|
|
|
|
|
return true
|
|
|
|
|
end, self.plugins)
|
|
|
|
|
|
|
|
|
|
local count = #section_plugins
|
|
|
|
|
if count > 0 then
|
|
|
|
|
self:append(section.title, "LazyH2"):append(" (" .. count .. ")", "LazyMuted"):nl()
|
|
|
|
|
for _, plugin in ipairs(section_plugins) do
|
|
|
|
|
self:plugin(plugin)
|
|
|
|
|
end
|
|
|
|
|
self:nl()
|
|
|
|
|
end
|
2022-11-21 05:33:47 +08:00
|
|
|
|
end
|
|
|
|
|
|
2022-11-23 23:12:02 +08:00
|
|
|
|
---@param diag LazyDiagnostic
|
|
|
|
|
function M:diagnostic(diag)
|
|
|
|
|
diag.row = diag.row or self:row()
|
|
|
|
|
diag.severity = diag.severity or vim.diagnostic.severity.INFO
|
|
|
|
|
table.insert(self._diagnostics, diag)
|
|
|
|
|
end
|
|
|
|
|
|
2022-11-29 19:02:25 +08:00
|
|
|
|
---@param reason? {[string]:string, time:number}
|
|
|
|
|
---@param opts? {time_right?:boolean}
|
|
|
|
|
function M:reason(reason, opts)
|
|
|
|
|
opts = opts or {}
|
|
|
|
|
if not reason then
|
|
|
|
|
return
|
|
|
|
|
end
|
|
|
|
|
reason = vim.deepcopy(reason)
|
2022-11-23 23:12:02 +08:00
|
|
|
|
---@type string?
|
|
|
|
|
local source = reason.source
|
|
|
|
|
if source then
|
2022-12-02 16:22:43 +08:00
|
|
|
|
local plugin = Plugin.find(source)
|
|
|
|
|
if plugin then
|
|
|
|
|
reason.plugin = plugin.name
|
|
|
|
|
reason.source = nil
|
|
|
|
|
else
|
|
|
|
|
local config = vim.fn.stdpath("config")
|
2022-12-02 15:54:27 +08:00
|
|
|
|
if source == config .. "/init.lua" then
|
|
|
|
|
reason.source = "init.lua"
|
|
|
|
|
else
|
|
|
|
|
config = config .. "/lua"
|
|
|
|
|
if source:find(config, 1, true) == 1 then
|
|
|
|
|
reason.source = source:sub(#config + 2):gsub("/", "."):gsub("%.lua$", "")
|
2022-12-01 20:56:41 +08:00
|
|
|
|
end
|
|
|
|
|
end
|
|
|
|
|
end
|
2022-11-23 23:12:02 +08:00
|
|
|
|
end
|
2022-11-29 19:02:25 +08:00
|
|
|
|
local time = " " .. math.floor((reason.time or 0) / 1e6 * 100) / 100 .. "ms"
|
|
|
|
|
if not opts.time_right then
|
|
|
|
|
self:append(time, "Bold")
|
|
|
|
|
end
|
2022-11-25 05:06:05 +08:00
|
|
|
|
self:append(" ")
|
|
|
|
|
-- self:append(" (", "Conceal")
|
|
|
|
|
local first = true
|
2022-12-01 23:27:52 +08:00
|
|
|
|
local keys = vim.tbl_keys(reason)
|
|
|
|
|
table.sort(keys)
|
|
|
|
|
if vim.tbl_contains(keys, "plugin") then
|
|
|
|
|
keys = vim.tbl_filter(function(key)
|
|
|
|
|
return key ~= "plugin"
|
|
|
|
|
end, keys)
|
|
|
|
|
table.insert(keys, "plugin")
|
|
|
|
|
end
|
|
|
|
|
for _, key in ipairs(keys) do
|
|
|
|
|
local value = reason[key]
|
2022-11-29 19:02:25 +08:00
|
|
|
|
if type(key) == "number" then
|
|
|
|
|
elseif key == "require" then
|
2022-11-25 05:06:05 +08:00
|
|
|
|
-- self:append("require", "@function.builtin")
|
|
|
|
|
-- self:append("(", "@punctuation.bracket")
|
|
|
|
|
-- self:append('"' .. value .. '"', "@string")
|
|
|
|
|
-- self:append(")", "@punctuation.bracket")
|
2022-11-23 23:12:02 +08:00
|
|
|
|
elseif key ~= "time" then
|
2022-11-25 05:06:05 +08:00
|
|
|
|
if first then
|
|
|
|
|
first = false
|
|
|
|
|
else
|
|
|
|
|
self:append(" ")
|
|
|
|
|
end
|
|
|
|
|
if key == "event" then
|
|
|
|
|
value = value:match("User (.*)") or value
|
|
|
|
|
end
|
|
|
|
|
local hl = "LazyLoader" .. key:sub(1, 1):upper() .. key:sub(2)
|
2022-12-01 06:13:08 +08:00
|
|
|
|
local icon = Config.options.ui.icons[key]
|
2022-11-25 05:06:05 +08:00
|
|
|
|
if icon then
|
|
|
|
|
self:append(icon .. " ", hl)
|
|
|
|
|
self:append(value, hl)
|
|
|
|
|
else
|
|
|
|
|
self:append(key .. " ", "@field")
|
|
|
|
|
self:append(value, hl)
|
|
|
|
|
end
|
2022-11-23 23:12:02 +08:00
|
|
|
|
end
|
|
|
|
|
end
|
2022-11-29 19:02:25 +08:00
|
|
|
|
if opts.time_right then
|
|
|
|
|
self:append(time, "Bold")
|
|
|
|
|
end
|
2022-11-25 05:06:05 +08:00
|
|
|
|
-- self:append(")", "Conceal")
|
2022-11-23 23:12:02 +08:00
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
---@param plugin LazyPlugin
|
|
|
|
|
function M:diagnostics(plugin)
|
2022-11-28 18:19:50 +08:00
|
|
|
|
if plugin._.updated then
|
|
|
|
|
if plugin._.updated.from == plugin._.updated.to then
|
2022-11-23 23:12:02 +08:00
|
|
|
|
self:diagnostic({
|
|
|
|
|
message = "already up to date",
|
|
|
|
|
})
|
|
|
|
|
else
|
|
|
|
|
self:diagnostic({
|
2022-11-28 18:19:50 +08:00
|
|
|
|
message = "updated from " .. plugin._.updated.from:sub(1, 7) .. " to " .. plugin._.updated.to:sub(1, 7),
|
2022-11-23 23:12:02 +08:00
|
|
|
|
})
|
|
|
|
|
end
|
|
|
|
|
end
|
2022-11-28 18:19:50 +08:00
|
|
|
|
for _, task in ipairs(plugin._.tasks or {}) do
|
2022-11-28 18:04:32 +08:00
|
|
|
|
if task:is_running() then
|
2022-11-23 23:12:02 +08:00
|
|
|
|
self:diagnostic({
|
|
|
|
|
severity = vim.diagnostic.severity.WARN,
|
2022-11-29 05:03:44 +08:00
|
|
|
|
message = task.name .. (task.status == "" and "" or (": " .. task.status)),
|
2022-11-23 23:12:02 +08:00
|
|
|
|
})
|
|
|
|
|
elseif task.error then
|
|
|
|
|
self:diagnostic({
|
2022-11-29 05:03:44 +08:00
|
|
|
|
message = task.name .. " failed",
|
2022-11-23 23:12:02 +08:00
|
|
|
|
severity = vim.diagnostic.severity.ERROR,
|
|
|
|
|
})
|
|
|
|
|
end
|
|
|
|
|
end
|
|
|
|
|
end
|
|
|
|
|
|
2022-11-21 05:33:47 +08:00
|
|
|
|
---@param plugin LazyPlugin
|
|
|
|
|
function M:plugin(plugin)
|
2022-11-29 19:02:25 +08:00
|
|
|
|
if plugin._.loaded then
|
|
|
|
|
self:append(" ● ", "LazySpecial"):append(plugin.name)
|
|
|
|
|
else
|
|
|
|
|
self:append(" ○ ", "LazySpecial"):append(plugin.name)
|
|
|
|
|
end
|
2022-11-23 23:12:02 +08:00
|
|
|
|
local plugin_start = self:row()
|
2022-11-28 18:19:50 +08:00
|
|
|
|
if plugin._.loaded then
|
2022-11-29 19:02:25 +08:00
|
|
|
|
self:reason(plugin._.loaded)
|
2022-11-23 23:12:02 +08:00
|
|
|
|
end
|
|
|
|
|
self:diagnostics(plugin)
|
|
|
|
|
self:nl()
|
|
|
|
|
|
|
|
|
|
if self._details == plugin.name then
|
|
|
|
|
self:details(plugin)
|
|
|
|
|
end
|
|
|
|
|
self:tasks(plugin)
|
|
|
|
|
self.plugin_range[plugin.name] = { from = plugin_start, to = self:row() - 1 }
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
---@param plugin LazyPlugin
|
|
|
|
|
function M:tasks(plugin)
|
2022-11-28 18:19:50 +08:00
|
|
|
|
for _, task in ipairs(plugin._.tasks or {}) do
|
2022-11-29 05:03:44 +08:00
|
|
|
|
if self._details == plugin.name then
|
|
|
|
|
self:append("✔ [task] ", "Title", { indent = 4 }):append(task.name)
|
|
|
|
|
self:append(" " .. math.floor((task:time()) * 100) / 100 .. "ms", "Bold")
|
|
|
|
|
self:nl()
|
|
|
|
|
end
|
|
|
|
|
if task.name == "log" and not task.error then
|
2022-11-23 23:12:02 +08:00
|
|
|
|
self:log(task)
|
|
|
|
|
elseif task.error or self._details == plugin.name then
|
|
|
|
|
if task.error then
|
|
|
|
|
self:append(vim.trim(task.error), "LazyError", { indent = 4, prefix = "│ " })
|
|
|
|
|
self:nl()
|
|
|
|
|
end
|
|
|
|
|
if task.output ~= "" and task.output ~= task.error then
|
|
|
|
|
self:append(vim.trim(task.output), "MsgArea", { indent = 4, prefix = "│ " })
|
|
|
|
|
self:nl()
|
2022-11-21 05:34:55 +08:00
|
|
|
|
end
|
|
|
|
|
end
|
|
|
|
|
end
|
2022-11-23 23:12:02 +08:00
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
---@param task LazyTask
|
|
|
|
|
function M:log(task)
|
|
|
|
|
local log = vim.trim(task.output)
|
|
|
|
|
if log ~= "" then
|
|
|
|
|
local lines = vim.split(log, "\n")
|
2022-11-25 05:06:05 +08:00
|
|
|
|
for _, line in ipairs(lines) do
|
2022-11-23 23:12:02 +08:00
|
|
|
|
local ref, msg, time = line:match("^(%w+) (.*) (%(.*%))$")
|
2022-11-25 05:06:05 +08:00
|
|
|
|
if msg:find("^%S+!:") then
|
|
|
|
|
self:diagnostic({ message = "Breaking Changes", severity = vim.diagnostic.severity.WARN })
|
|
|
|
|
end
|
2022-11-23 23:12:02 +08:00
|
|
|
|
self:append(ref .. " ", "LazyCommit", { indent = 6 })
|
|
|
|
|
self:append(vim.trim(msg)):highlight({
|
|
|
|
|
["#%d+"] = "Number",
|
|
|
|
|
["^%S+:"] = "Title",
|
|
|
|
|
["^%S+(%(.*%)):"] = "Italic",
|
|
|
|
|
["`.-`"] = "@text.literal.markdown_inline",
|
|
|
|
|
})
|
|
|
|
|
-- string.gsub
|
|
|
|
|
self:append(" " .. time, "Comment")
|
|
|
|
|
self:nl()
|
|
|
|
|
end
|
|
|
|
|
self:nl()
|
|
|
|
|
end
|
2022-11-21 05:33:47 +08:00
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
---@param plugin LazyPlugin
|
|
|
|
|
function M:details(plugin)
|
2022-11-23 23:12:02 +08:00
|
|
|
|
---@type string[][]
|
|
|
|
|
local props = {}
|
|
|
|
|
table.insert(props, { "uri", (plugin.uri:gsub("%.git$", "")), "@text.reference" })
|
2022-11-28 18:36:12 +08:00
|
|
|
|
local git = Git.info(plugin.dir, true)
|
2022-11-21 05:34:55 +08:00
|
|
|
|
if git then
|
2022-11-28 18:36:12 +08:00
|
|
|
|
if git.version then
|
|
|
|
|
table.insert(props, { "version", tostring(git.version) })
|
|
|
|
|
end
|
|
|
|
|
if git.tag then
|
|
|
|
|
table.insert(props, { "tag", git.tag })
|
|
|
|
|
end
|
|
|
|
|
if git.branch then
|
|
|
|
|
table.insert(props, { "branch", git.branch })
|
|
|
|
|
end
|
|
|
|
|
table.insert(props, { "commit", git.commit:sub(1, 7), "LazyCommit" })
|
2022-11-23 23:12:02 +08:00
|
|
|
|
end
|
|
|
|
|
if Util.file_exists(plugin.dir .. "/README.md") then
|
2022-11-25 05:06:05 +08:00
|
|
|
|
table.insert(props, { "readme", "README.md" })
|
|
|
|
|
end
|
|
|
|
|
|
2022-11-29 07:14:37 +08:00
|
|
|
|
for handler in pairs(Handler.handlers) do
|
2022-11-27 18:03:17 +08:00
|
|
|
|
if plugin[handler] then
|
2022-11-25 05:06:05 +08:00
|
|
|
|
table.insert(props, {
|
2022-11-27 18:03:17 +08:00
|
|
|
|
handler,
|
|
|
|
|
type(plugin[handler]) == "string" and plugin[handler] or table.concat(plugin[handler], ", "),
|
2022-11-25 05:06:05 +08:00
|
|
|
|
"@string",
|
|
|
|
|
})
|
|
|
|
|
end
|
2022-11-23 23:12:02 +08:00
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
local width = 0
|
|
|
|
|
for _, prop in ipairs(props) do
|
|
|
|
|
width = math.max(width, #prop[1])
|
|
|
|
|
end
|
|
|
|
|
for _, prop in ipairs(props) do
|
2022-11-25 05:06:05 +08:00
|
|
|
|
self:append(prop[1] .. string.rep(" ", width - #prop[1] + 1), "LazyKey", { indent = 6 })
|
2022-11-23 23:12:02 +08:00
|
|
|
|
self:append(prop[2], prop[3] or "LazyValue")
|
|
|
|
|
self:nl()
|
2022-11-21 05:34:55 +08:00
|
|
|
|
end
|
|
|
|
|
self:nl()
|
2022-11-21 05:33:47 +08:00
|
|
|
|
end
|
|
|
|
|
|
2022-11-29 19:02:25 +08:00
|
|
|
|
function M:profile()
|
|
|
|
|
self:append("Profile", "LazyH2"):nl():nl()
|
|
|
|
|
local symbols = {
|
|
|
|
|
"●",
|
|
|
|
|
"➜",
|
|
|
|
|
"★",
|
|
|
|
|
"‒",
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
---@param entry LazyProfile
|
|
|
|
|
local function _profile(entry, depth)
|
|
|
|
|
local data = type(entry.data) == "string" and { source = entry.data } or entry.data
|
|
|
|
|
data.time = entry.time
|
|
|
|
|
local symbol = symbols[depth] or symbols[#symbols]
|
|
|
|
|
self:append((" "):rep(depth)):append(" " .. symbol, "LazySpecial")
|
|
|
|
|
self:reason(data, { time_right = true })
|
|
|
|
|
self:nl()
|
|
|
|
|
|
|
|
|
|
for _, child in ipairs(entry) do
|
|
|
|
|
_profile(child, depth + 1)
|
|
|
|
|
end
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
for _, entry in ipairs(Util._profiles[1]) do
|
|
|
|
|
_profile(entry, 1)
|
|
|
|
|
end
|
|
|
|
|
end
|
|
|
|
|
|
2022-11-21 05:33:47 +08:00
|
|
|
|
return M
|