2023-03-24 11:09:04 +08:00
|
|
|
local Trans = require 'Trans'
|
2023-01-22 11:15:48 +08:00
|
|
|
|
2023-03-24 11:09:04 +08:00
|
|
|
---@class TransFloat
|
|
|
|
local M = {}
|
|
|
|
|
|
|
|
function M.new()
|
|
|
|
-- TODO :
|
|
|
|
|
|
|
|
end
|
2023-01-26 20:28:19 +08:00
|
|
|
|
|
|
|
|
2023-01-31 23:17:03 +08:00
|
|
|
|
2023-03-24 11:09:04 +08:00
|
|
|
return M
|
2023-03-12 22:12:33 +08:00
|
|
|
-- local function set_tag_hl(name, status)
|
|
|
|
-- local hl = conf.float.tag[status]
|
|
|
|
-- m_window:set_hl(name, {
|
|
|
|
-- fg = '#000000',
|
|
|
|
-- bg = hl,
|
|
|
|
-- })
|
2023-01-22 22:01:47 +08:00
|
|
|
|
2023-03-12 22:12:33 +08:00
|
|
|
-- m_window:set_hl(name .. 'round', {
|
|
|
|
-- fg = hl,
|
|
|
|
-- })
|
|
|
|
-- end
|
2023-01-22 22:01:47 +08:00
|
|
|
|
2023-03-12 22:12:33 +08:00
|
|
|
-- local function set_title()
|
|
|
|
-- local title = m_window:new_content()
|
|
|
|
-- local github = ' https://github.com/JuanZoran/Trans.nvim'
|
2023-01-21 00:24:58 +08:00
|
|
|
|
2023-03-12 22:12:33 +08:00
|
|
|
-- title:addline(
|
|
|
|
-- title:center(it(github, '@text.uri'))
|
|
|
|
-- )
|
2023-01-24 00:26:48 +08:00
|
|
|
|
2023-03-12 22:12:33 +08:00
|
|
|
-- local f = '%s(%d)'
|
2023-01-31 23:17:03 +08:00
|
|
|
|
2023-03-12 22:12:33 +08:00
|
|
|
-- local tags = {}
|
|
|
|
-- local load_tag = function(engine, index)
|
|
|
|
-- set_tag_hl(engine, 'wait')
|
|
|
|
-- local round = engine .. 'round'
|
|
|
|
-- table.insert(tags, t(
|
|
|
|
-- it('', round),
|
|
|
|
-- it(f:format(engine_map[engine], index), engine),
|
|
|
|
-- it('', round)
|
|
|
|
-- ))
|
|
|
|
-- end
|
|
|
|
-- load_tag('offline', 1)
|
|
|
|
-- title:addline(unpack(tags))
|
|
|
|
-- title:newline('')
|
|
|
|
-- end
|
2023-01-21 00:24:58 +08:00
|
|
|
|
2023-03-12 22:12:33 +08:00
|
|
|
-- local action = {
|
|
|
|
-- quit = function()
|
|
|
|
-- -- m_window:try_close()
|
|
|
|
-- end,
|
|
|
|
-- }
|
2023-01-21 00:24:58 +08:00
|
|
|
|
2023-03-12 22:12:33 +08:00
|
|
|
-- local exist = function(str)
|
|
|
|
-- return str and str ~= ''
|
|
|
|
-- end
|
2023-01-21 00:24:58 +08:00
|
|
|
|
2023-03-12 22:12:33 +08:00
|
|
|
-- local function process()
|
|
|
|
-- TODO :
|
|
|
|
-- local icon = conf.icon
|
|
|
|
-- m_content:addline(m_content:format {
|
|
|
|
-- nodes = {
|
|
|
|
-- it(m_result.word, 'TransWord'),
|
|
|
|
-- t(
|
|
|
|
-- it('['),
|
|
|
|
-- it(exist(m_result.phonetic) and m_result.phonetic or icon.notfound, 'TransPhonetic'),
|
|
|
|
-- it(']')
|
|
|
|
-- ),
|
|
|
|
-- it(m_result.collins and icon.star:rep(m_result.collins) or icon.notfound, 'TransCollins'),
|
|
|
|
-- it(m_result.oxford == 1 and icon.yes or icon.no)
|
|
|
|
-- },
|
|
|
|
-- width = math.floor(m_window.width * 0.5)
|
|
|
|
-- })
|
|
|
|
-- m_content:addline(it('该窗口还属于实验性功能 .... '))
|
|
|
|
-- end
|
2023-01-22 11:15:48 +08:00
|
|
|
|
2023-03-12 22:12:33 +08:00
|
|
|
-- return function(word)
|
|
|
|
-- buffer:init()
|
|
|
|
-- -- TODO :online query
|
|
|
|
-- -- local float = conf.float
|
|
|
|
-- vim.notify([[
|
|
|
|
-- [注意]:
|
|
|
|
-- float窗口目前还待开发
|
|
|
|
-- 如果需要input查询功能, 请将窗口改成hover]])
|
|
|
|
-- local opt = {
|
|
|
|
-- relative = 'editor',
|
|
|
|
-- width = float.width,
|
|
|
|
-- height = float.height,
|
|
|
|
-- border = float.border,
|
|
|
|
-- title = float.title,
|
|
|
|
-- animation = float.animation,
|
|
|
|
-- row = bit.rshift((vim.o.lines - float.height), 1),
|
|
|
|
-- col = bit.rshift((vim.o.columns - float.width), 1),
|
|
|
|
-- zindex = 20,
|
|
|
|
-- }
|
|
|
|
-- m_window = require('Trans.window')(true, opt)
|
|
|
|
-- set_title()
|
|
|
|
-- m_content = m_window:new_content()
|
|
|
|
-- m_result = require('Trans.query.offline')(word)
|
|
|
|
-- if m_result then
|
|
|
|
-- set_tag_hl('offline', 'success')
|
|
|
|
-- process()
|
|
|
|
-- else
|
|
|
|
-- set_tag_hl('offline', 'fail')
|
|
|
|
-- end
|
2023-01-22 11:15:48 +08:00
|
|
|
|
2023-03-12 22:12:33 +08:00
|
|
|
-- m_window:open()
|
|
|
|
-- m_window:bufset('bufhidden', 'wipe')
|
2023-01-21 00:24:58 +08:00
|
|
|
|
2023-03-12 22:12:33 +08:00
|
|
|
-- for act, key in pairs(float.keymap) do
|
|
|
|
-- m_window:map(key, action[act])
|
|
|
|
-- end
|
|
|
|
-- end
|
2023-03-24 11:09:04 +08:00
|
|
|
|
|
|
|
-- local engine_map = {
|
|
|
|
-- baidu = '百度',
|
|
|
|
-- youdao = '有道',
|
|
|
|
-- iciba = 'iciba',
|
|
|
|
-- offline = '本地',
|
|
|
|
-- }
|
2023-07-24 22:28:09 +08:00
|
|
|
|
|
|
|
|
|
|
|
-- TODO :
|
|
|
|
-- float = {
|
|
|
|
-- width = 0.8,
|
|
|
|
-- height = 0.8,
|
|
|
|
-- border = 'rounded',
|
|
|
|
-- keymap = {
|
|
|
|
-- quit = 'q',
|
|
|
|
-- },
|
|
|
|
-- animation = {
|
|
|
|
-- open = 'fold',
|
|
|
|
-- close = 'fold',
|
|
|
|
-- interval = 10,
|
|
|
|
-- },
|
|
|
|
-- tag = {
|
|
|
|
-- wait = '#519aba',
|
|
|
|
-- fail = '#e46876',
|
|
|
|
-- success = '#10b981',
|
|
|
|
-- },
|
|
|
|
-- },
|
|
|
|
|
|
|
|
|
|
|
|
-- local title = {
|
|
|
|
-- "████████╗██████╗ █████╗ ███╗ ██╗███████╗",
|
|
|
|
-- "╚══██╔══╝██╔══██╗██╔══██╗████╗ ██║██╔════╝",
|
|
|
|
-- " ██║ ██████╔╝███████║██╔██╗ ██║███████╗",
|
|
|
|
-- " ██║ ██╔══██╗██╔══██║██║╚██╗██║╚════██║",
|
|
|
|
-- " ██║ ██║ ██║██║ ██║██║ ╚████║███████║",
|
|
|
|
-- " ╚═╝ ╚═╝ ╚═╝╚═╝ ╚═╝╚═╝ ╚═══╝╚══════╝",
|
|
|
|
--}
|