2018-09-16 04:35:03 +00:00
|
|
|
const _ = require('lodash')
|
|
|
|
const cheerio = require('cheerio')
|
|
|
|
|
2018-09-10 00:33:10 +00:00
|
|
|
module.exports = {
|
|
|
|
async render() {
|
2018-09-16 04:35:03 +00: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)
|
|
|
|
}
|
|
|
|
|
|
|
|
return $.html()
|
2018-09-10 00:33:10 +00:00
|
|
|
}
|
|
|
|
}
|