2023-03-07 17:52:11 +00:00
|
|
|
|
import { Cfg, Common, Data, Version } from '#miao'
|
2023-10-24 19:34:36 +00:00
|
|
|
|
import fs from 'node:fs'
|
2023-02-13 19:47:22 +00:00
|
|
|
|
import lodash from 'lodash'
|
|
|
|
|
import HelpTheme from './HelpTheme.js'
|
|
|
|
|
|
|
|
|
|
const _path = process.cwd()
|
|
|
|
|
const helpPath = `${_path}/plugins/miao-plugin/resources/help`
|
|
|
|
|
|
|
|
|
|
const Help = {
|
|
|
|
|
async render (e) {
|
|
|
|
|
if (!/喵喵/.test(e.msg) && !Cfg.get('help', false)) {
|
|
|
|
|
return false
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
let custom = {}
|
|
|
|
|
let help = {}
|
|
|
|
|
if (fs.existsSync(`${helpPath}/help-cfg.js`)) {
|
|
|
|
|
console.log('miao-plugin: 检测到存在help-cfg.js配置\n建议将help-cfg.js移为config/help.js或重新复制config/help_default.js进行配置~')
|
|
|
|
|
help = await import(`file://${helpPath}/help-cfg.js?version=${new Date().getTime()}`)
|
|
|
|
|
} else if (fs.existsSync(`${helpPath}/help-list.js`)) {
|
|
|
|
|
console.log('miao-plugin: 检测到存在help-list.js配置,建议将help-list.js移为config/help.js或重新复制config/help_default.js进行配置~')
|
|
|
|
|
help = await import(`file://${helpPath}/help-list.js?version=${new Date().getTime()}`)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
let { diyCfg, sysCfg } = await Data.importCfg('help')
|
|
|
|
|
|
|
|
|
|
// 兼容一下旧字段
|
|
|
|
|
if (lodash.isArray(help.helpCfg)) {
|
|
|
|
|
custom = {
|
|
|
|
|
helpList: help.helpCfg,
|
|
|
|
|
helpCfg: {}
|
|
|
|
|
}
|
|
|
|
|
} else {
|
|
|
|
|
custom = help
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
let helpConfig = lodash.defaults(diyCfg.helpCfg || {}, custom.helpCfg, sysCfg.helpCfg)
|
|
|
|
|
let helpList = diyCfg.helpList || custom.helpList || sysCfg.helpList
|
|
|
|
|
|
|
|
|
|
let helpGroup = []
|
|
|
|
|
|
|
|
|
|
lodash.forEach(helpList, (group) => {
|
|
|
|
|
if (group.auth && group.auth === 'master' && !e.isMaster) {
|
|
|
|
|
return true
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
lodash.forEach(group.list, (help) => {
|
|
|
|
|
let icon = help.icon * 1
|
|
|
|
|
if (!icon) {
|
|
|
|
|
help.css = 'display:none'
|
|
|
|
|
} else {
|
|
|
|
|
let x = (icon - 1) % 10
|
|
|
|
|
let y = (icon - x - 1) / 10
|
|
|
|
|
help.css = `background-position:-${x * 50}px -${y * 50}px`
|
|
|
|
|
}
|
|
|
|
|
})
|
|
|
|
|
|
|
|
|
|
helpGroup.push(group)
|
|
|
|
|
})
|
|
|
|
|
let themeData = await HelpTheme.getThemeData(diyCfg.helpCfg || {}, sysCfg.helpCfg || {})
|
|
|
|
|
return await Common.render('help/index', {
|
|
|
|
|
helpCfg: helpConfig,
|
|
|
|
|
helpGroup,
|
|
|
|
|
...themeData,
|
|
|
|
|
element: 'default'
|
|
|
|
|
}, { e, scale: 1.2 })
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
async version (e) {
|
|
|
|
|
return await Common.render('help/version-info', {
|
|
|
|
|
currentVersion: Version.version,
|
|
|
|
|
changelogs: Version.changelogs,
|
|
|
|
|
elem: 'cryo'
|
|
|
|
|
}, { e, scale: 1.2 })
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
export default Help
|