|
|
@@ -1,181 +0,0 @@
|
|
|
-import React from 'react';
|
|
|
-
|
|
|
-import i18next from 'i18next';
|
|
|
-import PropTypes from 'prop-types';
|
|
|
-import {
|
|
|
- Modal,
|
|
|
- ModalBody,
|
|
|
-} from 'reactstrap';
|
|
|
-
|
|
|
-import { getDiagramsNetLangCode } from '~/client/util/locale-utils';
|
|
|
-import { useGrowiHydratedEnv } from '~/stores/context';
|
|
|
-
|
|
|
-
|
|
|
-class DrawioModal extends React.PureComponent {
|
|
|
-
|
|
|
- constructor(props) {
|
|
|
- super(props);
|
|
|
-
|
|
|
- this.state = {
|
|
|
- show: false,
|
|
|
- drawioMxFile: '',
|
|
|
- };
|
|
|
-
|
|
|
- this.headerColor = '#334455';
|
|
|
- this.fontFamily = "Lato, -apple-system, BlinkMacSystemFont, 'Hiragino Kaku Gothic ProN', Meiryo, sans-serif";
|
|
|
-
|
|
|
- this.init = this.init.bind(this);
|
|
|
- this.cancel = this.cancel.bind(this);
|
|
|
- this.receiveFromDrawio = this.receiveFromDrawio.bind(this);
|
|
|
- }
|
|
|
-
|
|
|
- init(drawioMxFile) {
|
|
|
- const initDrawioMxFile = drawioMxFile;
|
|
|
- this.setState(
|
|
|
- {
|
|
|
- drawioMxFile: initDrawioMxFile,
|
|
|
- },
|
|
|
- );
|
|
|
- }
|
|
|
-
|
|
|
- show(drawioMxFile) {
|
|
|
- this.init(drawioMxFile);
|
|
|
-
|
|
|
- window.addEventListener('message', this.receiveFromDrawio);
|
|
|
- this.setState({ show: true });
|
|
|
- }
|
|
|
-
|
|
|
- hide() {
|
|
|
- this.setState({
|
|
|
- show: false,
|
|
|
- });
|
|
|
- }
|
|
|
-
|
|
|
- cancel() {
|
|
|
- this.hide();
|
|
|
- }
|
|
|
-
|
|
|
- receiveFromDrawio(event) {
|
|
|
- if (event.data === 'ready') {
|
|
|
- event.source.postMessage(this.state.drawioMxFile, '*');
|
|
|
- return;
|
|
|
- }
|
|
|
-
|
|
|
- if (event.data === '{"event":"configure"}') {
|
|
|
- if (event.source == null) {
|
|
|
- return;
|
|
|
- }
|
|
|
-
|
|
|
- // refs:
|
|
|
- // * https://desk.draw.io/support/solutions/articles/16000103852-how-to-customise-the-draw-io-interface
|
|
|
- // * https://desk.draw.io/support/solutions/articles/16000042544-how-does-embed-mode-work-
|
|
|
- // * https://desk.draw.io/support/solutions/articles/16000058316-how-to-configure-draw-io-
|
|
|
- event.source.postMessage(JSON.stringify({
|
|
|
- action: 'configure',
|
|
|
- config: {
|
|
|
- css: `
|
|
|
- .geMenubarContainer { background-color: ${this.headerColor} !important; }
|
|
|
- .geMenubar { background-color: ${this.headerColor} !important; }
|
|
|
- .geEditor { font-family: ${this.fontFamily} !important; }
|
|
|
- html td.mxPopupMenuItem {
|
|
|
- font-family: ${this.fontFamily} !important;
|
|
|
- font-size: 8pt !important;
|
|
|
- }
|
|
|
- `,
|
|
|
- customFonts: ['Lato', 'Charter'],
|
|
|
- },
|
|
|
- }), '*');
|
|
|
-
|
|
|
- return;
|
|
|
- }
|
|
|
-
|
|
|
- if (typeof event.data === 'string' && event.data.match(/mxfile/)) {
|
|
|
- if (event.data.length > 0) {
|
|
|
- const parser = new DOMParser();
|
|
|
- const dom = parser.parseFromString(event.data, 'text/xml');
|
|
|
- const value = dom.getElementsByTagName('diagram')[0].innerHTML;
|
|
|
-
|
|
|
- if (this.props.onSave != null) {
|
|
|
- this.props.onSave(value);
|
|
|
- }
|
|
|
- }
|
|
|
-
|
|
|
- window.removeEventListener('message', this.receiveFromDrawio);
|
|
|
- this.hide();
|
|
|
-
|
|
|
- return;
|
|
|
- }
|
|
|
-
|
|
|
- if (typeof event.data === 'string' && event.data.length === 0) {
|
|
|
- window.removeEventListener('message', this.receiveFromDrawio);
|
|
|
- this.hide();
|
|
|
-
|
|
|
- return;
|
|
|
- }
|
|
|
-
|
|
|
- // NOTHING DONE. (Receive unknown iframe message.)
|
|
|
- }
|
|
|
-
|
|
|
- get drawioURL() {
|
|
|
- const { drawioUriEnv } = this.props;
|
|
|
-
|
|
|
- const drawioUri = drawioUriEnv || 'https://embed.diagrams.net/';
|
|
|
- const url = new URL(drawioUri);
|
|
|
-
|
|
|
- // refs: https://desk.draw.io/support/solutions/articles/16000042546-what-url-parameters-are-supported-
|
|
|
- url.searchParams.append('spin', 1);
|
|
|
- url.searchParams.append('embed', 1);
|
|
|
- url.searchParams.append('lang', getDiagramsNetLangCode(i18next.language));
|
|
|
- url.searchParams.append('ui', 'atlas');
|
|
|
- url.searchParams.append('configure', 1);
|
|
|
-
|
|
|
- return url;
|
|
|
- }
|
|
|
-
|
|
|
- render() {
|
|
|
- return (
|
|
|
- <Modal
|
|
|
- isOpen={this.state.show}
|
|
|
- toggle={this.cancel}
|
|
|
- backdrop="static"
|
|
|
- className="drawio-modal grw-body-only-modal-expanded"
|
|
|
- size="xl"
|
|
|
- keyboard={false}
|
|
|
- >
|
|
|
- <ModalBody className="p-0">
|
|
|
- {/* Loading spinner */}
|
|
|
- <div className="w-100 h-100 position-absolute d-flex">
|
|
|
- <div className="mx-auto my-auto">
|
|
|
- <i className="fa fa-3x fa-spinner fa-pulse mx-auto text-muted"></i>
|
|
|
- </div>
|
|
|
- </div>
|
|
|
- {/* iframe */}
|
|
|
- <div className="w-100 h-100 position-absolute d-flex">
|
|
|
- { this.state.show && (
|
|
|
- <iframe
|
|
|
- src={this.drawioURL}
|
|
|
- className="border-0 flex-grow-1"
|
|
|
- >
|
|
|
- </iframe>
|
|
|
- ) }
|
|
|
- </div>
|
|
|
- </ModalBody>
|
|
|
- </Modal>
|
|
|
- );
|
|
|
- }
|
|
|
-
|
|
|
-}
|
|
|
-
|
|
|
-DrawioModal.propTypes = {
|
|
|
- onSave: PropTypes.func,
|
|
|
- drawioUri: PropTypes.string,
|
|
|
-};
|
|
|
-
|
|
|
-const DrawioModalFc = React.forwardRef((props, ref) => {
|
|
|
- const { growiHydratedEnv } = useGrowiHydratedEnv();
|
|
|
-
|
|
|
- return <DrawioModal onSave={props.onSave} drawioUri={growiHydratedEnv?.DRAWIO_URI} ref={ref} />;
|
|
|
-});
|
|
|
-
|
|
|
-
|
|
|
-export default DrawioModalFc;
|