Trans.nvim/lua/Trans/core/backend.lua
2023-03-14 18:17:07 +08:00

50 lines
1.1 KiB
Lua

local Trans = require('Trans')
---@class TransBackend
---@field query fun(TransData): TransResult
---@field opts TransBackendOpts
local conf = Trans.conf
--- INFO :Parse online engine keys config file
local path = conf.dir .. '/Trans.json'
local file = io.open(path, "r")
local result = {}
if file then
local content = file:read("*a")
result = vim.json.decode(content) or result
file:close()
end
local default_opts = conf.backend.default
default_opts.__index = default_opts
---@class Trans
---@field backend table<string, TransBackend>
return setmetatable({}, {
__index = function(self, name)
---@type TransBackend
local backend = require('Trans.backend.' .. name)
if backend then
self[name] = backend
else
backend = self[name]
end
backend.opts = setmetatable(conf.backend[name] or {}, default_opts)
local private_opts = result[name]
if private_opts then
for k, v in pairs(private_opts) do
backend[k] = v
end
end
return backend
end
})