2023-03-24 00:56:36 +08:00
|
|
|
local Trans = require 'Trans'
|
2023-03-12 21:33:00 +08:00
|
|
|
local conf = Trans.conf
|
|
|
|
local frontend_opts = conf.frontend
|
2023-03-12 20:09:08 +08:00
|
|
|
|
|
|
|
|
2023-03-14 18:17:07 +08:00
|
|
|
---Setup frontend Keymaps
|
|
|
|
---@param frontend TransFrontend
|
2023-03-12 21:33:00 +08:00
|
|
|
local function set_frontend_keymap(frontend)
|
|
|
|
local set = vim.keymap.set
|
2023-03-15 22:27:30 +08:00
|
|
|
local keymap_opts = {
|
|
|
|
silent = true,
|
|
|
|
-- expr = true,
|
2023-03-22 14:37:44 +08:00
|
|
|
-- nowait = true,
|
2023-03-15 22:27:30 +08:00
|
|
|
}
|
2023-03-12 21:33:00 +08:00
|
|
|
|
2023-03-14 18:17:07 +08:00
|
|
|
for action, key in pairs(frontend.opts.keymaps) do
|
2023-03-12 21:33:00 +08:00
|
|
|
set('n', key, function()
|
|
|
|
local instance = frontend.get_active_instance()
|
2023-03-14 13:18:53 +08:00
|
|
|
|
2023-03-12 21:33:00 +08:00
|
|
|
if instance then
|
2023-03-14 18:17:07 +08:00
|
|
|
coroutine.wrap(instance.execute)(instance, action)
|
2023-03-12 21:33:00 +08:00
|
|
|
else
|
|
|
|
return key
|
|
|
|
end
|
|
|
|
end, keymap_opts)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
|
2023-03-14 18:17:07 +08:00
|
|
|
---@class TransFrontend
|
|
|
|
---@field opts TransFrontendOpts
|
|
|
|
---@field get_active_instance fun():TransFrontend?
|
2023-03-22 21:55:08 +08:00
|
|
|
---@field process fun(self: TransFrontend, data: TransData)
|
2023-03-15 20:57:28 +08:00
|
|
|
---@field wait fun(self: TransFrontend): fun() Update wait status
|
2023-03-14 18:17:07 +08:00
|
|
|
---@field execute fun(action: string) @Execute action for frontend instance
|
2023-03-22 21:55:08 +08:00
|
|
|
---@field fallback fun() @Fallback method when no result
|
2023-03-14 18:17:07 +08:00
|
|
|
|
|
|
|
---@class Trans
|
|
|
|
---@field frontend TransFrontend
|
|
|
|
return setmetatable({}, {
|
2023-03-12 21:33:00 +08:00
|
|
|
__index = function(self, name)
|
|
|
|
local opts = vim.tbl_extend('keep', frontend_opts[name] or {}, frontend_opts.default)
|
|
|
|
|
2023-03-14 18:17:07 +08:00
|
|
|
---@type TransFrontend
|
|
|
|
local frontend = require('Trans.frontend.' .. name)
|
2023-03-12 21:33:00 +08:00
|
|
|
|
|
|
|
frontend.opts = opts
|
|
|
|
self[name] = frontend
|
|
|
|
|
|
|
|
set_frontend_keymap(frontend)
|
|
|
|
|
|
|
|
return frontend
|
2023-03-24 00:56:36 +08:00
|
|
|
end,
|
2023-03-12 21:33:00 +08:00
|
|
|
})
|