-
Notifications
You must be signed in to change notification settings - Fork 60
/
Copy pathrender.js
44 lines (33 loc) · 963 Bytes
/
render.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
const yaml = require('js-yaml')
const markvisBar = require('markvis-bar')
const markvisLine = require('markvis-line')
const markvisPie = require('markvis-pie')
function render (options) {
return function (tokens, idx, _options, env) {
const token = tokens[idx]
let doc
// Load content
try {
doc = yaml.load(token.content)
} catch (err) {
throw err
}
const defaultChart = {
bar: markvisBar,
line: markvisLine,
pie: markvisPie
}
let chart = defaultChart
// Insert custom chart if any
if (options && Object.prototype.hasOwnProperty.call(options, 'chart')) {
chart = Object.assign({}, defaultChart, options.chart)
}
const renderer = chart[doc.layout]
// All options merged
const opts = Object.assign({}, options, env, doc)
// Render the content
const result = renderer ? renderer(opts) : token.content
return result
}
}
module.exports = render