2023-01-09 15:37:58 +08:00

69 lines
1.7 KiB
Lua

local M = {}
local display = require("Trans.conf.loader").loaded.conf.ui.display
local icon = require("Trans.conf.loader").loaded.conf.ui.icon
-- {
-- collins = 3,
-- definition = "n. an expression of greeting",
-- exchange = "s:hellos",
-- oxford = 1,
-- phonetic = "hə'ləʊ",
-- pos = "u:97/n:3",
-- tag = "zk gk",
-- translation = "n. 表示问候, 惊奇或唤起注意时的用语\nint. 喂;哈罗\nn. (Hello)人名;(法)埃洛",
-- word = "hello"
-- }
-- local data = {
-- { word, 'TransWord' },
-- -- NOTE :如果平配置设置显示,并且数据库中存在则有以下字段
-- { phonetic, 'TransPhonetic' },
-- collins,
-- oxford
-- -- { phonetic, 'TransPhonetic' },
-- }
---@alias stuff
---| 'data' # 所有组件的信息
---| 'highlight?' # 整个组件的高亮
---| 'indent?' # 每行整体的缩进
---| 'interval?' # 每个组件的间隔
---@alias component stuff[]
---从查询结果中获取字符串
---@param field table 查询的结果
---@return component component 提取的组件信息[包含多个组件]
M.component = function(field)
local component = {}
local stuffs = {}
local data = {
{field.word, 'TransWord'},
}
if display.phonetic and field.phonetic then
table.insert(data, {
'[' .. field.phonetic .. ']', 'TransPhonetic'
})
end
if display.collins and field.collins then
table.insert(data, {
icon.star:rep(field.collins)
})
end
if display.oxford and field.oxford then
table.insert(data, {
field.oxford
})
end
stuffs.data = data
component[1] = stuffs
return component
end
return M