mirror of
https://github.com/stolksdorf/homebrewery.git
synced 2025-12-12 23:45:57 +00:00
49 lines
984 B
JavaScript
49 lines
984 B
JavaScript
const React = require('react');
|
|
const createClass = require('create-react-class');
|
|
const _ = require('lodash');
|
|
const cx = require('classnames');
|
|
const Markdown = require('naturalcrit/markdown.js');
|
|
|
|
const PrintPage = createClass({
|
|
getDefaultProps : function() {
|
|
return {
|
|
query : {},
|
|
brew : {
|
|
text : '',
|
|
}
|
|
};
|
|
},
|
|
|
|
getInitialState : function() {
|
|
return {
|
|
brewText : this.props.brew.text
|
|
};
|
|
},
|
|
|
|
componentDidMount : function() {
|
|
if(this.props.query.local){
|
|
this.setState({ brewText: localStorage.getItem(this.props.query.local) });
|
|
}
|
|
|
|
if(this.props.query.dialog) window.print();
|
|
},
|
|
|
|
renderPages : function(){
|
|
return _.map(this.state.brewText.split('\\page'), (page, index)=>{
|
|
return <div
|
|
className='phb'
|
|
id={`p${index + 1}`}
|
|
dangerouslySetInnerHTML={{ __html: Markdown.render(page) }}
|
|
key={index} />;
|
|
});
|
|
},
|
|
|
|
render : function(){
|
|
return <div>
|
|
{this.renderPages()}
|
|
</div>;
|
|
}
|
|
});
|
|
|
|
module.exports = PrintPage;
|