refactor: remove auto setup frontend keymap
This commit is contained in:
parent
82fa2a008a
commit
a4dff90064
@ -160,10 +160,11 @@ end
|
|||||||
|
|
||||||
---@nodiscard
|
---@nodiscard
|
||||||
---TransBuffer constructor
|
---TransBuffer constructor
|
||||||
|
---@param bufnr? integer buffer handle
|
||||||
---@return TransBuffer
|
---@return TransBuffer
|
||||||
function buffer.new()
|
function buffer.new(bufnr)
|
||||||
local new_buf = setmetatable({}, buffer)
|
local new_buf = setmetatable({}, buffer)
|
||||||
new_buf:init()
|
new_buf:init(bufnr)
|
||||||
return new_buf
|
return new_buf
|
||||||
end
|
end
|
||||||
|
|
||||||
|
@ -3,30 +3,6 @@ local conf = Trans.conf
|
|||||||
local frontend_opts = conf.frontend
|
local frontend_opts = conf.frontend
|
||||||
|
|
||||||
|
|
||||||
---Setup frontend Keymaps
|
|
||||||
---@param frontend TransFrontend
|
|
||||||
local function set_frontend_keymap(frontend)
|
|
||||||
local set = vim.keymap.set
|
|
||||||
local keymap_opts = {
|
|
||||||
silent = true,
|
|
||||||
-- expr = true,
|
|
||||||
-- nowait = true,
|
|
||||||
}
|
|
||||||
|
|
||||||
for action, key in pairs(frontend.opts.keymaps) do
|
|
||||||
set('n', key, function()
|
|
||||||
local instance = frontend.get_active_instance()
|
|
||||||
|
|
||||||
if instance then
|
|
||||||
coroutine.wrap(instance.execute)(instance, action)
|
|
||||||
else
|
|
||||||
return key
|
|
||||||
end
|
|
||||||
end, keymap_opts)
|
|
||||||
end
|
|
||||||
end
|
|
||||||
|
|
||||||
|
|
||||||
---@class TransFrontend
|
---@class TransFrontend
|
||||||
---@field opts TransFrontendOpts
|
---@field opts TransFrontendOpts
|
||||||
---@field get_active_instance fun():TransFrontend?
|
---@field get_active_instance fun():TransFrontend?
|
||||||
@ -34,6 +10,7 @@ end
|
|||||||
---@field wait fun(self: TransFrontend): fun() Update wait status
|
---@field wait fun(self: TransFrontend): fun() Update wait status
|
||||||
---@field execute fun(action: string) @Execute action for frontend instance
|
---@field execute fun(action: string) @Execute action for frontend instance
|
||||||
---@field fallback fun() @Fallback method when no result
|
---@field fallback fun() @Fallback method when no result
|
||||||
|
---@field setup? fun() @Setup method for frontend [optional] **NOTE: This method will be called when frontend is first used**
|
||||||
|
|
||||||
---@class Trans
|
---@class Trans
|
||||||
---@field frontend TransFrontend
|
---@field frontend TransFrontend
|
||||||
@ -47,8 +24,9 @@ return setmetatable({}, {
|
|||||||
frontend.opts = opts
|
frontend.opts = opts
|
||||||
self[name] = frontend
|
self[name] = frontend
|
||||||
|
|
||||||
set_frontend_keymap(frontend)
|
if frontend.setup then
|
||||||
|
frontend.setup()
|
||||||
|
end
|
||||||
return frontend
|
return frontend
|
||||||
end,
|
end,
|
||||||
})
|
})
|
||||||
|
@ -1,20 +1,16 @@
|
|||||||
-- local api = vim.api
|
local Trans = require 'Trans'
|
||||||
-- local conf = require('Trans').conf
|
|
||||||
-- local buffer = require('Trans.buffer')()
|
|
||||||
|
|
||||||
-- local node = require("Trans.node")
|
---@class TransFloat
|
||||||
-- local t = node.text
|
local M = {}
|
||||||
-- local it = node.item
|
|
||||||
-- local f = node.format
|
function M.new()
|
||||||
|
-- TODO :
|
||||||
|
|
||||||
|
end
|
||||||
|
|
||||||
|
|
||||||
-- local engine_map = {
|
|
||||||
-- baidu = '百度',
|
|
||||||
-- youdao = '有道',
|
|
||||||
-- iciba = 'iciba',
|
|
||||||
-- offline = '本地',
|
|
||||||
-- }
|
|
||||||
|
|
||||||
|
return M
|
||||||
-- 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, {
|
||||||
@ -118,3 +114,10 @@
|
|||||||
-- m_window:map(key, action[act])
|
-- m_window:map(key, action[act])
|
||||||
-- end
|
-- end
|
||||||
-- end
|
-- end
|
||||||
|
|
||||||
|
-- local engine_map = {
|
||||||
|
-- baidu = '百度',
|
||||||
|
-- youdao = '有道',
|
||||||
|
-- iciba = 'iciba',
|
||||||
|
-- offline = '本地',
|
||||||
|
-- }
|
||||||
|
@ -17,6 +17,22 @@ local M = Trans.metatable('frontend.hover', {
|
|||||||
})
|
})
|
||||||
M.__index = M
|
M.__index = M
|
||||||
|
|
||||||
|
|
||||||
|
function M.setup()
|
||||||
|
local set = vim.keymap.set
|
||||||
|
for action, key in pairs(M.opts.keymaps) do
|
||||||
|
set('n', key, function()
|
||||||
|
local instance = M.get_active_instance()
|
||||||
|
|
||||||
|
if instance then
|
||||||
|
coroutine.wrap(instance.execute)(instance, action)
|
||||||
|
else
|
||||||
|
return key
|
||||||
|
end
|
||||||
|
end)
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
---Create a new hover instance
|
---Create a new hover instance
|
||||||
---@return TransHover new_instance
|
---@return TransHover new_instance
|
||||||
function M.new()
|
function M.new()
|
||||||
@ -27,7 +43,6 @@ function M.new()
|
|||||||
}
|
}
|
||||||
M.queue[#M.queue + 1] = new_instance
|
M.queue[#M.queue + 1] = new_instance
|
||||||
|
|
||||||
new_instance.buffer:deleteline(1)
|
|
||||||
return setmetatable(new_instance, M)
|
return setmetatable(new_instance, M)
|
||||||
end
|
end
|
||||||
|
|
||||||
@ -186,8 +201,8 @@ function M:process(data)
|
|||||||
return
|
return
|
||||||
end
|
end
|
||||||
|
|
||||||
local opts = self.opts
|
|
||||||
local util = Trans.util
|
local util = Trans.util
|
||||||
|
local opts = self.opts
|
||||||
local buffer = self.buffer
|
local buffer = self.buffer
|
||||||
|
|
||||||
if opts.auto_play then
|
if opts.auto_play then
|
||||||
@ -210,8 +225,9 @@ function M:process(data)
|
|||||||
local lines = buffer:lines()
|
local lines = buffer:lines()
|
||||||
|
|
||||||
|
|
||||||
|
local valid = window and window:is_valid()
|
||||||
local width =
|
local width =
|
||||||
window and window:is_valid() and
|
valid and
|
||||||
(opts.auto_resize and
|
(opts.auto_resize and
|
||||||
math.max(
|
math.max(
|
||||||
math.min(opts.width, util.display_width(lines) + opts.padding),
|
math.min(opts.width, util.display_width(lines) + opts.padding),
|
||||||
@ -222,7 +238,7 @@ function M:process(data)
|
|||||||
|
|
||||||
local height = math.min(opts.height, util.display_height(lines, width))
|
local height = math.min(opts.height, util.display_height(lines, width))
|
||||||
|
|
||||||
if window and window:is_valid() then
|
if valid then
|
||||||
window:resize { width = width, height = height }
|
window:resize { width = width, height = height }
|
||||||
else
|
else
|
||||||
window = self:init_window {
|
window = self:init_window {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user