fix: fix toggle entry will trigger auto_close events

This commit is contained in:
JuanZoran 2023-03-19 20:15:36 +08:00
parent 3eae6a40e9
commit 8be4fb7303
7 changed files with 34 additions and 27 deletions

View File

@ -152,9 +152,6 @@ function M.formatter(body, data)
}, },
web = body.web, web = body.web,
explains = body.basic.explains, explains = body.basic.explains,
-- phrases = body.phrases,
-- synonyms = body.synonyms,
-- sentenceSample = body.sentenceSample,
[data.from == 'en' and 'translation' or 'definition'] = body.translation, [data.from == 'en' and 'translation' or 'definition'] = body.translation,
} }

View File

@ -14,13 +14,13 @@ end
---@class TransConf ---@class TransConf
return { return {
---@type string the directory for database file and password file ---@type string the directory for database file and password file
dir = os.getenv('HOME') .. '/.vim/dict', dir = os.getenv('HOME') .. '/.vim/dict',
query = 'fallback', query = 'fallback',
debug = true, debug = true,
-- backend_order = {},
---@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
strategy = { backend_order = nil,
strategy = {
---@type { frontend:string, backend:string | string[] } fallback strategy for mode ---@type { frontend:string, backend:string | string[] } fallback strategy for mode
default = { default = {
frontend = 'hover', frontend = 'hover',
@ -28,14 +28,13 @@ return {
}, },
}, },
---@type table frontend options ---@type table frontend options
frontend = { frontend = {
---@class TransFrontendOpts ---@class TransFrontendOpts
---@field keymaps table<string, string> ---@field keymaps table<string, string>
default = { default = {
---@type boolean Whether to auto play the audio
auto_play = true,
border = 'rounded', border = 'rounded',
title = title, -- need nvim-0.9 title = title, -- need nvim-0.9+
auto_play = true,
---@type {open: string | boolean, close: string | boolean, interval: integer} Hover Window Animation ---@type {open: string | boolean, close: string | boolean, interval: integer} Hover Window Animation
animation = { animation = {
open = 'slid', -- 'fold', 'slid' open = 'slid', -- 'fold', 'slid'
@ -55,6 +54,7 @@ return {
---@type string -- TODO :support replace with {{special word}} ---@type string -- TODO :support replace with {{special word}}
fallback_message = '{{notfound}} 翻译超时或没有找到相关的翻译', fallback_message = '{{notfound}} 翻译超时或没有找到相关的翻译',
auto_resize = true, auto_resize = true,
-- strict_sentence_width = false,
-- strict = false, -- TODO :No Width limit when str is a sentence -- strict = false, -- TODO :No Width limit when str is a sentence
padding = 10, -- padding for hover window width padding = 10, -- padding for hover window width
keymaps = { keymaps = {
@ -96,18 +96,18 @@ return {
---@type table<string, string> ---@type table<string, string>
icon = { icon = {
-- or use emoji -- or use emoji
list = '', -- ● | ○ | ◉ | ◯ | ◇ | ◆ | ▪ | ▫ | ⬤ | 🟢 | 🟡 | 🟣 | 🟤 | 🟦 | 🟨 | 🟧 | 🟥 | 🟪 | 🟫 | 🟩 | 🟠 | 🟦 | 🟨 | 🟧 | 🟥 | 🟪 | 🟫 | 🟩 | 🟠 list = '', -- ● | ○ | ◉ | ◯ | ◇ | ◆ | ▪ | ▫ | ⬤ | 🟢 | 🟡 | 🟣 | 🟤 | 🟠| 🟦 | 🟨 | 🟧 | 🟥 | 🟪 | 🟫 | 🟩 | 🟦
star = '', -- ⭐ | ✴ | ✳ | ✲ | ✱ | ✰ | ★ | ☆ | 🌟 | 🌠 | 🌙 | 🌛 | 🌜 | 🌟 | 🌠 | 🌌 | 🌙 | star = '', -- ⭐ | ✴ | ✳ | ✲ | ✱ | ✰ | ★ | ☆ | 🌟 | 🌠 | 🌙 | 🌛 | 🌜 | 🌟 | 🌠 | 🌌 | 🌙 |
notfound = '', --❔ | ❓ | ❗ | ❕| notfound = '', --❔ | ❓ | ❗ | ❕|
yes = '', -- ✅ | ✔️ | ☑ yes = '', -- ✅ | ✔️ | ☑
no = '', -- ❌ | ❎ | ✖ | ✘ | ✗ | no = '', -- ❌ | ❎ | ✖ | ✘ | ✗ |
cell = '', -- ■ | □ | ▇ | ▏ ▎ ▍ ▌ ▋ ▊ ▉ █ cell = '', -- ■ | □ | ▇ | ▏ ▎ ▍ ▌ ▋ ▊ ▉
web = '󰖟', --🌍 | 🌎 | 🌏 | 🌐 | web = '󰖟', --🌍 | 🌎 | 🌏 | 🌐 |
tag = '', tag = '',
pos = '', pos = '',
translation = '󰊿',
definition = '󰗊',
exchange = '', exchange = '',
definition = '󰗊',
translation = '󰊿',
}, },
}, },
}, },

View File

@ -47,8 +47,7 @@ function M.new(opts)
data.to = 'en' data.to = 'en'
end end
-- FIXME : Check if the str is a word data.is_word = Trans.util.is_word(str)
data.is_word = true
return data return data
end end

View File

@ -60,6 +60,7 @@ local strategy = {
local update = data.frontend:wait() local update = data.frontend:wait()
for _, backend in ipairs(data.backends) do for _, backend in ipairs(data.backends) do
do_query(data, backend) do_query(data, backend)
local name = backend.name local name = backend.name
---@cast backend TransBackend ---@cast backend TransBackend
while result[name] == nil do while result[name] == nil do

View File

@ -181,6 +181,14 @@ function M.visible_lines(opts)
return api.nvim_buf_get_lines(0, _start, _end, false) return api.nvim_buf_get_lines(0, _start, _end, false)
end end
---Detect whether the string is a word
---@param str string
---@return boolean
function M.is_word(str)
return str:match('%w+') == str
end
---@class Trans ---@class Trans
---@field util TransUtil ---@field util TransUtil
return M return M

View File

@ -1,3 +1,4 @@
---@type Trans
local Trans = require("Trans") local Trans = require("Trans")
-- FIXME :Adjust Window Size -- FIXME :Adjust Window Size
@ -103,7 +104,7 @@ end
---@return string formatted text ---@return string formatted text
---@return integer _ replaced count ---@return integer _ replaced count
function M:icon_format(format) function M:icon_format(format)
return format:gsub("{{(%w+)}}", self.opts.icon, 1) return format:gsub("{{(%w+)}}", self.opts.icon)
end end
---Get Check function for waiting ---Get Check function for waiting
@ -162,12 +163,13 @@ function M:defer()
local auto_close_events = self.opts.auto_close_events local auto_close_events = self.opts.auto_close_events
if auto_close_events then if auto_close_events then
vim.api.nvim_create_autocmd(auto_close_events, { vim.api.nvim_create_autocmd(auto_close_events, {
once = true, callback = function(opts)
callback = function() vim.defer_fn(function()
if self.pin then if not self.pin and vim.api.nvim_get_current_win() ~= self.window.winid then
return pcall(vim.api.nvim_del_autocmd, opts.id)
end self:destroy()
self:destroy() end
end, 0)
end, end,
}) })
end end
@ -213,6 +215,7 @@ function M:process(data)
else else
display_size.width = nil display_size.width = nil
end end
window:resize(display_size) window:resize(display_size)
else else
window = self:init_window { window = self:init_window {

View File

@ -22,7 +22,6 @@ end
---@field style table @Style module ---@field style table @Style module
---@field cache table<string, TransData> @Cache for translated data object ---@field cache table<string, TransData> @Cache for translated data object
---@field modes string[] @all modes name ---@field modes string[] @all modes name
local M = metatable("core", { local M = metatable("core", {
cache = {}, cache = {},
style = metatable("style"), style = metatable("style"),