Trans.nvim/lua/Trans/core/frontend.lua

50 lines
1.4 KiB
Lua
Raw Normal View History

local Trans = require('Trans')
2023-03-12 21:33:00 +08:00
local conf = Trans.conf
local frontend_opts = conf.frontend
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-14 18:17:07 +08:00
local keymap_opts = { silent = true, expr = false, }
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?
---@field process fun(self: TransFrontend, data: TransData, result: TransResult)
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
---@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
end
})