@anthonyjdella/jsonresume-theme-anthonyjdella-simple-red
Version:
Simple red theme for JSON Resume
85 lines (74 loc) • 2.24 kB
JavaScript
var fs = require("fs");
var path = require('path');
var Handlebars = require("handlebars");
var moment = require("moment");
function render(resume) {
var css = fs.readFileSync(__dirname + "/style.css", "utf-8");
var tpl = fs.readFileSync(__dirname + "/resume.hbs", "utf-8");
var partialsDir = path.join(__dirname, 'partials');
var filenames = fs.readdirSync(partialsDir);
filenames.forEach(function (filename) {
var matches = /^([^.]+).hbs$/.exec(filename);
if (!matches) {
return;
}
var name = matches[1];
var filepath = path.join(partialsDir, filename)
var template = fs.readFileSync(filepath, 'utf8');
Handlebars.registerPartial(name, template);
});
return Handlebars.compile(tpl)({
css: css,
resume: resume
});
}
module.exports = {
render: render
};
Handlebars.registerHelper("formatDate", function(datetime) {
if (moment) {
format = "MMMM YYYY";
return moment(datetime).format(format);
}
else {
return datetime;
}
});
Handlebars.registerHelper("formatDateYear", function(datetime) {
if (moment) {
format = "YYYY";
return moment(datetime).format(format);
}
else {
return datetime;
}
});
Handlebars.registerHelper("httpReplacer", function(url) {
return url.replace(/(^\w+:|^)\/\//, '');
});
Handlebars.registerHelper('ifCond', function (v1, operator, v2, options) {
switch (operator) {
case '==':
return (v1 == v2) ? options.fn(this) : options.inverse(this);
case '===':
return (v1 === v2) ? options.fn(this) : options.inverse(this);
case '!=':
return (v1 != v2) ? options.fn(this) : options.inverse(this);
case '!==':
return (v1 !== v2) ? options.fn(this) : options.inverse(this);
case '<':
return (v1 < v2) ? options.fn(this) : options.inverse(this);
case '<=':
return (v1 <= v2) ? options.fn(this) : options.inverse(this);
case '>':
return (v1 > v2) ? options.fn(this) : options.inverse(this);
case '>=':
return (v1 >= v2) ? options.fn(this) : options.inverse(this);
case '&&':
return (v1 && v2) ? options.fn(this) : options.inverse(this);
case '||':
return (v1 || v2) ? options.fn(this) : options.inverse(this);
default:
return options.inverse(this);
}
});