const hljs = require('highlight.js');
const GitBook = require('gitbook-core');
const { React } = GitBook;
const getLanguage = require('./getLanguage');
/**
* Get children as text
* @param {React.Children} children
* @return {String}
*/
function getChildrenToText(children) {
return React.Children.map(children, (child) => {
if (typeof child === 'string') {
return child;
} else {
return child.props.children ?
getChildrenToText(child.props.children) : '';
}
}).join('');
}
/**
* Code block wrapper to highlight the code inside.
* @type {ReactClass}
*/
const CodeBlock = React.createClass({
propTypes: {
children: React.PropTypes.node,
theme: React.PropTypes.string.isRequired,
className: React.PropTypes.string
},
render() {
const { children, className, theme } = this.props;
const content = getChildrenToText(children);
const lang = getLanguage(className || '');
const includeCSS = ;
try {
const html = hljs.highlight(lang, content).value;
return (
{includeCSS}
);
} catch (e) {
return (
{includeCSS}
{content}
);
}
}
});
module.exports = GitBook.connect(CodeBlock, ({ config }) => ({
theme: config.getForPlugin('highlight').get('theme')
}));