| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164 |
- import React, {
- ReactNode, useCallback, useEffect, useMemo, useRef, useState,
- } from 'react';
- import { debounce } from 'throttle-debounce';
- import type { IGraphViewerGlobal } from '..';
- import { generateMxgraphData } from '../utils/embed';
- import { isGraphViewerGlobal } from '../utils/global';
- import styles from './DrawioViewer.module.scss';
- declare global {
- // eslint-disable-next-line vars-on-top, no-var
- var GraphViewer: IGraphViewerGlobal;
- }
- export type DrawioViewerProps = {
- diagramIndex: number,
- bol: number,
- eol: number,
- children?: ReactNode,
- onRenderingStart?: () => void,
- onRenderingUpdated?: (mxfile: string | null) => void,
- }
- export type DrawioEditByViewerProps = {
- bol: number,
- eol: number,
- drawioMxFile: string,
- }
- export const DrawioViewer = React.memo((props: DrawioViewerProps): JSX.Element => {
- const {
- diagramIndex, bol, eol, children,
- onRenderingStart, onRenderingUpdated,
- } = props;
- const drawioContainerRef = useRef<HTMLDivElement>(null);
- const [error, setError] = useState<Error>();
- const renderDrawio = useCallback(() => {
- if (drawioContainerRef.current == null) {
- return;
- }
- if (!('GraphViewer' in window && isGraphViewerGlobal(GraphViewer))) {
- // Do nothing if loading has not been terminated.
- // Alternatively, GraphViewer.processElements() will be called in Script.onLoad.
- // see DrawioViewerScript.tsx
- return;
- }
- const mxgraphs = drawioContainerRef.current.getElementsByClassName('mxgraph');
- if (mxgraphs.length > 0) {
- // This component should have only one '.mxgraph' element
- const div = mxgraphs[0];
- if (div != null) {
- div.innerHTML = '';
- // render diagram with createViewerForElement
- try {
- GraphViewer.createViewerForElement(div);
- }
- catch (err) {
- setError(err);
- }
- }
- }
- }, []);
- const renderDrawioWithDebounce = useMemo(() => debounce(200, renderDrawio), [renderDrawio]);
- const mxgraphHtml = useMemo(() => {
- setError(undefined);
- if (children == null) {
- return '';
- }
- const code = children instanceof Array
- ? children
- .filter(elem => (typeof elem === 'string')) // omit non-string elements (e.g. br element generated by line-breaks option)
- .join('')
- : children.toString();
- let mxgraphData;
- try {
- mxgraphData = generateMxgraphData(code);
- }
- catch (err) {
- setError(err);
- }
- return `<div class="mxgraph" data-mxgraph="${mxgraphData}"></div>`;
- }, [children]);
- useEffect(() => {
- if (mxgraphHtml.length > 0) {
- onRenderingStart?.();
- renderDrawioWithDebounce();
- }
- }, [mxgraphHtml, onRenderingStart, renderDrawioWithDebounce]);
- useEffect(() => {
- if (error != null) {
- onRenderingUpdated?.(null);
- }
- }, [error, onRenderingUpdated]);
- // **************** detect data-mxgraph has rendered ****************
- useEffect(() => {
- const container = drawioContainerRef.current;
- if (container == null) return;
- const observerCallback = (mutationRecords:MutationRecord[]) => {
- mutationRecords.forEach((record:MutationRecord) => {
- const target = record.target as HTMLElement;
- const mxgraphData = target.dataset.mxgraph;
- if (mxgraphData != null) {
- const mxgraph = JSON.parse(mxgraphData);
- onRenderingUpdated?.(mxgraph.xml);
- }
- });
- };
- const observer = new MutationObserver(observerCallback);
- observer.observe(container, { childList: true, subtree: true });
- return () => {
- observer.disconnect();
- };
- }, [onRenderingUpdated]);
- // ******************************* end *******************************
- return (
- <div
- key={`drawio-viewer-${diagramIndex}`}
- ref={drawioContainerRef}
- className={`drawio-viewer ${styles['drawio-viewer']} p-2`}
- data-begin-line-number-of-markdown={bol}
- data-end-line-number-of-markdown={eol}
- >
- {/* show error */}
- { error != null && (
- <span className="text-muted"><i className="icon-fw icon-exclamation"></i>
- {error.name && <strong>{error.name}: </strong>}
- {error.message}
- </span>
- ) }
- { error == null && (
- // eslint-disable-next-line react/no-danger
- <div dangerouslySetInnerHTML={{ __html: mxgraphHtml }} />
- ) }
- </div>
- );
- });
- DrawioViewer.displayName = 'DrawioViewer';
|