refactor: remove conf.query, use conf.frontend.query
This commit is contained in:
parent
6def81f2c6
commit
a3b0a21d08
@ -6,7 +6,6 @@
|
|||||||
return {
|
return {
|
||||||
---@type string the directory for database file and password file
|
---@type string the directory for database file and password file
|
||||||
dir = require('Trans').relative_path({ 'extra' }, true),
|
dir = require('Trans').relative_path({ 'extra' }, true),
|
||||||
query = 'fallback',
|
|
||||||
debug = true,
|
debug = true,
|
||||||
---@type 'default' | 'dracula' | 'tokyonight' global Trans theme [see lua/Trans/style/theme.lua]
|
---@type 'default' | 'dracula' | 'tokyonight' global Trans theme [see lua/Trans/style/theme.lua]
|
||||||
theme = 'default', -- default | tokyonight | dracula
|
theme = 'default', -- default | tokyonight | dracula
|
||||||
@ -22,8 +21,9 @@ return {
|
|||||||
---@class TransFrontendOpts
|
---@class TransFrontendOpts
|
||||||
---@field keymaps table<string, string>
|
---@field keymaps table<string, string>
|
||||||
default = {
|
default = {
|
||||||
border = 'rounded',
|
query = 'fallback',
|
||||||
title = vim.fn.has('nvim-0.9') == 1 and {
|
border = 'rounded',
|
||||||
|
title = vim.fn.has('nvim-0.9') == 1 and {
|
||||||
{ '', 'TransTitleRound' },
|
{ '', 'TransTitleRound' },
|
||||||
{ ' Trans', 'TransTitle' },
|
{ ' Trans', 'TransTitle' },
|
||||||
{ '', 'TransTitleRound' },
|
{ '', 'TransTitleRound' },
|
||||||
@ -35,22 +35,22 @@ return {
|
|||||||
close = 'slid',
|
close = 'slid',
|
||||||
interval = 12,
|
interval = 12,
|
||||||
},
|
},
|
||||||
timeout = 2000,
|
timeout = 2000,
|
||||||
},
|
},
|
||||||
---@class TransHoverOpts : TransFrontendOpts
|
---@class TransHoverOpts : TransFrontendOpts
|
||||||
hover = {
|
hover = {
|
||||||
---@type integer Max Width of Hover Window
|
---@type integer Max Width of Hover Window
|
||||||
width = 37,
|
width = 37,
|
||||||
---@type integer Max Height of Hover Window
|
---@type integer Max Height of Hover Window
|
||||||
height = 27,
|
height = 27,
|
||||||
---@type string -- see: /lua/Trans/style/spinner
|
---@type string -- see: /lua/Trans/style/spinner
|
||||||
spinner = 'dots',
|
spinner = 'dots',
|
||||||
---@type string -- TODO :support replace with {{special word}}
|
---@type string
|
||||||
fallback_message = '{{notfound}} 翻译超时或没有找到相关的翻译',
|
fallback_message = '{{notfound}} 翻译超时或没有找到相关的翻译',
|
||||||
auto_resize = true,
|
auto_resize = true,
|
||||||
-- strict_sentence_width = false,
|
unlimit_sentence_width = true,
|
||||||
padding = 10, -- padding for hover window width
|
padding = 10, -- padding for hover window width
|
||||||
keymaps = {
|
keymaps = {
|
||||||
pageup = '[[',
|
pageup = '[[',
|
||||||
pagedown = ']]',
|
pagedown = ']]',
|
||||||
pin = '<leader>[',
|
pin = '<leader>[',
|
||||||
@ -59,13 +59,13 @@ return {
|
|||||||
-- play = '_', -- Deprecated
|
-- play = '_', -- Deprecated
|
||||||
},
|
},
|
||||||
---@type string[] auto close events
|
---@type string[] auto close events
|
||||||
auto_close_events = {
|
auto_close_events = {
|
||||||
'InsertEnter',
|
'InsertEnter',
|
||||||
'CursorMoved',
|
'CursorMoved',
|
||||||
'BufLeave',
|
'BufLeave',
|
||||||
},
|
},
|
||||||
---@type table<string, string[]> order to display translate result
|
---@type table<string, string[]> order to display translate result
|
||||||
order = {
|
order = {
|
||||||
default = {
|
default = {
|
||||||
'str',
|
'str',
|
||||||
'translation',
|
'translation',
|
||||||
@ -87,7 +87,7 @@ return {
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
---@type table<string, string>
|
---@type table<string, string>
|
||||||
icon = {
|
icon = {
|
||||||
-- or use emoji
|
-- or use emoji
|
||||||
list = '●', -- ● | ○ | ◉ | ◯ | ◇ | ◆ | ▪ | ▫ | ⬤ | 🟢 | 🟡 | 🟣 | 🟤 | 🟠| 🟦 | 🟨 | 🟧 | 🟥 | 🟪 | 🟫 | 🟩 | 🟦
|
list = '●', -- ● | ○ | ◉ | ◯ | ◇ | ◆ | ▪ | ▫ | ⬤ | 🟢 | 🟡 | 🟣 | 🟤 | 🟠| 🟦 | 🟨 | 🟧 | 🟥 | 🟪 | 🟫 | 🟩 | 🟦
|
||||||
star = '', -- ⭐ | ✴ | ✳ | ✲ | ✱ | ✰ | ★ | ☆ | 🌟 | 🌠 | 🌙 | 🌛 | 🌜 | 🌟 | 🌠 | 🌌 | 🌙 |
|
star = '', -- ⭐ | ✴ | ✳ | ✲ | ✱ | ✰ | ★ | ☆ | 🌟 | 🌠 | 🌙 | 🌛 | 🌜 | 🌟 | 🌠 | 🌌 | 🌙 |
|
||||||
|
@ -79,6 +79,7 @@ local function process(opts)
|
|||||||
local str = opts.str
|
local str = opts.str
|
||||||
if not str or str == '' then return end
|
if not str or str == '' then return end
|
||||||
|
|
||||||
|
|
||||||
-- 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]
|
||||||
@ -87,7 +88,7 @@ local function process(opts)
|
|||||||
end
|
end
|
||||||
|
|
||||||
local data = Trans.data.new(opts)
|
local data = Trans.data.new(opts)
|
||||||
if strategy[Trans.conf.query](data) then
|
if strategy[data.frontend.opts.query](data) then
|
||||||
Trans.cache[data.str] = data
|
Trans.cache[data.str] = data
|
||||||
data.frontend:process(data)
|
data.frontend:process(data)
|
||||||
else
|
else
|
||||||
|
@ -19,7 +19,6 @@ end
|
|||||||
---@field play function @Use tts to play string
|
---@field play function @Use tts to play string
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
local separator = vim.loop.os_uname().sysname == "Windows" and "\\" or "/"
|
local separator = vim.loop.os_uname().sysname == "Windows" and "\\" or "/"
|
||||||
---@class Trans
|
---@class Trans
|
||||||
---@field style table @Style module
|
---@field style table @Style module
|
||||||
|
@ -7,6 +7,10 @@ local util = require('Trans').util
|
|||||||
|
|
||||||
---@class TransItem : TransNode
|
---@class TransItem : TransNode
|
||||||
local item_meta = {
|
local item_meta = {
|
||||||
|
---@param self TransItem
|
||||||
|
---@param buffer TransBuffer
|
||||||
|
---@param line integer
|
||||||
|
---@param col integer
|
||||||
render = function(self, buffer, line, col)
|
render = function(self, buffer, line, col)
|
||||||
if self[2] then
|
if self[2] then
|
||||||
buffer:add_highlight(line, self[2], col, col + #self[1])
|
buffer:add_highlight(line, self[2], col, col + #self[1])
|
||||||
@ -25,7 +29,7 @@ local text_meta = {
|
|||||||
render = function(self, buffer, line, col)
|
render = function(self, buffer, line, col)
|
||||||
local nodes = self.nodes
|
local nodes = self.nodes
|
||||||
local step = self.step
|
local step = self.step
|
||||||
local len = step and #step or 0
|
local len = step and #step or 0
|
||||||
|
|
||||||
for _, node in ipairs(nodes) do
|
for _, node in ipairs(nodes) do
|
||||||
node:render(buffer, line, col)
|
node:render(buffer, line, col)
|
||||||
@ -48,7 +52,7 @@ end
|
|||||||
|
|
||||||
|
|
||||||
---@param nodes {[number]: TransNode, step: string?}
|
---@param nodes {[number]: TransNode, step: string?}
|
||||||
---@return table
|
---@return TransText
|
||||||
local function text(nodes)
|
local function text(nodes)
|
||||||
return setmetatable({
|
return setmetatable({
|
||||||
[1] = table.concat(util.list_fields(nodes, 1), nodes.step),
|
[1] = table.concat(util.list_fields(nodes, 1), nodes.step),
|
||||||
@ -59,6 +63,7 @@ end
|
|||||||
|
|
||||||
|
|
||||||
---@param args {[number]: TransNode, width: integer, spin: string?}
|
---@param args {[number]: TransNode, width: integer, spin: string?}
|
||||||
|
---@return TransText
|
||||||
local function format(args)
|
local function format(args)
|
||||||
local width = args.width
|
local width = args.width
|
||||||
local spin = args.spin or " "
|
local spin = args.spin or " "
|
||||||
@ -68,11 +73,11 @@ local function format(args)
|
|||||||
wid = wid + args[i][1]:width()
|
wid = wid + args[i][1]:width()
|
||||||
end
|
end
|
||||||
|
|
||||||
local space = math.max(math.floor((width - wid) / (size - 1)), 0)
|
|
||||||
|
|
||||||
args.step = spin:rep(space)
|
local space = math.max(math.floor((width - wid) / (size - 1)), 0)
|
||||||
args.width = nil
|
args.step = spin:rep(space)
|
||||||
args.spin = nil
|
args.width = nil
|
||||||
|
args.spin = nil
|
||||||
|
|
||||||
---@diagnostic disable-next-line: param-type-mismatch
|
---@diagnostic disable-next-line: param-type-mismatch
|
||||||
return text(args)
|
return text(args)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user