2018-09-16 00:35:03 -04:00
|
|
|
const _ = require('lodash')
|
|
|
|
const cheerio = require('cheerio')
|
|
|
|
|
2018-09-09 20:33:10 -04:00
|
|
|
module.exports = {
|
|
|
|
async render() {
|
2018-09-16 00:35:03 -04:00
|
|
|
const $ = cheerio.load(this.input)
|
|
|
|
|
|
|
|
if ($.root().children().length < 1) {
|
|
|
|
return ''
|
|
|
|
}
|
|
|
|
|
|
|
|
for (let child of this.children) {
|
|
|
|
const renderer = require(`../${_.kebabCase(child.key)}/renderer.js`)
|
|
|
|
renderer.init($, child.config)
|
|
|
|
}
|
|
|
|
|
2019-01-18 15:58:39 -05:00
|
|
|
return $.html('body').replace('<body>', '').replace('</body>', '')
|
2018-09-09 20:33:10 -04:00
|
|
|
}
|
|
|
|
}
|