2022-04-01 15:45:11 +00:00
|
|
|
import * as fs from "fs";
|
|
|
|
import * as path from "path";
|
2022-05-18 21:07:32 +00:00
|
|
|
import { tmpdir } from 'os';
|
2022-04-02 03:58:04 +00:00
|
|
|
import app from "./styleTree/app";
|
2022-05-17 14:08:14 +00:00
|
|
|
import themes from "./themes";
|
2022-04-04 21:39:28 +00:00
|
|
|
import snakeCase from "./utils/snakeCase";
|
2022-04-01 15:45:11 +00:00
|
|
|
|
2022-05-16 22:11:22 +00:00
|
|
|
const themeDirectory = `${__dirname}/../../assets/themes/`;
|
2022-05-18 21:07:32 +00:00
|
|
|
const tempDirectory = fs.mkdtempSync(path.join(tmpdir(), 'build-themes'));
|
2022-05-16 22:11:22 +00:00
|
|
|
|
|
|
|
// Clear existing themes
|
|
|
|
for (const file of fs.readdirSync(themeDirectory)) {
|
2022-05-18 21:07:32 +00:00
|
|
|
if (file.endsWith('.json')) {
|
2022-05-18 21:17:26 +00:00
|
|
|
const name = file.replace(/\.json$/, '');
|
|
|
|
if (!themes.find(theme => theme.name === name)) {
|
|
|
|
fs.unlinkSync(path.join(themeDirectory, file));
|
|
|
|
}
|
2022-05-18 21:07:32 +00:00
|
|
|
}
|
2022-05-16 22:11:22 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Write new themes to theme directory
|
2022-04-01 15:45:11 +00:00
|
|
|
for (let theme of themes) {
|
2022-04-06 17:35:29 +00:00
|
|
|
let styleTree = snakeCase(app(theme));
|
|
|
|
let styleTreeJSON = JSON.stringify(styleTree, null, 2);
|
2022-05-18 21:07:32 +00:00
|
|
|
let tempPath = path.join(tempDirectory, `${theme.name}.json`);
|
|
|
|
let outPath = path.join(themeDirectory, `${theme.name}.json`);
|
|
|
|
fs.writeFileSync(tempPath, styleTreeJSON);
|
|
|
|
fs.renameSync(tempPath, outPath);
|
2022-04-06 17:35:29 +00:00
|
|
|
console.log(`- ${outPath} created`);
|
2022-04-01 15:45:11 +00:00
|
|
|
}
|