mirror of
https://github.com/Mibew/simple-icons.git
synced 2024-11-16 02:14:12 +03:00
153a029c25
* Restructure scripts/ directory And update references to this scripts everywhere. * Update names of file-level constants in bump-version.js * Normalize quotes between all scripts * Move "create-release.yml" scripts to scripts/release * Move slugs table script to scripts/release * Update relative path logic in update-slugs-table.js
92 lines
2.7 KiB
JavaScript
92 lines
2.7 KiB
JavaScript
#!/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
|
|
*/
|
|
|
|
const fs = require("fs");
|
|
const path = require("path");
|
|
const util = require("util");
|
|
const minify = require("uglify-js").minify;
|
|
|
|
const UTF8 = "utf8";
|
|
|
|
const rootDir = path.resolve(__dirname, "..", "..");
|
|
const dataFile = path.resolve(rootDir, "_data", "simple-icons.json");
|
|
const indexFile = path.resolve(rootDir, "index.js");
|
|
const iconsDir = path.resolve(rootDir, "icons");
|
|
|
|
const templatesDir = path.resolve(__dirname, "templates");
|
|
const indexTemplateFile = path.resolve(templatesDir, "index.js");
|
|
const iconObjectTemplateFile = path.resolve(templatesDir, "icon-object.js");
|
|
|
|
const indexTemplate = fs.readFileSync(indexTemplateFile, UTF8);
|
|
const iconObjectTemplate = fs.readFileSync(iconObjectTemplateFile, UTF8);
|
|
|
|
const data = require(dataFile);
|
|
const { getIconSlug, titleToSlug } = require("../utils.js");
|
|
|
|
// Local helper functions
|
|
function escape(value) {
|
|
return value.replace(/(?<!\\)'/g, "\\'");
|
|
}
|
|
function iconToKeyValue(icon) {
|
|
let iconName = escape(icon.title);
|
|
if (icon.slug !== titleToSlug(icon.title)) {
|
|
iconName = icon.slug;
|
|
}
|
|
|
|
return `'${iconName}':${iconToObject(icon)}`;
|
|
}
|
|
function licenseToObject(license) {
|
|
if (license === undefined) {
|
|
return;
|
|
}
|
|
|
|
if (license.url === undefined) {
|
|
license.url = `https://spdx.org/licenses/${license.type}`;
|
|
}
|
|
return license;
|
|
}
|
|
function iconToObject(icon) {
|
|
return util.format(iconObjectTemplate,
|
|
escape(icon.title),
|
|
escape(icon.slug),
|
|
escape(icon.svg),
|
|
escape(icon.source),
|
|
escape(icon.hex),
|
|
icon.guidelines ? `'${escape(icon.guidelines)}'` : undefined,
|
|
licenseToObject(icon.license),
|
|
);
|
|
}
|
|
function minifyAndWrite(filepath, rawJavaScript) {
|
|
const { error, code } = minify(rawJavaScript);
|
|
if (error) {
|
|
console.error(error);
|
|
process.exit(1);
|
|
} else {
|
|
fs.writeFileSync(filepath, code);
|
|
}
|
|
}
|
|
|
|
// 'main'
|
|
const icons = [];
|
|
data.icons.forEach(icon => {
|
|
const filename = getIconSlug(icon);
|
|
const svgFilepath = path.resolve(iconsDir, `${filename}.svg`);
|
|
icon.svg = fs.readFileSync(svgFilepath, UTF8).replace(/\r?\n/, '');
|
|
icon.slug = filename;
|
|
icons.push(icon);
|
|
|
|
// write the static .js file for the icon
|
|
const jsFilepath = path.resolve(iconsDir, `${filename}.js`);
|
|
minifyAndWrite(jsFilepath, `module.exports=${iconToObject(icon)};`);
|
|
});
|
|
|
|
// write our generic index.js
|
|
const rawIndexJs = util.format(indexTemplate, icons.map(iconToKeyValue).join(','));
|
|
minifyAndWrite(indexFile, rawIndexJs);
|