Trans.nvim/lua/Trans/core/setup.lua
2023-03-12 20:09:08 +08:00

173 lines
4.1 KiB
Lua

local Trans = require('Trans')
local function set_strategy_opts(conf)
local define = Trans.define
local all_modes = define.modes
local all_backends = define.backends
local function parse_backend(backend)
if type(backend) == 'string' then
return backend == '*' and all_backends or { backend }
end
return backend
end
local default_strategy = conf.strategy.default
default_strategy.backend = parse_backend(default_strategy.backend)
local meta = {
__index = function(tbl, key)
tbl[key] = default_strategy[key]
return tbl[key]
end
}
local strategy = conf.strategy
for _, mode in ipairs(all_modes) do
strategy[mode] = setmetatable(strategy[mode] or {}, meta)
if type(strategy[mode].backend) == 'string' then
strategy[mode].backend = parse_backend(strategy[mode].backend)
end
end
end
local function set_frontend_opts(conf)
local all_frontends = Trans.define.frontends
local global_frontend_opts = conf.frontend
local meta = {
__index = function(tbl, key)
tbl[key] = global_frontend_opts[key]
return tbl[key]
end
}
for _, frontend in ipairs(all_frontends) do
local frontend_opts = global_frontend_opts[frontend]
if not frontend_opts then
global_frontend_opts[frontend] = setmetatable({}, meta)
else
setmetatable(frontend_opts, meta)
end
end
end
local function define_keymaps(conf)
local set = vim.keymap.set
local opts = { silent = true, expr = true }
for _, name in ipairs(Trans.define.frontends) do
for action, key in pairs(conf.frontend[name].keymap) do
set('n', key, function()
local frontend = Trans.frontend[name]
if frontend.is_available() then
frontend.actions[action]()
else
return key
end
end, opts)
end
end
end
local function define_highlights(conf)
local set_hl = vim.api.nvim_set_hl
local highlights = Trans.style.theme[conf.style.theme]
for hl, opt in pairs(highlights) do
set_hl(0, hl, opt)
end
end
return function(opts)
if opts then
Trans.conf = vim.tbl_deep_extend('force', Trans.conf, opts)
end
local conf = Trans.conf
conf.dir = vim.fn.expand(conf.dir)
set_strategy_opts(conf)
set_frontend_opts(conf)
define_keymaps(conf)
define_highlights(conf)
end
-- {
-- backend = {
-- default = {
-- timeout = 2000
-- }
-- },
-- dir = "/home/zoran/.vim/dict",
-- frontend = {
-- default = {
-- animation = {
-- close = "slid",
-- interval = 12,
-- open = "slid"
-- },
-- auto_play = true,
-- border = "rounded",
-- title = { { "", "TransTitleRound" }, { " Trans", "TransTitle" }, { "", "TransTitleRound" } }
-- },
-- hover = {
-- auto_close_events = { "InsertEnter", "CursorMoved", "BufLeave" },
-- height = 27,
-- keymap = {
-- close = "<leader>]",
-- pagedown = "]]",
-- pageup = "[[",
-- pin = "<leader>[",
-- play = "_",
-- toggle_entry = "<leader>;"
-- },
-- order = { "title", "tag", "pos", "exchange", "translation", "definition" },
-- spinner = "dots",
-- width = 37,
-- <metatable> = {
-- __index = <function 1>
-- }
-- }
-- },
-- strategy = {
-- default = {
-- backend = <1>{ "offline", "baidu" },
-- frontend = "hover"
-- },
-- input = {
-- backend = <table 1>,
-- <metatable> = <2>{
-- __index = <function 2>
-- }
-- },
-- normal = {
-- backend = <table 1>,
-- <metatable> = <table 2>
-- },
-- visual = {
-- backend = <table 1>,
-- <metatable> = <table 2>
-- }
-- },
-- style = {
-- icon = {
-- cell = "■",
-- no = "",
-- notfound = " ",
-- star = "",
-- yes = "✔"
-- },
-- theme = "default"
-- }
-- }