Fix sonar issues
[clamp.git] / ui-react / src / components / loop_viewer / svg / LoopSvg.js
1 /*-
2  * ============LICENSE_START=======================================================
3  * ONAP CLAMP
4  * ================================================================================
5  * Copyright (C) 2019 AT&T Intellectual Property. All rights
6  *                             reserved.
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
11  *
12  * http://www.apache.org/licenses/LICENSE-2.0
13  *
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  * ===================================================================
21  *
22  */
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';
29
30 const LoopViewSvgDivStyled = styled.div`
31         overflow: hidden;
32         background-color: ${props => (props.theme.loopViewerBackgroundColor)};
33         border: 1px solid;
34         border-color: ${props => (props.theme.loopViewerHeaderColor)};
35         margin-left: auto;
36         margin-right:auto;
37         text-align: center;
38
39 `
40
41 class LoopViewSvg extends React.Component {
42
43         static emptySvg = "<svg><text x=\"20\" y=\"40\">No LOOP (SVG)</text></svg>";
44
45         state = {
46                 svgContent: LoopViewSvg.emptySvg,
47                 loopCache: new LoopCache({}),
48                 componentModalMapping: new Map([])
49         }
50
51         constructor(props) {
52                 super(props);
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());
58         }
59
60         shouldComponentUpdate(nextProps, nextState) {
61                 return this.state.svgContent !== nextState.svgContent;
62         }
63
64         componentWillReceiveProps(newProps) {   
65                 if (this.state.loopCache !== newProps.loopCache) {
66                         this.setState({
67                                 loopCache: newProps.loopCache,
68                                 componentModalMapping: LoopComponentConverter.buildMapOfComponents(newProps.loopCache)
69                         });
70                         this.getSvg(newProps.loopCache.getLoopName());
71                 }
72         }
73
74         getSvg(loopName) {
75                 if (typeof loopName !== "undefined") {
76                         LoopService.getSvg(loopName).then(svgXml => {
77                                 if (svgXml.length !== 0) {
78                                         this.setState({ svgContent: svgXml })
79                                 } else {
80                                         this.setState({ svgContent: LoopViewSvg.emptySvg })
81                                 }
82                         });
83                 } else {
84                         this.setState({ svgContent: LoopViewSvg.emptySvg })
85                 }
86         }
87
88         handleSvgClick(event) {
89                 console.debug("svg click event received");
90                 var elementName = event.target.parentNode.parentNode.parentNode.getAttribute('data-element-id');
91                 console.info("SVG element clicked", elementName);
92                 this.props.history.push(this.state.componentModalMapping.get(elementName));
93         }
94
95         render() {
96                 return (
97                         <LoopViewSvgDivStyled dangerouslySetInnerHTML={{ __html: this.state.svgContent }} onClick={this.handleSvgClick}>
98
99                         </LoopViewSvgDivStyled>
100                 );
101         }
102 }
103
104 export default withRouter(LoopViewSvg);