miao-plugin/components/Version.js

90 lines
2.0 KiB
JavaScript
Raw Normal View History

2022-07-23 20:32:10 +00:00
import fs from 'fs'
import lodash from 'lodash'
2022-07-23 20:32:10 +00:00
const _path = process.cwd()
const _logPath = `${_path}/plugins/miao-plugin/CHANGELOG.md`
2022-07-23 20:32:10 +00:00
let logs = {}
let changelogs = []
let currentVersion
let versionCount = 4
2022-07-23 20:32:10 +00:00
let packageJson = JSON.parse(fs.readFileSync('package.json', 'utf8'))
const getLine = function (line) {
2022-07-23 20:32:10 +00:00
line = line.replace(/(^\s*\*|\r)/g, '')
line = line.replace(/\s*`([^`]+`)/g, '<span class="cmd">$1')
line = line.replace(/`\s*/g, '</span>')
line = line.replace(/\s*\*\*([^\*]+\*\*)/g, '<span class="strong">$1')
2022-07-23 20:32:10 +00:00
line = line.replace(/\*\*\s*/g, '</span>')
line = line.replace(/ⁿᵉʷ/g, '<span class="new"></span>')
return line
}
try {
if (fs.existsSync(_logPath)) {
2022-07-23 20:32:10 +00:00
logs = fs.readFileSync(_logPath, 'utf8') || ''
logs = logs.split('\n')
2022-07-23 20:32:10 +00:00
let temp = {};
let lastLine = {}
lodash.forEach(logs, (line) => {
if (versionCount <= -1) {
2022-07-23 20:32:10 +00:00
return false
}
2022-07-23 20:32:10 +00:00
let versionRet = /^#\s*([0-9\\.~\s]+?)\s*$/.exec(line)
if (versionRet && versionRet[1]) {
2022-07-23 20:32:10 +00:00
let v = versionRet[1].trim()
if (!currentVersion) {
2022-07-23 20:32:10 +00:00
currentVersion = v
} else {
2022-07-23 20:32:10 +00:00
changelogs.push(temp)
if (/0\s*$/.test(v) && versionCount > 0) {
2022-07-23 20:32:10 +00:00
versionCount = 0
} else {
2022-07-23 20:32:10 +00:00
versionCount--
}
}
2022-04-27 19:10:04 +00:00
temp = {
version: v,
logs: []
}
} else {
if (!line.trim()) {
2022-07-23 20:32:10 +00:00
return
}
if (/^\*/.test(line)) {
lastLine = {
title: getLine(line),
logs: []
}
2022-07-23 20:32:10 +00:00
temp.logs.push(lastLine)
} else if (/^\s{2,}\*/.test(line)) {
2022-07-23 20:32:10 +00:00
lastLine.logs.push(getLine(line))
2022-04-27 19:10:04 +00:00
}
}
2022-07-23 20:32:10 +00:00
})
}
} catch (e) {
// do nth
}
2022-07-23 20:32:10 +00:00
const yunzaiVersion = packageJson.version
const isV3 = yunzaiVersion[0] === '3'
2022-08-18 10:13:42 +00:00
let Version = {
isV3,
get version () {
return currentVersion
},
get yunzai () {
return yunzaiVersion
},
get changelogs () {
return changelogs
}
}
export default Version