2018-08-27 00:23:57 +03:00
|
|
|
#!/usr/bin/env node
|
|
|
|
/**
|
|
|
|
* @fileoverview
|
|
|
|
* Compiles our icons into static .js files that can be imported in the browser
|
|
|
|
* and are tree-shakeable.
|
|
|
|
* The static .js files go in icons/{filename}.js.
|
|
|
|
* Also generates an index.js that exports all icons by title, but is not tree-shakeable
|
|
|
|
*/
|
|
|
|
|
2019-07-14 22:05:38 +03:00
|
|
|
const fs = require("fs");
|
|
|
|
const util = require("util");
|
|
|
|
const minify = require("uglify-js").minify;
|
|
|
|
|
2018-08-27 00:23:57 +03:00
|
|
|
const dataFile = "../_data/simple-icons.json";
|
|
|
|
const indexFile = `${__dirname}/../index.js`;
|
|
|
|
const iconsDir = `${__dirname}/../icons`;
|
2019-07-14 22:05:38 +03:00
|
|
|
const indexTemplateFile = `${__dirname}/templates/index.js`;
|
2018-08-27 00:23:57 +03:00
|
|
|
|
2019-07-14 22:05:38 +03:00
|
|
|
const data = require(dataFile);
|
2018-08-27 00:23:57 +03:00
|
|
|
const { titleToFilename } = require("./utils");
|
|
|
|
|
2019-07-14 18:07:24 +03:00
|
|
|
// Local helper functions
|
|
|
|
function iconToKeyValue(icon) {
|
|
|
|
return `'${icon.title}':${iconToObject(icon)}`;
|
|
|
|
}
|
|
|
|
function iconToObject(icon) {
|
2019-07-14 21:09:34 +03:00
|
|
|
return `{title:'${icon.title}',slug:'${icon.slug}',svg:'${icon.svg}',get path(){return this.svg.match(/<path\\s+d="([^"]*)/)[1];},source:'${icon.source.replace(/'/g, "\\'")}',hex:'${icon.hex}'}`;
|
2019-07-14 18:07:24 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
// 'main'
|
|
|
|
const icons = [];
|
2018-08-27 00:23:57 +03:00
|
|
|
data.icons.forEach(icon => {
|
|
|
|
const filename = titleToFilename(icon.title);
|
|
|
|
icon.svg = fs.readFileSync(`${iconsDir}/${filename}.svg`, "utf8");
|
2019-07-14 21:09:34 +03:00
|
|
|
icon.slug = filename;
|
2019-07-14 18:07:24 +03:00
|
|
|
icons.push(icon)
|
|
|
|
|
2018-08-27 00:23:57 +03:00
|
|
|
// write the static .js file for the icon
|
|
|
|
fs.writeFileSync(
|
|
|
|
`${iconsDir}/${filename}.js`,
|
2019-07-14 18:07:24 +03:00
|
|
|
`module.exports=${iconToObject(icon)};`
|
2018-08-27 00:23:57 +03:00
|
|
|
);
|
|
|
|
});
|
|
|
|
|
|
|
|
// write our generic index.js
|
2019-07-14 22:05:38 +03:00
|
|
|
const indexTemplate = fs.readFileSync(indexTemplateFile, "utf8");
|
|
|
|
const { error, code } = minify(util.format(indexTemplate, icons.map(iconToKeyValue).join(',')));
|
|
|
|
if (error) {
|
|
|
|
process.exit(1);
|
|
|
|
} else {
|
|
|
|
fs.writeFileSync(indexFile, code);
|
|
|
|
}
|