refactor: begin to try to refactor frontend part

This commit is contained in:
JuanZoran 2023-03-12 22:12:33 +08:00
parent f86ff7b615
commit 3c28af5314
6 changed files with 176 additions and 155 deletions

View File

@ -56,6 +56,7 @@ return {
'definition', 'definition',
}, },
spinner = 'dots', -- see: /lua/Trans/style/spinner spinner = 'dots', -- see: /lua/Trans/style/spinner
fallback_message = '翻译超时或没有找到相关的翻译' -- TODO :support replace with {{special word}}
}, },
}, },
style = { style = {

View File

@ -65,14 +65,6 @@ local function set_result(data)
end end
local function render_window(data)
-- TODO :
vim.pretty_print(data)
print('begin to render window')
end
-- HACK : Core process logic -- HACK : Core process logic
local function process(opts) local function process(opts)
Trans.translate = coroutine.wrap(process) Trans.translate = coroutine.wrap(process)
@ -82,8 +74,8 @@ local function process(opts)
-- Find in cache -- Find in cache
if Trans.cache[str] then if Trans.cache[str] then
local data = Trans.cache[opts.str] local data = Trans.cache[str]
render_window(data) data.frontend:process(data)
return return
end end
@ -101,7 +93,7 @@ local function process(opts)
if success == false then return end if success == false then return end
Trans.cache[data.str] = data Trans.cache[data.str] = data
render_window(data) data.frontend:process(data)
end end
return coroutine.wrap(process) return coroutine.wrap(process)

View File

@ -1,21 +1,21 @@
local api = vim.api -- local api = vim.api
local conf = require('Trans').conf -- local conf = require('Trans').conf
local buffer = require('Trans.buffer')() -- local buffer = require('Trans.buffer')()
local node = require("Trans.node") -- local node = require("Trans.node")
local t = node.text -- local t = node.text
local it = node.item -- local it = node.item
local f = node.format -- local f = node.format
local engine_map = { -- local engine_map = {
baidu = '百度', -- baidu = '百度',
youdao = '有道', -- youdao = '有道',
iciba = 'iciba', -- iciba = 'iciba',
offline = '本地', -- offline = '本地',
} -- }
local function set_tag_hl(name, status) -- local function set_tag_hl(name, status)
-- local hl = conf.float.tag[status] -- local hl = conf.float.tag[status]
-- m_window:set_hl(name, { -- m_window:set_hl(name, {
-- fg = '#000000', -- fg = '#000000',
@ -25,9 +25,9 @@ local function set_tag_hl(name, status)
-- m_window:set_hl(name .. 'round', { -- m_window:set_hl(name .. 'round', {
-- fg = hl, -- fg = hl,
-- }) -- })
end -- end
local function set_title() -- local function set_title()
-- local title = m_window:new_content() -- local title = m_window:new_content()
-- local github = ' https://github.com/JuanZoran/Trans.nvim' -- local github = ' https://github.com/JuanZoran/Trans.nvim'
@ -50,19 +50,19 @@ local function set_title()
-- load_tag('offline', 1) -- load_tag('offline', 1)
-- title:addline(unpack(tags)) -- title:addline(unpack(tags))
-- title:newline('') -- title:newline('')
end -- end
local action = { -- local action = {
quit = function() -- quit = function()
-- m_window:try_close() -- -- m_window:try_close()
end, -- end,
} -- }
local exist = function(str) -- local exist = function(str)
return str and str ~= '' -- return str and str ~= ''
end -- end
local function process() -- local function process()
-- TODO : -- TODO :
-- local icon = conf.icon -- local icon = conf.icon
-- m_content:addline(m_content:format { -- m_content:addline(m_content:format {
@ -79,16 +79,16 @@ local function process()
-- width = math.floor(m_window.width * 0.5) -- width = math.floor(m_window.width * 0.5)
-- }) -- })
-- m_content:addline(it('该窗口还属于实验性功能 .... ')) -- m_content:addline(it('该窗口还属于实验性功能 .... '))
end -- end
return function(word) -- return function(word)
buffer:init() -- buffer:init()
-- TODO :online query -- -- TODO :online query
-- local float = conf.float -- -- local float = conf.float
vim.notify([[ -- vim.notify([[
[]: -- [注意]:
float窗口目前还待开发 -- float窗口目前还待开发
input查询功能, hover]]) -- 如果需要input查询功能, 请将窗口改成hover]])
-- local opt = { -- local opt = {
-- relative = 'editor', -- relative = 'editor',
-- width = float.width, -- width = float.width,
@ -117,4 +117,4 @@ float窗口目前还待开发
-- for act, key in pairs(float.keymap) do -- for act, key in pairs(float.keymap) do
-- m_window:map(key, action[act]) -- m_window:map(key, action[act])
-- end -- end
end -- end

View File

@ -0,0 +1,27 @@
local strategy = {
play = function(self)
print('TODO: play')
end,
pageup = function()
print('TODO: pageup')
end,
pagedown = function()
print('TODO: pagedown')
end,
pin = function()
print('TODO: pin')
end,
close = function()
print('TODO: close')
end,
toggle_entry = function()
print('TODO: toggle_entry')
end,
}
return function(self, action)
-- TODO :
strategy[action](self)
end

View File

@ -1,29 +1,54 @@
local M = {}
local Trans = require('Trans') local Trans = require('Trans')
local style = Trans.conf.style
local M = Trans.metatable('frontend.hover')
M.queue = {}
M.__index = M M.__index = M
function M.new(data)
return setmetatable({ function M.new()
local new_instance = {
buffer = Trans.wrapper.buffer.new(), buffer = Trans.wrapper.buffer.new(),
}, M) }
M.queue[#M.queue + 1] = new_instance
return setmetatable(new_instance, M)
end end
function M.get_active_instance() function M.get_active_instance()
-- TODO : M.clear_dead_instance()
return M.queue[1]
end end
function M.clear_dead_instance() function M.clear_dead_instance()
-- TODO : for i = #M.queue, 1, -1 do
if not M.queue[i]:is_available() then
table.remove(M.queue, i)
end
end
end
function M.new_window()
end end
function M:wait(tbl, name, timeout) function M:wait(tbl, name, timeout)
local error_message = 'Faild' local msg = self.opts.fallback_message
local interval = math.floor(timeout / #error_message) local wid = msg:width()
for i = 1, #error_message do local spinner = Trans.style.spinner[self.opts.spinner]
local size = #spinner
local function update_text(times)
return spinner[times % size + 1] .. ('.'):rep(times)
end
local interval = math.floor(timeout / wid)
for i = 1, wid do
if tbl[name] ~= nil then break end if tbl[name] ~= nil then break end
print('waitting' .. ('.'):rep(i)) print(update_text(i))
Trans.util.pause(interval) Trans.util.pause(interval)
end end
@ -31,42 +56,17 @@ function M:wait(tbl, name, timeout)
end end
function M:process(data) function M:process(data)
vim.pretty_print(data.result)
print('TODO: process data') print('TODO: process data')
end end
function M:is_available() function M:is_available()
return true return self.buffer:is_valid() and self.window:is_valid()
end
function M:execute(action)
-- M.actions = {
-- play = function()
-- print('TODO: play')
-- end,
-- pageup = function()
-- print('TODO: pageup')
-- end,
-- pagedown = function()
-- print('TODO: pagedown')
-- end,
-- pin = function()
-- print('TODO: pin')
-- end,
-- close = function()
-- print('TODO: close')
-- end,
-- toggle_entry = function()
-- print('TODO: toggle_entry')
-- end,
-- }
end end
return M return M
-- local hover = conf.hover
-- local error_msg = conf.icon.notfound .. ' 没有找到相关的翻译' -- local error_msg = conf.icon.notfound .. ' 没有找到相关的翻译'
-- local buffer = require('Trans.buffer')() -- local buffer = require('Trans.buffer')()
-- local node = require('Trans.node') -- local node = require('Trans.node')

View File

@ -1,5 +1,6 @@
local api, fn = vim.api, vim.fn local api, fn = vim.api, vim.fn
string.width = api.nvim_strwidth
--- INFO :Define string play method --- INFO :Define string play method
if fn.has('linux') == 1 then if fn.has('linux') == 1 then
string.play = function(self) string.play = function(self)