-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.js
114 lines (93 loc) · 2.4 KB
/
index.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
#!/usr/bin/env node
const handlebars = require('handlebars');
const fs = require('fs-extra');
const jf = require('jsonfile');
const async = require('async');
const program = require('commander');
function loadTemplate(templatePath, dataIn, cb){
fs.readFile(templatePath, {
encoding: 'utf8'
}, (err, str) => {
if (err) {
return cb(err);
}
const output = {};
const templateFunc = handlebars.compile(str);
Object.keys(dataIn.variants).forEach((k) => {
output[k] = templateFunc(dataIn.variants[k]);
});
return cb(err, output);
});
}
function writeVariants(fragments, outputDir, cb){
async.forEachOf(fragments, (o, i, callback) => {
fs.outputFile(`./${outputDir}/${i}.html`, o, callback);
},
cb
);
}
const init = (jsonIn, templateIn, outputDir, cb) => {
'use strict';
let writeToFile = true;
if(typeof outputDir === 'function'){
writeToFile = false;
cb = outputDir;
}
if (!jsonIn) {
return cb(new Error('No variants JSON file provided'));
}
if (!templateIn) {
return cb(new Error('No source template provided'));
}
async.waterfall([
(callback) => {
jf.readFile(jsonIn, (err, obj) => {
if(err){
return callback(err);
}
if (!obj.variants) {
return cb(new Error('No variants array provided'));
}
return callback(null, obj);
}
);
},
(jsonObj, callback) => {
loadTemplate( templateIn, jsonObj, callback);
},
(compiled, callback) => {
if(writeToFile){
return writeVariants(compiled, outputDir, (err) => {
if(err){
return callback(err);
}
return callback(null, compiled);
});
} else {
callback(null, compiled)
}
}
],
cb);
};
module.exports = init;
// make this available as a command line program
if (!module.parent) {
program
.version('1.0.0')
.option('-j, --json <path>', 'JSON input')
.option('-t, --template <path>', 'Handlebars.js template file')
.option('-o, --output [path]', 'Output dir path (optional)')
.parse(process.argv);
function done(err, success){
if(err){
return console.log(err);
}
return console.log(success);
}
if(program.output){
init(program.json, program.template, program.output, done);
} else {
init(program.json, program.template, done);
}
}