2023-09-15 08:15:25 +08:00
|
|
|
|
import template from 'art-template'
|
|
|
|
|
import chokidar from 'chokidar'
|
|
|
|
|
import path from 'node:path'
|
2023-04-18 02:37:38 +08:00
|
|
|
|
import fs from 'node:fs'
|
2023-09-15 08:15:25 +08:00
|
|
|
|
|
|
|
|
|
export default class Renderer {
|
|
|
|
|
/**
|
|
|
|
|
* 渲染器
|
|
|
|
|
* @param data.id 渲染器ID
|
|
|
|
|
* @param data.type 渲染器类型
|
|
|
|
|
* @param data.render 渲染器入口
|
|
|
|
|
*/
|
|
|
|
|
constructor(data) {
|
|
|
|
|
/** 渲染器ID */
|
|
|
|
|
this.id = data.id || 'renderer'
|
|
|
|
|
/** 渲染器类型 */
|
|
|
|
|
this.type = data.type || 'image'
|
|
|
|
|
/** 渲染器入口 */
|
|
|
|
|
this.render = this[data.render || 'render']
|
|
|
|
|
this.dir = './temp/html'
|
|
|
|
|
this.html = {}
|
|
|
|
|
this.watcher = {}
|
|
|
|
|
this.createDir(this.dir)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/** 创建文件夹 */
|
|
|
|
|
createDir(dirname) {
|
|
|
|
|
if (fs.existsSync(dirname)) {
|
|
|
|
|
return true
|
|
|
|
|
} else {
|
|
|
|
|
if (this.createDir(path.dirname(dirname))) {
|
|
|
|
|
fs.mkdirSync(dirname)
|
|
|
|
|
return true
|
2023-04-18 02:37:38 +08:00
|
|
|
|
}
|
|
|
|
|
}
|
2023-09-15 08:15:25 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/** 模板 */
|
|
|
|
|
dealTpl(name, data) {
|
|
|
|
|
let { tplFile, saveId = name } = data
|
|
|
|
|
let savePath = `./temp/html/${name}/${saveId}.html`
|
|
|
|
|
|
|
|
|
|
/** 读取html模板 */
|
|
|
|
|
if (!this.html[tplFile]) {
|
|
|
|
|
this.createDir(`./temp/html/${name}`)
|
|
|
|
|
|
|
|
|
|
try {
|
|
|
|
|
this.html[tplFile] = fs.readFileSync(tplFile, 'utf8')
|
|
|
|
|
} catch (error) {
|
|
|
|
|
logger.error(`加载html错误:${tplFile}`)
|
|
|
|
|
return false
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
this.watch(tplFile)
|
2023-04-18 02:37:38 +08:00
|
|
|
|
}
|
2023-09-15 08:15:25 +08:00
|
|
|
|
|
|
|
|
|
data.resPath = `./resources/`
|
|
|
|
|
|
|
|
|
|
/** 替换模板 */
|
|
|
|
|
let tmpHtml = template.render(this.html[tplFile], data)
|
|
|
|
|
|
|
|
|
|
/** 保存模板 */
|
|
|
|
|
fs.writeFileSync(savePath, tmpHtml)
|
|
|
|
|
|
|
|
|
|
logger.debug(`[图片生成][使用模板] ${savePath}`)
|
|
|
|
|
|
|
|
|
|
return savePath
|
2023-04-18 02:37:38 +08:00
|
|
|
|
}
|
|
|
|
|
|
2023-09-15 08:15:25 +08:00
|
|
|
|
/** 监听配置文件 */
|
|
|
|
|
watch(tplFile) {
|
|
|
|
|
if (this.watcher[tplFile]) return
|
|
|
|
|
|
|
|
|
|
const watcher = chokidar.watch(tplFile)
|
|
|
|
|
watcher.on('change', path => {
|
|
|
|
|
delete this.html[tplFile]
|
|
|
|
|
logger.mark(`[修改html模板] ${tplFile}`)
|
|
|
|
|
})
|
2023-04-18 02:37:38 +08:00
|
|
|
|
|
2023-09-15 08:15:25 +08:00
|
|
|
|
this.watcher[tplFile] = watcher
|
2023-04-18 02:37:38 +08:00
|
|
|
|
}
|
2023-09-15 08:15:25 +08:00
|
|
|
|
}
|