mirror of
https://github.com/hrfee/jfa-go.git
synced 2024-11-04 17:30:11 +00:00
61 lines
2.1 KiB
JavaScript
61 lines
2.1 KiB
JavaScript
let parser = require("jsdom");
|
|
let fs = require("fs");
|
|
let path = require("path");
|
|
|
|
const hasDark = (item) => {
|
|
for (let i = 0; i < item.classList.length; i++) {
|
|
if (item.classList[i].substring(0,5) == "dark:") {
|
|
return true;
|
|
}
|
|
}
|
|
return false;
|
|
};
|
|
|
|
|
|
const fixHTML = (infile, outfile) => {
|
|
console.log(infile, outfile)
|
|
let doc = new parser.JSDOM(fs.readFileSync(infile));
|
|
for (let item of ["badge", "chip", "shield", "input", "table", "button", "portal", "select", "aside", "card", "field", "textarea"]) {
|
|
let items = doc.window.document.body.querySelectorAll("."+item);
|
|
for (let i = 0; i < items.length; i++) {
|
|
let hasColor = false;
|
|
for (let color of ["neutral", "positive", "urge", "warning", "info", "critical"]) {
|
|
//console.log(color);
|
|
if (items[i].classList.contains("~"+color)) {
|
|
hasColor = true;
|
|
// console.log("adding to", items[i].classList)
|
|
if (!hasDark(items[i])) {
|
|
items[i].classList.add("dark:~d_"+color);
|
|
}
|
|
break;
|
|
}
|
|
}
|
|
if (!hasColor) {
|
|
if (!hasDark(items[i])) {
|
|
// card without ~neutral look different than with.
|
|
if (item != "card") items[i].classList.add("~neutral");
|
|
items[i].classList.add("dark:~d_neutral");
|
|
}
|
|
}
|
|
if (!items[i].classList.contains("@low") && !items[i].classList.contains("@high")) {
|
|
items[i].classList.add("@low");
|
|
}
|
|
}
|
|
}
|
|
fs.writeFileSync(outfile, doc.window.document.documentElement.outerHTML);
|
|
};
|
|
|
|
let inpath = process.argv[process.argv.length-2];
|
|
let outpath = process.argv[process.argv.length-1];
|
|
|
|
if (fs.statSync(inpath).isDirectory()) {
|
|
let files = fs.readdirSync(inpath);
|
|
for (let i = 0; i < files.length; i++) {
|
|
if (files[i].indexOf(".html")>=0) {
|
|
fixHTML(path.join(inpath, files[i]), path.join(outpath, files[i]));
|
|
}
|
|
}
|
|
} else {
|
|
fixHTML(inpath, outpath);
|
|
}
|