| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667 |
- import React from 'react';
- import PropTypes from 'prop-types';
- import { debounce } from 'throttle-debounce';
- export default class RevisionBody extends React.Component {
- constructor(props) {
- super(props);
- // create debounced method for rendering MathJax
- this.renderMathJaxWithDebounce = debounce(200, this.renderMathJax);
- }
- componentDidMount() {
- const MathJax = window.MathJax;
- if (MathJax != null && this.props.isMathJaxEnabled && this.props.renderMathJaxOnInit) {
- this.renderMathJaxWithDebounce();
- }
- }
- componentDidUpdate() {
- const MathJax = window.MathJax;
- if (MathJax != null && this.props.isMathJaxEnabled && this.props.renderMathJaxInRealtime) {
- this.renderMathJaxWithDebounce();
- }
- }
- componentWillReceiveProps(nextProps) {
- const MathJax = window.MathJax;
- if (MathJax != null && this.props.isMathJaxEnabled && this.props.renderMathJaxOnInit) {
- this.renderMathJaxWithDebounce();
- }
- }
- renderMathJax() {
- const MathJax = window.MathJax;
- MathJax.Hub.Queue(['Typeset', MathJax.Hub, this.element]);
- }
- generateInnerHtml(html) {
- return {__html: html};
- }
- render() {
- return (
- <div
- ref={(elm) => {
- this.element = elm;
- if (this.props.inputRef != null) {
- this.props.inputRef(elm);
- }
- }}
- className={'wiki ' + this.props.additionalClassName} dangerouslySetInnerHTML={this.generateInnerHtml(this.props.html)}>
- </div>
- );
- }
- }
- RevisionBody.propTypes = {
- html: PropTypes.string,
- inputRef: PropTypes.func, // for getting div element
- isMathJaxEnabled: PropTypes.bool,
- renderMathJaxOnInit: PropTypes.bool,
- renderMathJaxInRealtime: PropTypes.bool,
- additionalClassName: PropTypes.string,
- };
|