Files
Atay-Makhzan/build/generate-svg.js
T

59 lines
1.7 KiB
JavaScript
Raw Normal View History

2022-06-06 05:27:25 +02:00
#!/usr/bin/env node
import fastGlob from 'fast-glob';
2021-08-17 07:32:48 +02:00
import {optimize} from 'svgo';
2022-06-06 05:27:25 +02:00
import {parse} from 'path';
import {readFile, writeFile, mkdir} from 'fs/promises';
import {fileURLToPath} from 'url';
2020-07-12 11:10:56 +02:00
2022-06-06 05:27:25 +02:00
const glob = (pattern) => fastGlob.sync(pattern, {
cwd: fileURLToPath(new URL('..', import.meta.url)),
absolute: true,
});
2020-07-12 11:10:56 +02:00
function exit(err) {
if (err) console.error(err);
process.exit(err ? 1 : 0);
}
async function processFile(file, {prefix, fullName} = {}) {
let name;
if (fullName) {
name = fullName;
} else {
name = parse(file).name;
if (prefix) name = `${prefix}-${name}`;
if (prefix === 'octicon') name = name.replace(/-[0-9]+$/, ''); // chop of '-16' on octicons
}
2020-07-12 11:10:56 +02:00
2021-03-22 05:04:19 +01:00
const {data} = optimize(await readFile(file, 'utf8'), {
2021-08-17 07:32:48 +02:00
plugins: [
{name: 'preset-default'},
{name: 'removeXMLNS'},
{name: 'removeDimensions'},
2021-09-09 09:06:54 +02:00
{name: 'prefixIds', params: {prefix: () => name}},
2021-08-17 07:32:48 +02:00
{name: 'addClassesToSVGElement', params: {classNames: ['svg', name]}},
{name: 'addAttributesToSVGElement', params: {attributes: [{'width': '16'}, {'height': '16'}, {'aria-hidden': 'true'}]}},
],
2020-07-12 11:10:56 +02:00
});
2022-06-06 05:27:25 +02:00
await writeFile(fileURLToPath(new URL(`../public/img/svg/${name}.svg`, import.meta.url)), data);
2020-07-12 11:10:56 +02:00
}
function processFiles(pattern, opts) {
return glob(pattern).map((file) => processFile(file, opts));
}
2020-07-12 11:10:56 +02:00
async function main() {
try {
2022-06-06 05:27:25 +02:00
await mkdir(fileURLToPath(new URL('../public/img/svg', import.meta.url)), {recursive: true});
2020-07-12 11:10:56 +02:00
} catch {}
await Promise.all([
2022-06-06 05:27:25 +02:00
...processFiles('node_modules/@primer/octicons/build/svg/*-16.svg', {prefix: 'octicon'}),
...processFiles('web_src/svg/*.svg'),
...processFiles('public/img/gitea.svg', {fullName: 'gitea-gitea'}),
]);
2020-07-12 11:10:56 +02:00
}
main().then(exit).catch(exit);