mirror of
https://github.com/142vip/408CSFamily.git
synced 2026-04-26 19:50:39 +08:00
feat: 移除eslint相关配置,引入@antfu/eslint-config,统一约束风格
This commit is contained in:
85
scripts/mark-map.js
Executable file
85
scripts/mark-map.js
Executable file
@@ -0,0 +1,85 @@
|
||||
import * as fs from 'node:fs'
|
||||
import * as path from 'node:path'
|
||||
/**
|
||||
* 将思维导图的md格式转化为html,提供在线预览
|
||||
* 链接:https://www.npmjs.com/package/markmap-cli
|
||||
*/
|
||||
|
||||
import { commandStandardExecutor } from '@142vip/utils'
|
||||
|
||||
const markMapSourcePath = path.join(__dirname, '../', 'docs/manuscripts/mark-map')
|
||||
const markMapTargetPath = path.join(__dirname, '../', 'docs/.vuepress/public/mark-map')
|
||||
|
||||
/**
|
||||
* 扫面目录
|
||||
*/
|
||||
function scanDirectory(directory, fileType) {
|
||||
const fileList = fs.readdirSync(directory)
|
||||
|
||||
return fileList
|
||||
.map((file) => {
|
||||
const filePath = path.join(directory, file)
|
||||
const fileExtension = path.extname(file).toLowerCase()
|
||||
|
||||
if (fileExtension === `.${fileType.toLowerCase()}`) {
|
||||
return filePath
|
||||
}
|
||||
return null
|
||||
})
|
||||
// 过滤空
|
||||
.filter(c => c != null)
|
||||
}
|
||||
|
||||
(async () => {
|
||||
console.log(1111, markMapSourcePath)
|
||||
/**
|
||||
* 第一步: 清空站点思维导图文件存放目录
|
||||
*/
|
||||
const delHtmlDir = `rm -rf ${path.join(markMapTargetPath, '*')}`
|
||||
|
||||
/**
|
||||
* 第二步: 将md文档转化为思维导图网页
|
||||
*/
|
||||
const mdList = scanDirectory(markMapSourcePath, 'md')
|
||||
const mdToHtmlCmdStr = mdList.map(md => `markmap --no-open ${md}`).join(' && ')
|
||||
|
||||
/**
|
||||
* 第三步: 根据文件类型将思维导图网页文件移动到站点指定目录
|
||||
*
|
||||
*/
|
||||
const mdHtmlByFileType = path.join(markMapSourcePath, '*.html')
|
||||
const moveHtmlCmdStr = `mv -f ${mdHtmlByFileType} ${markMapTargetPath}`
|
||||
|
||||
/**
|
||||
* 第四步: 将xmind思维导图原件复制到指定目录
|
||||
*
|
||||
*/
|
||||
const xmindByFileType = path.join(markMapSourcePath, '*.xmind')
|
||||
const cpXmindCmdStr = `cp -f ${xmindByFileType} ${markMapTargetPath}`
|
||||
|
||||
/**
|
||||
* 第五步: 复制mark-map对应的json文件
|
||||
*/
|
||||
const cpIndexJsonCmdStr = `cp -f ${path.join(markMapSourcePath, 'index.json')} ${markMapTargetPath}`
|
||||
|
||||
// 脚本执行
|
||||
await commandStandardExecutor([
|
||||
delHtmlDir,
|
||||
mdToHtmlCmdStr,
|
||||
moveHtmlCmdStr,
|
||||
cpXmindCmdStr,
|
||||
cpIndexJsonCmdStr,
|
||||
])
|
||||
|
||||
/**
|
||||
* 第六步: 对mark-map中的xmind文件重命名
|
||||
*
|
||||
*/
|
||||
const markMapData = require(path.join(markMapTargetPath, 'index.json'))
|
||||
for (const { originXmindFileName, targetXmindFileName } of markMapData) {
|
||||
const originPath = path.join(markMapTargetPath, originXmindFileName)
|
||||
const targetPath = path.join(markMapTargetPath, targetXmindFileName)
|
||||
|
||||
await fs.renameSync(originPath, targetPath)
|
||||
}
|
||||
})()
|
||||
Reference in New Issue
Block a user