83 lines
2.2 KiB
Lua
83 lines
2.2 KiB
Lua
local Config = require("lazyvim.config")
|
|
local Util = require("lazyvim.util")
|
|
|
|
---@class lazyvim.util.json
|
|
local M = {}
|
|
|
|
---@param value any
|
|
---@param indent string
|
|
local function encode(value, indent)
|
|
local t = type(value)
|
|
|
|
if t == "string" then
|
|
return string.format("%q", value)
|
|
elseif t == "number" or t == "boolean" then
|
|
return tostring(value)
|
|
elseif t == "table" then
|
|
local is_list = Util.is_list(value)
|
|
local parts = {}
|
|
local next_indent = indent .. " "
|
|
|
|
if is_list then
|
|
---@diagnostic disable-next-line: no-unknown
|
|
for _, v in ipairs(value) do
|
|
local e = encode(v, next_indent)
|
|
if e then
|
|
table.insert(parts, next_indent .. e)
|
|
end
|
|
end
|
|
return "[\n" .. table.concat(parts, ",\n") .. "\n" .. indent .. "]"
|
|
else
|
|
local keys = vim.tbl_keys(value)
|
|
table.sort(keys)
|
|
---@diagnostic disable-next-line: no-unknown
|
|
for _, k in ipairs(keys) do
|
|
local e = encode(value[k], next_indent)
|
|
if e then
|
|
table.insert(parts, next_indent .. string.format("%q", k) .. ": " .. e)
|
|
end
|
|
end
|
|
return "{\n" .. table.concat(parts, ",\n") .. "\n" .. indent .. "}"
|
|
end
|
|
end
|
|
end
|
|
|
|
function M.encode(value)
|
|
return encode(value, "")
|
|
end
|
|
|
|
function M.save()
|
|
Config.json.data.version = Config.json.version
|
|
local path = vim.fn.stdpath("config") .. "/lazyvim.json"
|
|
local f = io.open(path, "w")
|
|
if f then
|
|
f:write(Util.json.encode(Config.json.data))
|
|
f:close()
|
|
end
|
|
end
|
|
|
|
function M.migrate()
|
|
Util.info("Migrating `lazyvim.json` to version `" .. Config.json.version .. "`")
|
|
local json = Config.json
|
|
|
|
-- v0
|
|
if not json.data.version then
|
|
if json.data.hashes then
|
|
---@diagnostic disable-next-line: no-unknown
|
|
json.data.hashes = nil
|
|
end
|
|
json.data.extras = vim.tbl_map(function(extra)
|
|
return "lazyvim.plugins.extras." .. extra
|
|
end, json.data.extras or {})
|
|
elseif json.data.version == 1 then
|
|
json.data.extras = vim.tbl_map(function(extra)
|
|
-- replace double extras module name
|
|
return extra:gsub("^lazyvim%.plugins%.extras%.lazyvim%.plugins%.extras%.", "lazyvim.plugins.extras.")
|
|
end, json.data.extras or {})
|
|
end
|
|
|
|
M.save()
|
|
end
|
|
|
|
return M
|