| 1234567891011121314151617181920212223242526272829303132333435363738 |
- import { useCallback } from 'react';
- import type { IGraphViewerGlobal } from '@growi/remark-drawio-plugin';
- import Script from 'next/script';
- declare global {
- // eslint-disable-next-line vars-on-top, no-var
- var GraphViewer: IGraphViewerGlobal;
- }
- export const DrawioViewerScript = (): JSX.Element => {
- const loadedHandler = useCallback(() => {
- // disable useResizeSensor and checkVisibleState
- // for preventing resize event by viewer.min.js
- GraphViewer.useResizeSensor = false;
- GraphViewer.prototype.checkVisibleState = false;
- // Set responsive option.
- // refs: https://github.com/jgraph/drawio/blob/v13.9.1/src/main/webapp/js/diagramly/GraphViewer.js#L89-L95
- // GraphViewer.prototype.responsive = true;
- // Set z-index ($zindex-dropdown + 200) for lightbox.
- // 'lightbox' is like a modal dialog that appears when click on a drawio diagram.
- // z-index refs: https://github.com/twbs/bootstrap/blob/v4.6.2/scss/_variables.scss#L681
- GraphViewer.prototype.lightboxZIndex = 1200;
- GraphViewer.prototype.toolbarZIndex = 1200;
- GraphViewer.processElements();
- }, []);
- return (
- <Script
- type="text/javascript"
- src="https://www.draw.io/js/viewer.min.js"
- onLoad={loadedHandler}
- />
- );
- };
|