-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathindex.js
66 lines (53 loc) · 1.67 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
const
fs = require('fs'),
handlebars = require('handlebars'),
handlebarsWax = require('handlebars-wax'),
addressFormat = require('address-format'),
moment = require('moment'),
Swag = require('swag');
Swag.registerHelpers(handlebars);
handlebars.registerHelper({
wrapURL: function (url) {
const wrappedUrl = '<a href="' + url + '">' + url.replace(/.*?:\/\//g, '') + "</a>";
return new handlebars.SafeString(wrappedUrl);
},
wrapMail: function (address) {
const wrappedAddress = '<a href="mailto:' + address + '">' + address + "</a>";
return new handlebars.SafeString(wrappedAddress);
},
formatAddress: function (address, city, region, postalCode, countryCode) {
let addressList = addressFormat({
address: address,
city: city,
subdivision: region,
postalCode: postalCode,
countryCode: countryCode
});
return addressList.join('<br/>');
},
formatDate: function (date) {
return moment(date).format('MMM YYYY');
},
getValueIfDiffFromPrevious: function (array, index, key) {
return (array[index - 1] && (array[index][key] === array[index - 1][key])) ? '' : array[index][key];
},
});
function render(resume) {
let dir = __dirname,
css = fs.readFileSync(dir + '/style.css', 'utf-8'),
resumeTemplate = fs.readFileSync(dir + '/resume.hbs', 'utf-8');
let Handlebars = handlebarsWax(handlebars);
Handlebars.partials(dir + '/views/**/*.{hbs,js}');
Handlebars.partials(dir + '/partials/**/*.{hbs,js}');
return Handlebars.compile(resumeTemplate)({
css: css,
resume: resume
});
}
module.exports = {
render: render,
pdfRenderOptions: {
format: 'A4',
mediaType: 'print',
},
};