加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
index.js 1.19 KB
一键复制 编辑 原始数据 按行查看 历史
Rrrrrrray 提交于 2023-11-15 14:05 . 🎈 perf: 全局表情适配trss
// 适配V3 Yunzai,将index.js移至app/index.js
// ======================================================================
// 适配参考zhi-plugin,miao-plugin,兼容V2以及V3云崽,谢谢喵喵插件和白纸插件的贡献 ^_^
// ======================================================================
import { Data, isV3, moraVer } from './components/index.js'
import fs from 'node:fs'
if (!global.segment) global.segment = (await import('oicq')).segment
let index = { mora: {} }
if (isV3) {
index = await Data.importModule('/plugins/mora-plugin/adapter', 'index.js')
}
export const mora = index.mora || {}
logger.info(`摩拉插件${moraVer}初始化~`)
/** V3导入插件 */
const files = fs.readdirSync('./plugins/mora-plugin/apps').filter(file => file.endsWith('.js'))
let ret = []
files.forEach((file) => {
ret.push(import(`./apps/${file}`))
})
ret = await Promise.allSettled(ret)
let apps = {}
for (let i in files) {
let name = files[i].replace('.js', '')
if (ret[i].status != 'fulfilled') {
logger.error(`载入插件错误:${logger.red(name)}`)
logger.error(ret[i].reason)
continue
}
apps[name] = ret[i].value[Object.keys(ret[i].value)[0]]
}
export { apps }
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化