| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283 |
- import React from 'react';
- import PropTypes from 'prop-types';
- import { debounce } from 'throttle-debounce';
- export default class RevisionBody extends React.PureComponent {
- 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;
- // Workaround MathJax Rendering (Errors still occur, but MathJax can be rendered)
- //
- // Reason:
- // Addition of draw.io Integration causes initialization conflict between MathJax of draw.io and MathJax of GROWI.
- // So, before MathJax is initialized, execute renderMathJaxWithDebounce again.
- // Avoiding initialization of MathJax of draw.io solves the problem.
- // refs: https://github.com/jgraph/drawio/pull/831
- if (MathJax != null) {
- MathJax.typesetPromise([this.element]);
- }
- else {
- this.renderMathJaxWithDebounce();
- }
- }
- generateInnerHtml(html) {
- return { __html: html };
- }
- render() {
- const additionalClassName = this.props.additionalClassName || '';
- return (
- <div
- ref={(elm) => {
- this.element = elm;
- if (this.props.inputRef != null) {
- this.props.inputRef(elm);
- }
- }}
- className={`wiki ${additionalClassName}`}
- // eslint-disable-next-line react/no-danger
- dangerouslySetInnerHTML={this.generateInnerHtml(this.props.html)}
- />
- );
- }
- }
- RevisionBody.propTypes = {
- html: PropTypes.string,
- inputRef: PropTypes.func, // for getting div element
- isMathJaxEnabled: PropTypes.bool,
- renderMathJaxOnInit: PropTypes.bool,
- renderMathJaxInRealtime: PropTypes.bool,
- additionalClassName: PropTypes.string,
- };
|