refactor: remove wrapper folder
This commit is contained in:
parent
1fe20004ec
commit
7731c6c8cb
@ -5,9 +5,9 @@
|
|||||||
- [TODO](#todo)
|
- [TODO](#todo)
|
||||||
<!--toc:end-->
|
<!--toc:end-->
|
||||||
|
|
||||||
- [ ] Refactor query engine to 'Backend' and 'Frontend'
|
- [x] Refactor query engine to 'Backend' and 'Frontend'
|
||||||
- [x] Use `Trans.install` instead of `install.sh`
|
- [x] Use `Trans.install` instead of `install.sh`
|
||||||
- [ ] Check if str is a word
|
- [ ] Check if str is a word
|
||||||
- [ ] init frontend window
|
- [x] waitting animation
|
||||||
|
- [x] init frontend window
|
||||||
- [ ] build frontend window format logic
|
- [ ] build frontend window format logic
|
||||||
- [ ] waitting animation
|
|
||||||
|
@ -56,7 +56,7 @@ function M.query(data)
|
|||||||
end
|
end
|
||||||
|
|
||||||
|
|
||||||
Trans.wrapper.curl.get(M.uri, {
|
Trans.curl.get(M.uri, {
|
||||||
query = M.get_content(data),
|
query = M.get_content(data),
|
||||||
callback = handle,
|
callback = handle,
|
||||||
})
|
})
|
||||||
|
@ -91,13 +91,14 @@ end
|
|||||||
|
|
||||||
---Add highlight to buffer
|
---Add highlight to buffer
|
||||||
---@param linenr number line number should be set[one index]
|
---@param linenr number line number should be set[one index]
|
||||||
---@param col_start number column start
|
---@param col_start number column start [zero index]
|
||||||
---@param col_end number column end
|
---@param col_end number column end
|
||||||
---@param hl_group string highlight group
|
---@param hl_group string highlight group
|
||||||
---@param ns number? highlight namespace
|
---@param ns number? highlight namespace
|
||||||
function buffer:add_highlight(linenr, col_start, col_end, hl_group, ns)
|
function buffer:add_highlight(linenr, hl_group, col_start, col_end, ns)
|
||||||
linenr = linenr and linenr - 1 or -1
|
linenr = linenr and linenr - 1 or -1
|
||||||
api.nvim_buf_add_highlight(self.bufnr, ns or -1, hl_group, linenr, col_start, col_end)
|
col_start = col_start or 0
|
||||||
|
api.nvim_buf_add_highlight(self.bufnr, ns or -1, hl_group, linenr, col_start, col_end or -1)
|
||||||
end
|
end
|
||||||
|
|
||||||
---Calculate buffer content display height
|
---Calculate buffer content display height
|
42
lua/Trans/core/data.lua
Normal file
42
lua/Trans/core/data.lua
Normal file
@ -0,0 +1,42 @@
|
|||||||
|
local Trans = require('Trans')
|
||||||
|
|
||||||
|
local M = {}
|
||||||
|
M.__index = M
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
function M.new(opts)
|
||||||
|
local mode = opts.mode
|
||||||
|
local str = opts.str
|
||||||
|
|
||||||
|
|
||||||
|
local strategy = Trans.conf.strategy[mode]
|
||||||
|
local data = {
|
||||||
|
str = str,
|
||||||
|
mode = mode,
|
||||||
|
result = {},
|
||||||
|
}
|
||||||
|
|
||||||
|
data.frontend = Trans.frontend[strategy.frontend].new()
|
||||||
|
|
||||||
|
data.backend = {}
|
||||||
|
for i, name in ipairs(strategy.backend) do
|
||||||
|
data.backend[i] = Trans.backend[name]
|
||||||
|
end
|
||||||
|
|
||||||
|
|
||||||
|
if Trans.util.is_English(str) then
|
||||||
|
data.from = 'en'
|
||||||
|
data.to = 'zh'
|
||||||
|
else
|
||||||
|
data.from = 'zh'
|
||||||
|
data.to = 'en'
|
||||||
|
end
|
||||||
|
|
||||||
|
-- FIXME : Check if the str is a word
|
||||||
|
data.is_word = true
|
||||||
|
|
||||||
|
return setmetatable(data, M)
|
||||||
|
end
|
||||||
|
|
||||||
|
return M
|
@ -36,7 +36,7 @@ return function()
|
|||||||
end
|
end
|
||||||
|
|
||||||
|
|
||||||
Trans.wrapper.curl.get(uri, {
|
Trans.curl.get(uri, {
|
||||||
output = loc,
|
output = loc,
|
||||||
callback = handle,
|
callback = handle,
|
||||||
})
|
})
|
||||||
|
@ -13,41 +13,6 @@ local function init_opts(opts)
|
|||||||
return opts
|
return opts
|
||||||
end
|
end
|
||||||
|
|
||||||
|
|
||||||
local function new_data(opts)
|
|
||||||
local mode = opts.mode
|
|
||||||
local str = opts.str
|
|
||||||
|
|
||||||
|
|
||||||
local strategy = Trans.conf.strategy[mode]
|
|
||||||
local data = {
|
|
||||||
str = str,
|
|
||||||
mode = mode,
|
|
||||||
result = {},
|
|
||||||
}
|
|
||||||
|
|
||||||
data.frontend = Trans.frontend[strategy.frontend].new()
|
|
||||||
|
|
||||||
data.backend = {}
|
|
||||||
for i, name in ipairs(strategy.backend) do
|
|
||||||
data.backend[i] = Trans.backend[name]
|
|
||||||
end
|
|
||||||
|
|
||||||
|
|
||||||
if util.is_English(str) then
|
|
||||||
data.from = 'en'
|
|
||||||
data.to = 'zh'
|
|
||||||
else
|
|
||||||
data.from = 'zh'
|
|
||||||
data.to = 'en'
|
|
||||||
end
|
|
||||||
|
|
||||||
-- FIXME : Check if the str is a word
|
|
||||||
data.is_word = true
|
|
||||||
|
|
||||||
return data
|
|
||||||
end
|
|
||||||
|
|
||||||
local function set_result(data)
|
local function set_result(data)
|
||||||
-- HACK :Rewrite this function to support multi requests
|
-- HACK :Rewrite this function to support multi requests
|
||||||
local frontend = data.frontend
|
local frontend = data.frontend
|
||||||
@ -80,9 +45,10 @@ local function process(opts)
|
|||||||
end
|
end
|
||||||
|
|
||||||
|
|
||||||
|
local data = Trans.data.new(opts)
|
||||||
local data = new_data(opts)
|
|
||||||
set_result(data)
|
set_result(data)
|
||||||
|
|
||||||
|
|
||||||
local success = false
|
local success = false
|
||||||
for _, v in pairs(data.result) do
|
for _, v in pairs(data.result) do
|
||||||
if type(v) == "table" then
|
if type(v) == "table" then
|
||||||
|
@ -54,6 +54,11 @@ function window:width()
|
|||||||
return api.nvim_win_get_width(self.winid)
|
return api.nvim_win_get_width(self.winid)
|
||||||
end
|
end
|
||||||
|
|
||||||
|
|
||||||
|
function window:highlight_line(linenr, highlight)
|
||||||
|
self.buffer:highlight_line(linenr, highlight, self.ns)
|
||||||
|
end
|
||||||
|
|
||||||
---Get window height
|
---Get window height
|
||||||
function window:height()
|
function window:height()
|
||||||
return api.nvim_win_get_height(self.winid)
|
return api.nvim_win_get_height(self.winid)
|
||||||
@ -149,7 +154,6 @@ end
|
|||||||
window.__index = window
|
window.__index = window
|
||||||
|
|
||||||
local default_opts = {
|
local default_opts = {
|
||||||
ns = api.nvim_create_namespace('TransHoverWin'),
|
|
||||||
enter = false,
|
enter = false,
|
||||||
winid = -1,
|
winid = -1,
|
||||||
win_opts = {
|
win_opts = {
|
||||||
@ -174,20 +178,6 @@ end
|
|||||||
|
|
||||||
return window
|
return window
|
||||||
|
|
||||||
--@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 ns = opts.ns
|
||||||
-- local buf = opts.buf
|
-- local buf = opts.buf
|
||||||
-- local col = opts.col
|
-- local col = opts.col
|
@ -21,6 +21,7 @@ local Trans = require('Trans')
|
|||||||
|
|
||||||
|
|
||||||
local M = Trans.metatable('frontend.hover', {
|
local M = Trans.metatable('frontend.hover', {
|
||||||
|
ns = vim.api.nvim_create_namespace('TransHoverWin'),
|
||||||
queue = {},
|
queue = {},
|
||||||
})
|
})
|
||||||
M.__index = M
|
M.__index = M
|
||||||
@ -29,7 +30,7 @@ M.__index = M
|
|||||||
---@return hover new_instance
|
---@return hover new_instance
|
||||||
function M.new()
|
function M.new()
|
||||||
local new_instance = {
|
local new_instance = {
|
||||||
buffer = Trans.wrapper.buffer.new(),
|
buffer = Trans.buffer.new(),
|
||||||
destroy_funcs = {},
|
destroy_funcs = {},
|
||||||
}
|
}
|
||||||
M.queue[#M.queue + 1] = new_instance
|
M.queue[#M.queue + 1] = new_instance
|
||||||
@ -75,6 +76,7 @@ function M:init_window(opts)
|
|||||||
local m_opts = self.opts
|
local m_opts = self.opts
|
||||||
|
|
||||||
|
|
||||||
|
opts.ns = self.ns
|
||||||
opts.buffer = self.buffer
|
opts.buffer = self.buffer
|
||||||
win_opts.col = 1
|
win_opts.col = 1
|
||||||
win_opts.row = 1
|
win_opts.row = 1
|
||||||
@ -89,7 +91,7 @@ function M:init_window(opts)
|
|||||||
|
|
||||||
|
|
||||||
|
|
||||||
self.window = Trans.wrapper.window.new(opts)
|
self.window = Trans.window.new(opts)
|
||||||
return self.window
|
return self.window
|
||||||
end
|
end
|
||||||
|
|
||||||
@ -98,8 +100,8 @@ end
|
|||||||
---@param name string @key to be checked
|
---@param name string @key to be checked
|
||||||
---@param timeout number @timeout for waiting
|
---@param timeout number @timeout for waiting
|
||||||
function M:wait(tbl, name, timeout)
|
function M:wait(tbl, name, timeout)
|
||||||
local msg = self.opts.fallback_message
|
local opts = self.opts
|
||||||
local wid = msg:width()
|
local width = opts.width
|
||||||
local spinner = Trans.style.spinner[self.opts.spinner]
|
local spinner = Trans.style.spinner[self.opts.spinner]
|
||||||
local size = #spinner
|
local size = #spinner
|
||||||
local cell = self.opts.icon.cell
|
local cell = self.opts.icon.cell
|
||||||
@ -112,15 +114,16 @@ function M:wait(tbl, name, timeout)
|
|||||||
self:init_window({
|
self:init_window({
|
||||||
win_opts = {
|
win_opts = {
|
||||||
height = 1,
|
height = 1,
|
||||||
width = wid,
|
width = width,
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
|
|
||||||
local interval = math.floor(timeout / wid)
|
local interval = math.floor(timeout / width)
|
||||||
local pause = Trans.util.pause
|
local pause = Trans.util.pause
|
||||||
for i = 1, wid do
|
for i = 1, width do
|
||||||
if tbl[name] ~= nil then break end
|
if tbl[name] ~= nil then break end
|
||||||
self.buffer[1] = update_text(i)
|
self.buffer[1] = update_text(i)
|
||||||
|
self.buffer:add_highlight(1, 'MoreMsg')
|
||||||
pause(interval)
|
pause(interval)
|
||||||
end
|
end
|
||||||
|
|
||||||
@ -141,7 +144,6 @@ function M:is_available()
|
|||||||
end
|
end
|
||||||
|
|
||||||
return M
|
return M
|
||||||
|
|
||||||
-- local error_msg = conf.icon.notfound .. ' 没有找到相关的翻译'
|
-- local error_msg = conf.icon.notfound .. ' 没有找到相关的翻译'
|
||||||
-- local buffer = require('Trans.buffer')()
|
-- local buffer = require('Trans.buffer')()
|
||||||
|
|
||||||
|
@ -7,9 +7,7 @@ local function metatable(folder_name, origin)
|
|||||||
__index = function(tbl, key)
|
__index = function(tbl, key)
|
||||||
local status, result = pcall(require, ('Trans.%s.%s'):format(folder_name, key))
|
local status, result = pcall(require, ('Trans.%s.%s'):format(folder_name, key))
|
||||||
|
|
||||||
if not status then
|
if not status then error('fail to load: ' .. key .. '\n' .. result) end
|
||||||
error('fail to load: ' .. key .. '\n' .. result)
|
|
||||||
end
|
|
||||||
|
|
||||||
tbl[key] = result
|
tbl[key] = result
|
||||||
return result
|
return result
|
||||||
@ -17,12 +15,13 @@ local function metatable(folder_name, origin)
|
|||||||
})
|
})
|
||||||
end
|
end
|
||||||
|
|
||||||
|
|
||||||
local M = metatable('core')
|
local M = metatable('core')
|
||||||
|
|
||||||
|
|
||||||
M.metatable = metatable
|
M.metatable = metatable
|
||||||
M.style = metatable("style")
|
M.style = metatable("style")
|
||||||
M.wrapper = metatable("wrapper")
|
|
||||||
|
|
||||||
M.cache = {}
|
M.cache = {}
|
||||||
|
|
||||||
return M
|
return M
|
||||||
|
@ -25,12 +25,7 @@ local text_meta = {
|
|||||||
|
|
||||||
item_meta.__index = item_meta
|
item_meta.__index = item_meta
|
||||||
text_meta.__index = function(self, key)
|
text_meta.__index = function(self, key)
|
||||||
local res = text_meta[key]
|
return text_meta[key] or (key == 1 and table.concat(self.strs, self.step) or nil)
|
||||||
if res then
|
|
||||||
return res
|
|
||||||
elseif key == 1 then
|
|
||||||
return table.concat(self.strs, self.step)
|
|
||||||
end
|
|
||||||
end
|
end
|
||||||
|
|
||||||
return {
|
return {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user