forked from mendix/docs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpdf.js
162 lines (144 loc) · 5.4 KB
/
pdf.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
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
const markdownpdf = require('markdown-pdf');
const { getFiles, isDir, gulpErr } = require('./helpers');
const { log, colors } = require('./helpers/command_line');
const split = require('split');
const through = require('through');
const duplexer = require('duplexer');
const Promise = require('bluebird');
const fm = require('front-matter');
const path = require('path');
const promiseLimit = require('promise-limit');
const cheerio = require('cheerio');
const gutil = require('gulp-util');
let built = 0;
let toBuild = 0;
let lastParsed = -1;
const pluginID = gutil.colors.cyan('[PDF]');
const logUtil = log('PDF');
function preProcessMd () {
// Split the input stream by lines
var splitter = split()
// Replace occurences of "foo" with "bar"
var replacer = through(function (data) {
console.log(data);
this.queue(data)
})
splitter.pipe(replacer)
return duplexer(splitter, replacer)
}
function preProcessHtml (file) {
return function () {
// Split the input stream by lines
const splitter = split()
// Replace occurences of "foo" with "bar"
const replacer = through(function (data) {
const $ = cheerio.load(data);
$('a').each(function(i, el) {
const $el = $(this);
if ($el) {
const text = $el.text();
const href = ($el.attr('href') || '').trim();
if (href.indexOf('http:') !== 0 && href.indexOf('https') !== 0) {
let p = path.join(path.dirname(file.src), href);
if (href.indexOf('/') === 0) {
p = href;
} else if (href.indexOf('#') === 0) {
p = (file.url + href).replace('https://docs.mendix.com', '');
} else {
p = path.join('/best-practices', p);
}
const newPath = 'https://docs.mendix.com' + p.replace(file.base, '');
const replacement = `<a href="${newPath}">${text}</a>`;
// console.log(file.src)
// console.log(file.url)
// console.log(href);
// // console.log(p);
// console.log(replacement);
// console.log('=====> \n');
$el.replaceWith($(replacement));
}
}
});
this.queue($('body').html());
})
splitter.pipe(replacer)
return duplexer(splitter, replacer)
}
}
const frontMatterExtraction = (file) => {
return md => {
const oldRender = md.render;
md.render = (str) => {
const content = fm(str);
let body = content.body;
if (content.attributes && content.attributes.title) {
body = `# ${content.attributes.title}\n#### URL: [${file.url}](${file.url})\n\n` + content.body;
}
body = body.replace(/\{#.*\}/ig, '');
body = body.replace(/\{\{%.*%\}\}/ig, '');
return oldRender.call(md, body);
}
}
}
const markdownToPDF = file => new Promise((resolve, reject) => {
const cwd = path.dirname(file.src);
markdownpdf({
// preProcessMd,
preProcessHtml: preProcessHtml(file),
cwd,
remarkable: {
html: true,
xhtmlOut: false,
linkify: false,
breaks: false,
preset: 'full',
syntax: [ 'sup', 'sub' ],
plugins: [
frontMatterExtraction(file)
]
},
cssPath: path.join(__dirname, 'pdf', 'pdf.css'),
runningsPath: path.join(__dirname, 'pdf', 'runnings.js')
})
.from(file.src)
.to(file.dist, () => {
built++;
const perc = Math.floor(100 * (built / toBuild));
if (perc % 10 === 0 && perc !== lastParsed) {
lastParsed = perc;
gutil.log(`${pluginID} PDFs created: ${perc}%`);
}
// gutil.log(`${pluginID} Written PDF for ${file.url}`);
resolve(true);
})
});
const generatePDF = async (opts) => {
// TODO: Remove this to enable PDFs on production
logUtil(`Building pdf is only supported in draft modus, draft is set to: ${colors.cyan(opts.drafts)}`);
if (!opts.drafts) {
opts.cb && opts.cb(false);
return;
}
if (!isDir(opts.src)) {
gulpErr('pdf', colors.red(`Folder: "${opts.src}" is not a dir!`));
opts.cb && opts.cb(true);
return;
}
const allMarkdownFiles = await getFiles(opts.src, '.md');
const mappedFiles = allMarkdownFiles.map(file => {
const f = {
src: file,
base: opts.src,
url: `https://docs.mendix.com/best-practices${file.replace(opts.src, '').replace('index.md', '').replace('.md', '')}`,
dist: file.replace(opts.src, opts.dist).replace('.md', '.pdf')
};
return f;
});
const limit = promiseLimit(10);
gutil.log(`${pluginID} Writing ${mappedFiles.length} PDFs`);
toBuild = mappedFiles.length;
built = 0;
await Promise.all(mappedFiles.map(file => limit(() => markdownToPDF(file))));
opts.cb && opts.cb(false);
}
module.exports = generatePDF;