refactor: backup
This commit is contained in:
parent
eb68b8bb95
commit
82779cc299
@ -71,7 +71,6 @@ if file then
|
|||||||
end
|
end
|
||||||
|
|
||||||
-- WARNING : [Breaking change] 'Trans.json' should use json object instead of array
|
-- WARNING : [Breaking change] 'Trans.json' should use json object instead of array
|
||||||
|
|
||||||
---@class Trans
|
---@class Trans
|
||||||
---@field backend TransBackendCore
|
---@field backend TransBackendCore
|
||||||
return setmetatable(M, {
|
return setmetatable(M, {
|
||||||
|
@ -1,55 +1,39 @@
|
|||||||
local Trans = require 'Trans'
|
local Trans = require 'Trans'
|
||||||
|
|
||||||
|
---@class TransData: TransDataOption
|
||||||
---@class TransData
|
---@field mode string @The mode of the str
|
||||||
---@field from string @Source language type
|
---@field from string @Source language type
|
||||||
---@field to string @Target language type
|
---@field to string @Target language type
|
||||||
---@field is_word boolean @Is the str a word
|
|
||||||
---@field str string @The original string
|
---@field str string @The original string
|
||||||
---@field mode string @The mode of the str
|
|
||||||
---@field result table<string, TransResult|nil|false> @The result of the translation
|
---@field result table<string, TransResult|nil|false> @The result of the translation
|
||||||
---@field frontend TransFrontend
|
---@field frontend TransFrontend
|
||||||
|
---@field is_word? boolean @Is the str a word
|
||||||
---@field trace table<string, string> debug message
|
---@field trace table<string, string> debug message
|
||||||
---@field backends TransBackend[]
|
---@field backends TransBackend[]
|
||||||
local M = {}
|
local M = {}
|
||||||
M.__index = M
|
M.__index = M
|
||||||
|
|
||||||
---TransData constructor
|
---TransData constructor
|
||||||
---@param opts table
|
---@param opts TransDataOption
|
||||||
---@return TransData
|
---@return TransData
|
||||||
function M.new(opts)
|
function M.new(opts)
|
||||||
local mode = opts.mode
|
|
||||||
local str = opts.str
|
|
||||||
|
|
||||||
|
|
||||||
|
---@cast opts TransData
|
||||||
|
local mode = opts.mode
|
||||||
|
opts.result = {}
|
||||||
|
opts.trace = {}
|
||||||
local strategy = Trans.conf.strategy[mode]
|
local strategy = Trans.conf.strategy[mode]
|
||||||
local data = setmetatable({
|
|
||||||
str = str,
|
|
||||||
mode = mode,
|
|
||||||
result = {},
|
|
||||||
trace = {},
|
|
||||||
}, M)
|
|
||||||
|
|
||||||
|
|
||||||
data.frontend = Trans.frontend[strategy.frontend].new()
|
---@cast opts TransData
|
||||||
data.backends = {}
|
setmetatable(opts, M)
|
||||||
|
|
||||||
-- FIXME :
|
|
||||||
-- for i, name in ipairs(strategy.backend) do
|
|
||||||
-- data.backends[i] = Trans.backend[name]
|
|
||||||
-- end
|
|
||||||
|
|
||||||
if Trans.util.is_english(str) then
|
-- NOTE : whether should we use the default strategy
|
||||||
data.from = 'en'
|
opts.frontend = Trans.frontend[strategy.frontend].new()
|
||||||
data.to = 'zh'
|
opts.backends = {}
|
||||||
else
|
|
||||||
data.from = 'zh'
|
|
||||||
data.to = 'en'
|
|
||||||
end
|
|
||||||
|
|
||||||
data.is_word = Trans.util.is_word(str)
|
return opts
|
||||||
|
|
||||||
return data
|
|
||||||
end
|
end
|
||||||
|
|
||||||
---@class TransResult
|
---@class TransResult
|
||||||
@ -69,12 +53,8 @@ end
|
|||||||
---@return string? backend.name
|
---@return string? backend.name
|
||||||
function M:get_available_result()
|
function M:get_available_result()
|
||||||
local result = self.result
|
local result = self.result
|
||||||
|
|
||||||
if result['offline'] then return result['offline'], 'offline' end
|
|
||||||
|
|
||||||
for _, backend in ipairs(self.backends) do
|
for _, backend in ipairs(self.backends) do
|
||||||
if result[backend.name] then
|
if result[backend.name] then
|
||||||
---@diagnostic disable-next-line: return-type-mismatch
|
|
||||||
return result[backend.name], backend.name
|
return result[backend.name], backend.name
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
8
lua/Trans/core/debug.lua
Normal file
8
lua/Trans/core/debug.lua
Normal file
@ -0,0 +1,8 @@
|
|||||||
|
---@class Trans
|
||||||
|
---@field debug fun(message: string, level: number?)
|
||||||
|
|
||||||
|
return function (message, level)
|
||||||
|
level = level or vim.log.levels.INFO
|
||||||
|
-- TODO : custom messaage filter
|
||||||
|
vim.notify(message, level)
|
||||||
|
end
|
@ -6,9 +6,9 @@ local default_frontend = {
|
|||||||
query = 'fallback',
|
query = 'fallback',
|
||||||
border = 'rounded',
|
border = 'rounded',
|
||||||
title = vim.fn.has 'nvim-0.9' == 1 and {
|
title = vim.fn.has 'nvim-0.9' == 1 and {
|
||||||
{ '', 'TransTitleRound' },
|
{ '', 'TransTitleRound' },
|
||||||
{ ' Trans', 'TransTitle' },
|
{ ' Trans', 'TransTitle' },
|
||||||
{ '', 'TransTitleRound' },
|
{ '', 'TransTitleRound' },
|
||||||
} or nil, -- need nvim-0.9+
|
} or nil, -- need nvim-0.9+
|
||||||
---@type {open: string | boolean, close: string | boolean, interval: integer} Window Animation
|
---@type {open: string | boolean, close: string | boolean, interval: integer} Window Animation
|
||||||
animation = {
|
animation = {
|
||||||
@ -23,19 +23,31 @@ if Trans.conf.frontend.default then
|
|||||||
default_frontend = vim.tbl_extend('force', default_frontend, Trans.conf.frontend.default)
|
default_frontend = vim.tbl_extend('force', default_frontend, Trans.conf.frontend.default)
|
||||||
end
|
end
|
||||||
|
|
||||||
|
local function empty_method(method)
|
||||||
|
return function() error('Method [' .. method .. '] not implemented') end
|
||||||
|
end
|
||||||
|
|
||||||
|
|
||||||
---@class TransFrontend
|
---@class TransFrontend
|
||||||
---@field opts? TransFrontendOpts options which user can set
|
---@field opts? TransFrontendOpts options which user can set
|
||||||
---@field get_active_instance fun():TransFrontend?
|
---@field get_active_instance fun():TransFrontend?
|
||||||
---@field process fun(self: TransFrontend, data: TransData) @render backend result
|
|
||||||
---@field wait fun(self: TransFrontend): fun(backend: TransBackend): boolean Update wait status
|
---@field wait fun(self: TransFrontend): fun(backend: TransBackend): boolean 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 setup? fun() @Setup method for frontend [optional] **NOTE: This method will be called when frontend is first used**
|
---@field setup? fun() @Setup method for frontend [optional] **NOTE: This method will be called when frontend is first used**
|
||||||
|
local M = {
|
||||||
|
---@type fun() @Fallback method when no result
|
||||||
|
fallback = empty_method 'fallback',
|
||||||
|
---@type fun(self: TransFrontend, data: TransData) @render backend result
|
||||||
|
process = empty_method 'process',
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
---@class Trans
|
---@class Trans
|
||||||
---@field frontend TransFrontend
|
---@field frontend TransFrontend
|
||||||
return setmetatable({}, {
|
return setmetatable(M, {
|
||||||
__index = function(self, name)
|
__index = function(self, name)
|
||||||
---@type TransFrontend
|
---@type TransFrontend
|
||||||
local frontend = require('Trans.frontend.' .. name)
|
local frontend = require('Trans.frontend.' .. name)
|
||||||
|
7
lua/Trans/core/init.lua
Normal file
7
lua/Trans/core/init.lua
Normal file
@ -0,0 +1,7 @@
|
|||||||
|
-- Return Core module
|
||||||
|
local M = {}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
return M
|
@ -1,22 +1,43 @@
|
|||||||
local Trans = require 'Trans'
|
local Trans = require 'Trans'
|
||||||
|
|
||||||
-- HACK : Core process logic
|
|
||||||
local function process(opts)
|
local function process(opts)
|
||||||
opts = opts or {}
|
opts = opts or {}
|
||||||
opts.mode = opts.mode or vim.fn.mode()
|
opts.mode = opts.mode or vim.fn.mode()
|
||||||
local str = Trans.util.get_str(opts.mode)
|
local str = Trans.util.get_str(opts.mode)
|
||||||
opts.str = str
|
opts.str = str
|
||||||
|
|
||||||
if not str or str == '' then return end
|
|
||||||
|
if not str or str == '' then
|
||||||
|
Trans.debug 'No string to translate'
|
||||||
|
return
|
||||||
|
end
|
||||||
|
|
||||||
|
|
||||||
|
if opts.from == nil and opts.to == nil then
|
||||||
|
-- INFO : Default support [zh -> en] or [en -> zh]
|
||||||
|
if Trans.util.is_english(str) then
|
||||||
|
opts.from = 'en'
|
||||||
|
opts.to = 'zh'
|
||||||
|
else
|
||||||
|
opts.from = 'zh'
|
||||||
|
opts.to = 'en'
|
||||||
|
end
|
||||||
|
end
|
||||||
|
assert(opts.from and opts.to, 'opts.from and opts.to must be set at the same time')
|
||||||
|
|
||||||
|
opts.is_word = opts.is_word or Trans.util.is_word(str)
|
||||||
|
|
||||||
|
|
||||||
-- Find in cache
|
-- Find in cache
|
||||||
if Trans.cache[str] then
|
if Trans.cache[str] then
|
||||||
local data = Trans.cache[str]
|
local data = Trans.cache[str]
|
||||||
data.frontend:process(data)
|
return data.frontend:process(data)
|
||||||
return
|
|
||||||
end
|
end
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
-- Create new data
|
||||||
local data = Trans.data.new(opts)
|
local data = Trans.data.new(opts)
|
||||||
if Trans.strategy[data.frontend.opts.query](data) then
|
if Trans.strategy[data.frontend.opts.query](data) then
|
||||||
Trans.cache[data.str] = data
|
Trans.cache[data.str] = data
|
||||||
@ -26,9 +47,18 @@ local function process(opts)
|
|||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
---@class Trans
|
|
||||||
---@field translate fun(opts: { frontend: string?, mode: string?}?) Translate string core function
|
|
||||||
|
|
||||||
return function(opts)
|
---@class TransDataOption
|
||||||
coroutine.wrap(process)(opts)
|
---@field mode string?
|
||||||
end
|
---@field frontend string?
|
||||||
|
---@field from string? @Source language type
|
||||||
|
---@field to string? @Target language type
|
||||||
|
---@field is_word? boolean @Is the str a word
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
--- NOTE : Use coroutine to stop and resume the process (for animation)
|
||||||
|
|
||||||
|
---@class Trans
|
||||||
|
---@field translate fun(opts: TransDataOption?) Translate string core function
|
||||||
|
return function(...) coroutine.wrap(process)(...) end
|
||||||
|
@ -38,21 +38,21 @@ end
|
|||||||
---Get selected text
|
---Get selected text
|
||||||
---@return string
|
---@return string
|
||||||
function M.get_lines()
|
function M.get_lines()
|
||||||
local _start = vim.fn.getpos 'v'
|
local _start = vim.fn.getpos 'v'
|
||||||
local _end = vim.fn.getpos '.'
|
local _end = vim.fn.getpos '.'
|
||||||
|
|
||||||
if _start[2] > _end[2] then
|
if _start[2] > _end[2] then
|
||||||
_start, _end = _end, _start
|
_start, _end = _end, _start
|
||||||
end
|
end
|
||||||
|
|
||||||
local s_row, e_row = _start[2], _end[2]
|
local s_row, e_row = _start[2], _end[2]
|
||||||
|
|
||||||
if s_row == e_row then
|
if s_row == e_row then
|
||||||
return vim.fn.getline(s_row)
|
return vim.fn.getline(s_row)
|
||||||
else
|
else
|
||||||
local lines = vim.fn.getline(s_row, e_row)
|
local lines = vim.fn.getline(s_row, e_row)
|
||||||
return table.concat(lines, " ")
|
return table.concat(lines, ' ')
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
---Get Text which need to be translated
|
---Get Text which need to be translated
|
||||||
@ -224,6 +224,13 @@ function M.list_fields(list, field)
|
|||||||
return ret
|
return ret
|
||||||
end
|
end
|
||||||
|
|
||||||
|
-- function M.checker(method, ...)
|
||||||
|
-- -- TODO :Use function programming to simplify the code
|
||||||
|
-- local params = { ... }
|
||||||
|
|
||||||
|
-- end
|
||||||
|
|
||||||
|
|
||||||
---@class Trans
|
---@class Trans
|
||||||
---@field util TransUtil
|
---@field util TransUtil
|
||||||
return M
|
return M
|
||||||
|
Loading…
x
Reference in New Issue
Block a user