2023-05-06 10:08:43 +08:00
|
|
|
local Trans = require 'Trans'
|
|
|
|
local frontend_opts = Trans.conf.frontend
|
2023-03-12 20:09:08 +08:00
|
|
|
|
|
|
|
|
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-26 20:07:04 +08:00
|
|
|
---@field wait fun(self: TransFrontend): fun(backend: TransBackend): boolean 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-24 11:09:04 +08:00
|
|
|
---@field setup? fun() @Setup method for frontend [optional] **NOTE: This method will be called when frontend is first used**
|
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
|
|
|
|
|
2023-03-24 11:09:04 +08:00
|
|
|
if frontend.setup then
|
|
|
|
frontend.setup()
|
|
|
|
end
|
2023-03-12 21:33:00 +08:00
|
|
|
return frontend
|
2023-03-24 00:56:36 +08:00
|
|
|
end,
|
2023-03-12 21:33:00 +08:00
|
|
|
})
|