fix: change global config to default option

This commit is contained in:
JuanZoran 2023-03-12 20:09:08 +08:00
parent 493fad6a3f
commit bc8c673ee0
10 changed files with 287 additions and 184 deletions

5
lua/Trans/.clocignore Normal file
View File

@ -0,0 +1,5 @@
./README.md
./util/md5.lua
./util/base64.lua
./util/bak_init.lua
./test

View File

@ -10,3 +10,4 @@
- [ ] Check if str is a word - [ ] Check if str is a word
- [ ] init frontend window - [ ] init frontend window
- [ ] build frontend window format logic - [ ] build frontend window format logic
- [ ] waitting animation

View File

@ -1,8 +1,9 @@
local Trans = require('Trans') local Trans = require('Trans')
local M = Trans.metatable('backend') local M = Trans.metatable('backend')
local conf = Trans.conf
--- INFO :Parse online engine keys config file --- INFO :Parse online engine keys config file
local path = Trans.conf.dir .. '/Trans.json' local path = conf.dir .. '/Trans.json'
local file = io.open(path, "r") local file = io.open(path, "r")
if file then if file then
@ -14,19 +15,12 @@ if file then
end end
local default_opts = vim.deepcopy(Trans.conf.backend)
for name, private_opts in pairs(result or {}) do for name, private_opts in pairs(result or {}) do
local opts = vim.tbl_extend('keep', Trans.conf.backend[name] or {}, default_opts, private_opts) local opts = vim.tbl_extend('keep', conf.backend[name] or {}, conf.backend.default, private_opts)
local backend = M[name]
for k, v in pairs(opts) do for k, v in pairs(opts) do
if not backend[k] then M[name][k] = v
backend[k] = v
end
end end
end end
end end
return M return M

View File

