|
@@ -1,197 +0,0 @@
|
|
|
-import React from 'react';
|
|
|
|
|
-
|
|
|
|
|
-import { loggerFactory } from '^/../codemirror-textlint/src/utils/logger';
|
|
|
|
|
-import PropTypes from 'prop-types';
|
|
|
|
|
-
|
|
|
|
|
-import { blinkElem } from '~/client/util/blink-section-header';
|
|
|
|
|
-import { addSmoothScrollEvent } from '~/client/util/smooth-scroll';
|
|
|
|
|
-import InterceptorManager from '~/services/interceptor-manager';
|
|
|
|
|
-import GrowiRenderer from '~/services/renderer/growi-renderer';
|
|
|
|
|
-import { useInterceptorManager } from '~/stores/context';
|
|
|
|
|
-import { useEditorSettings } from '~/stores/editor';
|
|
|
|
|
-
|
|
|
|
|
-import RevisionBody from './RevisionBody';
|
|
|
|
|
-
|
|
|
|
|
-
|
|
|
|
|
-const logger = loggerFactory('components:Page:RevisionRenderer');
|
|
|
|
|
-
|
|
|
|
|
-class LegacyRevisionRenderer extends React.PureComponent {
|
|
|
|
|
-
|
|
|
|
|
- constructor(props) {
|
|
|
|
|
- super(props);
|
|
|
|
|
-
|
|
|
|
|
- this.state = {
|
|
|
|
|
- html: '',
|
|
|
|
|
- };
|
|
|
|
|
-
|
|
|
|
|
- this.renderHtml = this.renderHtml.bind(this);
|
|
|
|
|
- this.getHighlightedBody = this.getHighlightedBody.bind(this);
|
|
|
|
|
- }
|
|
|
|
|
-
|
|
|
|
|
- initCurrentRenderingContext() {
|
|
|
|
|
- this.currentRenderingContext = {
|
|
|
|
|
- markdown: this.props.markdown,
|
|
|
|
|
- pagePath: this.props.pagePath,
|
|
|
|
|
- renderDrawioInRealtime: this.props.editorSettings?.renderDrawioInRealtime,
|
|
|
|
|
- currentPathname: decodeURIComponent(window.location.pathname),
|
|
|
|
|
- };
|
|
|
|
|
- }
|
|
|
|
|
-
|
|
|
|
|
- componentDidMount() {
|
|
|
|
|
- this.initCurrentRenderingContext();
|
|
|
|
|
- this.renderHtml();
|
|
|
|
|
- }
|
|
|
|
|
-
|
|
|
|
|
- componentDidUpdate(prevProps) {
|
|
|
|
|
- const { markdown: prevMarkdown, highlightKeywords: prevHighlightKeywords } = prevProps;
|
|
|
|
|
- const { markdown, highlightKeywords, interceptorManager } = this.props;
|
|
|
|
|
-
|
|
|
|
|
- // render only when props.markdown is updated
|
|
|
|
|
- if (markdown !== prevMarkdown || highlightKeywords !== prevHighlightKeywords) {
|
|
|
|
|
- this.initCurrentRenderingContext();
|
|
|
|
|
- this.renderHtml();
|
|
|
|
|
- return;
|
|
|
|
|
- }
|
|
|
|
|
-
|
|
|
|
|
- const HeaderLink = document.getElementsByClassName('revision-head-link');
|
|
|
|
|
- const HeaderLinkArray = Array.from(HeaderLink);
|
|
|
|
|
- addSmoothScrollEvent(HeaderLinkArray, blinkElem);
|
|
|
|
|
-
|
|
|
|
|
- interceptorManager.process('postRenderHtml', this.currentRenderingContext);
|
|
|
|
|
- }
|
|
|
|
|
-
|
|
|
|
|
- /**
|
|
|
|
|
- * transplanted from legacy code -- Yuki Takei
|
|
|
|
|
- * @param {string} body html strings
|
|
|
|
|
- * @param {string} keywords
|
|
|
|
|
- */
|
|
|
|
|
- getHighlightedBody(body, keywords) {
|
|
|
|
|
- const normalizedKeywordsArray = [];
|
|
|
|
|
- // !!TODO!!: add test code refs: https://redmine.weseek.co.jp/issues/86841
|
|
|
|
|
- // Separate keywords
|
|
|
|
|
- // - Surrounded by double quotation
|
|
|
|
|
- // - Split by both full-width and half-width spaces
|
|
|
|
|
- // [...keywords.match(/"[^"]+"|[^\u{20}\u{3000}]+/ug)].forEach((keyword, i) => {
|
|
|
|
|
- keywords.forEach((keyword, i) => {
|
|
|
|
|
- if (keyword === '') {
|
|
|
|
|
- return;
|
|
|
|
|
- }
|
|
|
|
|
- const k = keyword
|
|
|
|
|
- .replace(/[.*+?^${}()|[\]\\]/g, '\\$&') // escape regex operators
|
|
|
|
|
- .replace(/(^"|"$)/g, ''); // for phrase (quoted) keyword
|
|
|
|
|
- normalizedKeywordsArray.push(k);
|
|
|
|
|
- });
|
|
|
|
|
-
|
|
|
|
|
- const normalizedKeywords = `(${normalizedKeywordsArray.join('|')})`;
|
|
|
|
|
- const keywordRegxp = new RegExp(`${normalizedKeywords}(?!(.*?"))`, 'ig'); // prior https://regex101.com/r/oX7dq5/1
|
|
|
|
|
- let keywordRegexp2 = keywordRegxp;
|
|
|
|
|
-
|
|
|
|
|
- // for non-chrome browsers compatibility
|
|
|
|
|
- try {
|
|
|
|
|
- // eslint-disable-next-line regex/invalid
|
|
|
|
|
- keywordRegexp2 = new RegExp(`(?<!<)${normalizedKeywords}(?!(.*?("|>)))`, 'ig'); // inferior (this doesn't work well when html tags exist a lot) https://regex101.com/r/Dfi61F/1
|
|
|
|
|
- }
|
|
|
|
|
- catch (err) {
|
|
|
|
|
- logger.debug('Failed to initialize regex:', err);
|
|
|
|
|
- }
|
|
|
|
|
-
|
|
|
|
|
- const highlighter = (str) => { return str.replace(keywordRegxp, '<em class="highlighted-keyword">$&</em>') }; // prior
|
|
|
|
|
- const highlighter2 = (str) => { return str.replace(keywordRegexp2, '<em class="highlighted-keyword">$&</em>') }; // inferior
|
|
|
|
|
-
|
|
|
|
|
- const insideTagRegex = /<[^<>]*>/g;
|
|
|
|
|
- const betweenTagRegex = />([^<>]*)</g; // use (group) to ignore >< around
|
|
|
|
|
-
|
|
|
|
|
- const insideTagStrs = body.match(insideTagRegex);
|
|
|
|
|
- const betweenTagMatches = Array.from(body.matchAll(betweenTagRegex));
|
|
|
|
|
-
|
|
|
|
|
- let returnBody = body;
|
|
|
|
|
- const isSafeHtml = insideTagStrs.length === betweenTagMatches.length + 1; // to check whether is safe to join
|
|
|
|
|
- if (isSafeHtml) {
|
|
|
|
|
- // highlight
|
|
|
|
|
- const betweenTagStrs = betweenTagMatches.map(match => highlighter(match[1])); // get only grouped part (exclude >< around)
|
|
|
|
|
-
|
|
|
|
|
- const arr = [];
|
|
|
|
|
- insideTagStrs.forEach((str, i) => {
|
|
|
|
|
- arr.push(str);
|
|
|
|
|
- arr.push(betweenTagStrs[i]);
|
|
|
|
|
- });
|
|
|
|
|
- returnBody = arr.join('');
|
|
|
|
|
- }
|
|
|
|
|
- else {
|
|
|
|
|
- // inferior highlighter
|
|
|
|
|
- returnBody = highlighter2(body);
|
|
|
|
|
- }
|
|
|
|
|
-
|
|
|
|
|
- return returnBody;
|
|
|
|
|
- }
|
|
|
|
|
-
|
|
|
|
|
- async renderHtml() {
|
|
|
|
|
- const {
|
|
|
|
|
- interceptorManager,
|
|
|
|
|
- growiRenderer,
|
|
|
|
|
- highlightKeywords,
|
|
|
|
|
- } = this.props;
|
|
|
|
|
-
|
|
|
|
|
- if (interceptorManager == null || growiRenderer == null) {
|
|
|
|
|
- return;
|
|
|
|
|
- }
|
|
|
|
|
-
|
|
|
|
|
- const context = this.currentRenderingContext;
|
|
|
|
|
-
|
|
|
|
|
- await interceptorManager.process('preRender', context);
|
|
|
|
|
- await interceptorManager.process('prePreProcess', context);
|
|
|
|
|
- context.markdown = growiRenderer.preProcess(context.markdown, context);
|
|
|
|
|
- await interceptorManager.process('postPreProcess', context);
|
|
|
|
|
- context.parsedHTML = growiRenderer.process(context.markdown, context);
|
|
|
|
|
- await interceptorManager.process('prePostProcess', context);
|
|
|
|
|
- context.parsedHTML = growiRenderer.postProcess(context.parsedHTML, context);
|
|
|
|
|
-
|
|
|
|
|
- const isMarkdownEmpty = context.markdown.trim().length === 0;
|
|
|
|
|
- if (highlightKeywords != null && highlightKeywords.length > 0 && !isMarkdownEmpty) {
|
|
|
|
|
- context.parsedHTML = this.getHighlightedBody(context.parsedHTML, highlightKeywords);
|
|
|
|
|
- }
|
|
|
|
|
- await interceptorManager.process('postPostProcess', context);
|
|
|
|
|
- await interceptorManager.process('preRenderHtml', context);
|
|
|
|
|
-
|
|
|
|
|
- this.setState({ html: context.parsedHTML });
|
|
|
|
|
- }
|
|
|
|
|
-
|
|
|
|
|
- render() {
|
|
|
|
|
- return (
|
|
|
|
|
- <RevisionBody
|
|
|
|
|
- html={this.state.html}
|
|
|
|
|
- additionalClassName={this.props.additionalClassName}
|
|
|
|
|
- renderMathJaxOnInit
|
|
|
|
|
- />
|
|
|
|
|
- );
|
|
|
|
|
- }
|
|
|
|
|
-
|
|
|
|
|
-}
|
|
|
|
|
-
|
|
|
|
|
-LegacyRevisionRenderer.propTypes = {
|
|
|
|
|
- interceptorManager: PropTypes.instanceOf(InterceptorManager).isRequired,
|
|
|
|
|
- growiRenderer: PropTypes.instanceOf(GrowiRenderer).isRequired,
|
|
|
|
|
- markdown: PropTypes.string.isRequired,
|
|
|
|
|
- pagePath: PropTypes.string.isRequired,
|
|
|
|
|
- highlightKeywords: PropTypes.oneOfType([PropTypes.string, PropTypes.arrayOf(PropTypes.string)]),
|
|
|
|
|
- additionalClassName: PropTypes.string,
|
|
|
|
|
- editorSettings: PropTypes.any,
|
|
|
|
|
-};
|
|
|
|
|
-
|
|
|
|
|
-// eslint-disable-next-line @typescript-eslint/explicit-module-boundary-types
|
|
|
|
|
-const RevisionRenderer = (props) => {
|
|
|
|
|
- const { data: interceptorManager } = useInterceptorManager();
|
|
|
|
|
- const { data: editorSettings } = useEditorSettings();
|
|
|
|
|
-
|
|
|
|
|
- return <LegacyRevisionRenderer {...props} interceptorManager={interceptorManager} editorSettings={editorSettings} />;
|
|
|
|
|
-};
|
|
|
|
|
-
|
|
|
|
|
-RevisionRenderer.propTypes = {
|
|
|
|
|
- growiRenderer: PropTypes.instanceOf(GrowiRenderer).isRequired,
|
|
|
|
|
- markdown: PropTypes.string.isRequired,
|
|
|
|
|
- pagePath: PropTypes.string.isRequired,
|
|
|
|
|
- highlightKeywords: PropTypes.arrayOf(PropTypes.string),
|
|
|
|
|
- additionalClassName: PropTypes.string,
|
|
|
|
|
-};
|
|
|
|
|
-
|
|
|
|
|
-export default RevisionRenderer;
|
|
|