You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
63 lines
1.7 KiB
63 lines
1.7 KiB
#!/usr/bin/env node
|
|
/* eslint-disable no-console */
|
|
|
|
const fs = require('fs');
|
|
const path = require('path');
|
|
const yargs = require('yargs');
|
|
const { omit } = require('../lib/object-utils');
|
|
|
|
const { argv } = yargs
|
|
.usage(
|
|
'Usage: $0 [options] path/to/codepoints \nFor default template please provide --componentName and --fontFamily'
|
|
)
|
|
.demand(1)
|
|
.default('t', path.resolve(__dirname, '..', 'templates/bundled-icon-set.tpl'))
|
|
.describe('t', 'Template in JS template string format')
|
|
.alias('t', 'template')
|
|
.describe('o', 'Save output to file, defaults to STDOUT')
|
|
.alias('o', 'output')
|
|
.describe('g', 'Save glyphmap JSON to file')
|
|
.alias('g', 'glyphmap');
|
|
|
|
function extractGlyphMapFromCodepoints(fileName) {
|
|
const codepoints = fs
|
|
.readFileSync(fileName, { encoding: 'utf8' })
|
|
.split('\n');
|
|
const glyphMap = {};
|
|
codepoints.forEach(point => {
|
|
const parts = point.split(' ');
|
|
if (parts.length === 2) {
|
|
glyphMap[parts[0].replace(/_/g, '-')] = parseInt(parts[1], 16);
|
|
}
|
|
});
|
|
|
|
return glyphMap;
|
|
}
|
|
|
|
let template;
|
|
if (argv.template) {
|
|
template = fs.readFileSync(argv.template, { encoding: 'utf8' });
|
|
}
|
|
|
|
const data = omit(argv, '_ $0 o output t template g glyphmap'.split(' '));
|
|
const glyphMap = extractGlyphMapFromCodepoints(argv._[0]);
|
|
|
|
let content = JSON.stringify(glyphMap, null, ' ');
|
|
if (template) {
|
|
const templateVariables = { glyphMap: content, ...data };
|
|
content = template.replace(
|
|
/\${([^}]*)}/g,
|
|
(_, key) => templateVariables[key]
|
|
);
|
|
}
|
|
|
|
if (argv.output) {
|
|
fs.writeFileSync(argv.output, content);
|
|
} else {
|
|
console.log(content);
|
|
}
|
|
|
|
if (argv.glyphmap) {
|
|
fs.writeFileSync(argv.glyphmap, JSON.stringify(glyphMap, null, ' '));
|
|
}
|