miao-plugin/components/Changelog.js

72 lines
1.7 KiB
JavaScript
Raw Normal View History

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