2023-03-13 11:51:46 +08:00
|
|
|
---Set or Get metatable which will find module in folder
|
|
|
|
---@param folder_name string
|
2023-03-14 18:17:07 +08:00
|
|
|
---@param origin table? table to be set metatable
|
2023-03-13 11:51:46 +08:00
|
|
|
---@return table
|
|
|
|
local function metatable(folder_name, origin)
|
|
|
|
return setmetatable(origin or {}, {
|
2023-03-12 11:23:29 +08:00
|
|
|
__index = function(tbl, key)
|
2023-03-24 00:56:36 +08:00
|
|
|
local status, result = pcall(require, ('Trans.%s.%s'):format(folder_name, key))
|
2023-03-14 22:30:25 +08:00
|
|
|
if status then
|
|
|
|
tbl[key] = result
|
|
|
|
return result
|
|
|
|
end
|
2023-03-18 13:53:09 +08:00
|
|
|
end,
|
2023-03-12 11:23:29 +08:00
|
|
|
})
|
|
|
|
end
|
|
|
|
|
2023-03-14 18:17:07 +08:00
|
|
|
---@class string
|
|
|
|
---@field width function @Get string display width
|
|
|
|
---@field play function @Use tts to play string
|
2023-03-11 00:24:48 +08:00
|
|
|
|
2023-04-02 11:01:37 +08:00
|
|
|
local uname = vim.loop.os_uname().sysname
|
|
|
|
local system =
|
|
|
|
uname == 'Darwin' and 'mac' or
|
|
|
|
uname == 'Windows_NT' and 'win' or
|
|
|
|
uname == 'Linux' and (vim.fn.executable 'termux-api-start' == 1 and 'termux' or 'linux') or
|
|
|
|
error 'Unknown System, Please Report Issue'
|
2023-03-22 23:09:09 +08:00
|
|
|
|
2023-03-14 18:17:07 +08:00
|
|
|
---@class Trans
|
|
|
|
---@field style table @Style module
|
|
|
|
---@field cache table<string, TransData> @Cache for translated data object
|
2023-03-23 14:56:48 +08:00
|
|
|
---@field plugin_dir string @Plugin directory
|
2024-02-13 13:37:19 +08:00
|
|
|
---@field system 'mac'|'win'|'termux'|'linux' @Operating system
|
2023-03-24 00:56:36 +08:00
|
|
|
local M = metatable('core', {
|
2023-03-23 14:56:48 +08:00
|
|
|
cache = {},
|
2023-03-24 00:56:36 +08:00
|
|
|
style = metatable 'style',
|
2023-04-02 11:01:37 +08:00
|
|
|
system = system,
|
2024-02-13 13:37:19 +08:00
|
|
|
plugin_dir = vim.fn.fnamemodify(debug.getinfo(1, 'S').source:sub(2), ':p:h:h:h'),
|
2023-03-14 18:17:07 +08:00
|
|
|
})
|
|
|
|
|
|
|
|
M.metatable = metatable
|
2023-03-13 19:50:28 +08:00
|
|
|
|
2022-12-17 16:07:27 +08:00
|
|
|
return M
|