2 * ============LICENSE_START=======================================================
4 * ================================================================================
5 * Copyright (C) 2019 AT&T Intellectual Property. All rights
7 * ================================================================================
8 * Licensed under the Apache License, Version 2.0 (the "License");
9 * you may not use this file except in compliance with the License.
10 * You may obtain a copy of the License at
12 * http://www.apache.org/licenses/LICENSE-2.0
14 * Unless required by applicable law or agreed to in writing, software
15 * distributed under the License is distributed on an "AS IS" BASIS,
16 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
17 * See the License for the specific language governing permissions and
18 * limitations under the License.
19 * ============LICENSE_END============================================
20 * ===================================================================
23 import React from 'react';
24 import styled from 'styled-components';
25 import LoopCache from '../../../api/LoopCache';
26 import { withRouter } from "react-router";
27 import LoopService from '../../../api/LoopService';
28 import LoopComponentConverter from './LoopComponentConverter';
30 const LoopViewSvgDivStyled = styled.div`
32 background-color: ${props => (props.theme.loopViewerBackgroundColor)};
34 border-color: ${props => (props.theme.loopViewerHeaderColor)};
41 class LoopViewSvg extends React.Component {
43 static emptySvg = "<svg><text x=\"20\" y=\"40\">No LOOP (SVG)</text></svg>";
46 svgContent: LoopViewSvg.emptySvg,
47 loopCache: new LoopCache({}),
48 componentModalMapping: new Map([]),
53 this.handleSvgClick = this.handleSvgClick.bind(this);
54 this.getSvg = this.getSvg.bind(this);
55 this.state.loopCache = props.loopCache;
56 this.state.componentModalMapping = LoopComponentConverter.buildMapOfComponents(props.loopCache);
57 this.getSvg(props.loopCache.getLoopName());
60 shouldComponentUpdate(nextProps, nextState) {
61 return this.state.svgContent !== nextState.svgContent;
64 componentWillReceiveProps(newProps) {
66 loopCache: newProps.loopCache,
67 componentModalMapping: LoopComponentConverter.buildMapOfComponents(newProps.loopCache),
70 this.getSvg(newProps.loopCache.getLoopName());
74 if (typeof loopName !== "undefined") {
75 LoopService.getSvg(loopName).then(svgXml => {
76 if (svgXml.length !== 0) {
77 this.setState({ svgContent: svgXml })
79 this.setState({ svgContent: LoopViewSvg.emptySvg })
85 handleSvgClick(event) {
86 console.debug("svg click event received");
87 var elementName = event.target.parentNode.parentNode.parentNode.getAttribute('data-element-id');
88 console.info("SVG element clicked", elementName);
89 this.props.history.push(this.state.componentModalMapping.get(elementName));
94 <LoopViewSvgDivStyled dangerouslySetInnerHTML={{ __html: this.state.svgContent }} onClick={this.handleSvgClick}>
96 </LoopViewSvgDivStyled>
101 export default withRouter(LoopViewSvg);