@ -10,21 +10,27 @@ end
return { return {
dir = os.getenv('HOME') .. '/.vim/dict', dir = os.getenv('HOME') .. '/.vim/dict',
strategy = { strategy = {
frontend = 'hover', default = {
backend = '*', frontend = 'hover',
backend = '*',
},
}, },
backend = { backend = {
timeout = 2000, default = {
timeout = 2000,
},
}, },
frontend = { frontend = {
auto_play = true, default = {
border = 'rounded', auto_play = true,
animation = { border = 'rounded',
open = 'slid', -- 'fold', 'slid' animation = {
close = 'slid', open = 'slid', -- 'fold', 'slid'
interval = 12, close = 'slid',
interval = 12,
},
title = title, -- need nvim-0.9
}, },
title = title, -- need nvim-0.9
hover = { hover = {
width = 37, width = 37,
height = 27, height = 27,

View File

@ -0,0 +1,17 @@
local Trans = require('Trans')
local M = Trans.metatable('frontend')
-- local default_opts = vim.deepcopy(Trans.conf.frontend)
-- for name, private_opts in pairs(result or {}) do
-- local opts = vim.tbl_extend('keep', Trans.conf.backend[name] or {}, default_opts, private_opts)
-- local backend = M[name]
-- for k, v in pairs(opts) do
-- if not backend[k] then
-- backend[k] = v
-- end
-- end
-- end
return M

View File

@ -13,27 +13,24 @@ local function set_strategy_opts(conf)
return backend return backend
end end
local global_strategy = conf.strategy local default_strategy = conf.strategy.default
global_strategy.backend = parse_backend(global_strategy.backend) default_strategy.backend = parse_backend(default_strategy.backend)
local meta = { local meta = {
__index = function(tbl, key) __index = function(tbl, key)
tbl[key] = global_strategy[key] tbl[key] = default_strategy[key]
return tbl[key] return tbl[key]
end end
} }
local strategy = conf.strategy
for _, mode in ipairs(all_modes) do for _, mode in ipairs(all_modes) do
if not global_strategy[mode] then strategy[mode] = setmetatable(strategy[mode] or {}, meta)
global_strategy[mode] = setmetatable({}, meta) if type(strategy[mode].backend) == 'string' then
else strategy[mode].backend = parse_backend(strategy[mode].backend)
if mode.backend then
mode.backend = parse_backend(mode.backend)
end
setmetatable(mode, meta)
end end
end end
end end
@ -102,4 +99,74 @@ return function(opts)
set_frontend_opts(conf) set_frontend_opts(conf)
define_keymaps(conf) define_keymaps(conf)
define_highlights(conf) define_highlights(conf)
end 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"
-- }
-- }

View File

@ -48,6 +48,15 @@ function M.get_str(mode)
end end
end end
function M.pause(ms)
local co = coroutine.running()
vim.defer_fn(function()
coroutine.resume(co)
end, ms)
coroutine.yield()
end
function M.is_English(str) function M.is_English(str)
local char = { str:byte(1, -1) } local char = { str:byte(1, -1) }
for i = 1, #str do for i = 1, #str do

View File

@ -1,7 +1,8 @@
local M = {} local M = {}
local api = vim.api local Trans = require('Trans')
local conf = require('Trans').conf local api = vim.api
local conf = Trans.conf
function M.init() function M.init()
@ -9,20 +10,12 @@ function M.init()
end end
function M.wait(tbl, name, timeout) function M.wait(tbl, name, timeout)
local thread = coroutine.running()
local function pause(ms)
vim.defer_fn(function()
coroutine.resume(thread)
end, ms)
coroutine.yield()
end
local error_message = 'Faild' local error_message = 'Faild'
local interval = math.floor(timeout / #error_message) local interval = math.floor(timeout / #error_message)
for i = 1, #error_message do for i = 1, #error_message do
if tbl[name] ~= nil then break end if tbl[name] ~= nil then break end
print('waitting' .. ('.'):rep(i)) print('waitting' .. ('.'):rep(i))
pause(interval) Trans.util.pause(interval)
end end
-- TODO : End waitting animation -- TODO : End waitting animation

View File

@ -19,8 +19,6 @@ local M = metatable('core')
M.metatable = metatable M.metatable = metatable
M.style = metatable("style") M.style = metatable("style")
M.wrapper = metatable("wrapper") M.wrapper = metatable("wrapper")
M.frontend = metatable("frontend")
M.cache = {} M.cache = {}
return M return M

View File

@ -1,13 +1,14 @@
local api = vim.api local api = vim.api
local display = require('Trans.util.display') local Trans = require("Trans")
---@class win ---@class win
---@field win_opts table window config [**when open**]
---@field winid integer window handle ---@field winid integer window handle
---@field width integer
---@field height integer
---@field ns integer namespace for highlight ---@field ns integer namespace for highlight
---@field animation table window animation ---@field animation table window animation
---@field buf buf buffer for attached ---@field enter boolean cursor should [enter] window when open
---@field buffer buffer attached buffer object
local window = {} local window = {}
---Change window attached buffer ---Change window attached buffer
@ -41,91 +42,98 @@ end
---@param height integer ---@param height integer
function window:set_height(height) function window:set_height(height)
api.nvim_win_set_height(self.winid, height) api.nvim_win_set_height(self.winid, height)
self.height = height
end end
---@param width integer ---@param width integer
function window:set_width(width) function window:set_width(width)
api.nvim_win_set_width(self.winid, width) api.nvim_win_set_width(self.winid, width)
self.width = width end
---Get window width
function window:width()
return api.nvim_win_get_width(self.winid)
end
---Get window height
function window:height()
return api.nvim_win_get_height(self.winid)
end end
---Expand window [width | height] value ---Expand window [width | height] value
---@param opts table ---@param opts table
---|'field'string [width | height] ---|'field'string [width | height]
---|'target'integer ---|'target'integer
---@return function function window:smooth_expand(opts)
function window:expand(opts) local field = opts.field -- width | height
self:lock() local from = self[field](self)
local field = opts.field local to = opts.target
local target = opts.target
local cur = self[field]
local times = math.abs(target - cur)
local wrap = self:option('wrap') if from == to then return end
self:set('wrap', false)
local interval = opts.interval or self.animation.interval
local pause = Trans.util.pause
local method = api['nvim_win_set_' .. field] local method = api['nvim_win_set_' .. field]
local winid = self.winid
local frame = target > cur and function(_, cur_times) local wrap = self:option('wrap')
method(winid, cur + cur_times)
end or function(_, cur_times) local interval = self.animation.interval
method(winid, cur - cur_times) for i = from + 1, to, (from < to and 1 or -1) do
self:set('wrap', false)
method(self.winid, i)
pause(interval)
end end
local run = display { self:set('wrap', wrap)
times = times,
frame = frame,
interval = interval,
}
run(function()
self:set('wrap', wrap)
self[field] = target
self:unlock()
end)
return run
end end
---Close window ---Close window
---@return function run run until close done
function window:try_close() function window:try_close()
local field = ({ local close_animation = self.animation.close
slid = 'width', if close_animation then
fold = 'height', local field = ({
})[self.animation.close] slid = 'width',
fold = 'height',
})[close_animation]
--- 播放动画 self:smooth_expand({
local run = self:expand { field = field,
field = field, target = 1,
target = 1, })
}
run(function()
api.nvim_win_close(self.winid, true)
end)
return run
end
---lock window [open | close] operation
function window:lock()
while self.busy do
vim.wait(50)
end end
self.busy = true
api.nvim_win_close(self.winid, true)
end end
function window:unlock() ---set window local highlight group
self.busy = false ---@param name string
end ---@param opts table
---设置窗口本地的高亮组
---@param name string 高亮组的名称
---@param opts table 高亮选项
function window:set_hl(name, opts) function window:set_hl(name, opts)
api.nvim_set_hl(self.ns, name, opts) api.nvim_set_hl(self.ns, name, opts)
end end
function window:open()
assert(self.winid == nil, 'window already opened')
local win_opts = self.win_opts
local open_animation = self.animation.open
if open_animation then
local field = ({
slid = 'width',
fold = 'height',
})[open_animation]
local to = win_opts[field]
win_opts[field] = 1
self.winid = api.nvim_open_win(self.buffer.bufnr, self.enter, win_opts)
self:smooth_expand({
field = field,
target = to,
})
else
self.winid = api.nvim_open_win(self.buffer.bufnr, self.enter, win_opts)
end
end
---buffer:addline() helper function ---buffer:addline() helper function
---@param node table ---@param node table
---@return table node formatted node ---@return table node formatted node
@ -138,86 +146,91 @@ function window:center(node)
return node return node
end end
---@private
window.__index = window window.__index = window
---@class win_opts local default_opts = {
---@field buf buf buffer for attached ns = api.nvim_create_namespace('TransHoverWin'),
---@field height integer enter = false,
---@field width integer win_opts = {
---@field col integer
---@field row integer
---@field border string
---@field title string | nil | table
---@field relative string
---@field ns integer namespace for highlight
---@field zindex? integer
---@field enter? boolean cursor should [enter] window
---@field animation table window animation
---window constructor
---@param opts win_opts
---@return table
---@return function
return function(opts)
assert(type(opts) == 'table')
local ns = opts.ns
local buf = opts.buf
local col = opts.col
local row = opts.row
local title = opts.title
local width = opts.width
local enter = opts.enter or false
local height = opts.height
local border = opts.border
local zindex = opts.zindex
local relative = opts.relative
local animation = opts.animation
local open = animation.open
local field = ({
slid = 'width',
fold = 'height',
})[open]
local win_opt = {
title_pos = nil,
focusable = false,
style = 'minimal', style = 'minimal',
zindex = zindex, border = 'rounded',
width = width, focusable = false,
height = height, noautocmd = true,
col = col, },
row = row, }
border = border,
title = title,
relative = relative,
}
if field then return function(opts)
win_opt[field] = 1 opts = vim.tbl_deep_extend('keep', opts, default_opts)
end
if win_opt.title then local win = setmetatable(opts, window)
win_opt.title_pos = 'center' win:open()
end return win
local win = setmetatable({
buf = buf,
ns = ns,
height = win_opt.height,
width = win_opt.width,
animation = animation,
winid = api.nvim_open_win(buf.bufnr, enter, win_opt),
}, window)
api.nvim_win_set_hl_ns(win.winid, win.ns)
win:set_hl('Normal', { link = 'TransWin' })
win:set_hl('FloatBorder', { link = 'TransBorder' })
return win, win:expand {
field = field,
target = opts[field],
}
end end
--@class win_opts
--@field buf buf buffer for attached
--@field height integer
--@field width integer
--@field col integer
--@field row integer
--@field border string
--@field title string | nil | table
--@field relative string
--@field ns integer namespace for highlight
--@field zindex? integer
--@field enter? boolean cursor should [enter] window
--@field animation table window animation
-- local ns = opts.ns
-- local buf = opts.buf
-- local col = opts.col
-- local row = opts.row
-- local title = opts.title
-- local width = opts.width
-- local height = opts.height
-- local border = opts.border
-- local zindex = opts.zindex
-- local relative = opts.relative
-- local animation = opts.animation
-- local open = animation.open
-- local field = ({
-- slid = 'width',
-- fold = 'height',
-- })[open]
-- local win_opt = {
-- focusable = false,
-- style = 'minimal',
-- zindex = zindex,
-- width = width,
-- height = height,
-- col = col,
-- row = row,
-- border = border,
-- title = title,
-- relative = relative,
-- }
-- if field then
-- win_opt[field] = 1
-- end
-- if win_opt.title then
-- win_opt.title_pos = 'center'
-- end
-- local win = setmetatable({
-- buf = buf,
-- ns = ns,
-- height = win_opt.height,
-- width = win_opt.width,
-- animation = animation,
-- winid = api.nvim_open_win(buf.bufnr, enter, win_opt),
-- }, window)
-- return win, win:expand {
-- field = field,
-- target = opts[field],
-- }