Trans.nvim/lua/Trans/core/backend.lua

29 lines
683 B
Lua
Raw Normal View History

local Trans = require('Trans')
local conf = Trans.conf
--- INFO :Parse online engine keys config file
local path = conf.dir .. '/Trans.json'
local file = io.open(path, "r")
2023-03-12 21:33:00 +08:00
local result = {}
if file then
local content = file:read("*a")
2023-03-12 21:33:00 +08:00
result = vim.json.decode(content) or result
file:close()
2023-03-12 21:33:00 +08:00
end
2023-03-12 21:33:00 +08:00
return setmetatable({}, {
__index = function(self, name)
local opts = vim.tbl_extend('keep', conf.backend[name] or {}, conf.backend.default, result[name] or {})
local backend = require('Trans.backend.' .. name)
for k, v in pairs(opts) do
2023-03-12 21:33:00 +08:00
backend[k] = v
end
2023-03-12 21:33:00 +08:00
self[name] = backend
return backend
end
})