7e101b31882f9992310811fc045a45c67114c42e
[aai/sparky-fe.git] / src / app / vnfSearch / VnfSearchOrchestratedStatusVisualization.jsx
1 /*
2  * ============LICENSE_START=======================================================
3  * org.onap.aai
4  * ================================================================================
5  * Copyright © 2017 AT&T Intellectual Property. All rights reserved.
6  * Copyright © 2017 Amdocs
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  * ECOMP is a trademark and service mark of AT&T Intellectual Property.
22  */
23 /* eslint-disable max-len,max-len,max-len,max-len,max-len,max-len */
24
25 import React, {Component} from 'react';
26 import {connect} from 'react-redux';
27 import {
28   BarChart,
29   Bar,
30   XAxis,
31   YAxis,
32   CartesianGrid,
33   Tooltip,
34   ResponsiveContainer,
35 } from 'recharts';
36
37 import i18n from 'utils/i18n/i18n';
38
39 import {CHART_ORCH_STATUS} from 'app/vnfSearch/VnfSearchConstants.js';
40 import {COLOR_BLUE} from 'utils/GlobalConstants.js';
41
42
43 let mapStateToProps = ({vnfSearch}) => {
44   let {
45         processedOrchStatusCountChartData = CHART_ORCH_STATUS.emptyData
46       } = vnfSearch;
47
48   return {
49     processedOrchStatusCountChartData
50   };
51 };
52
53 class VnfSearchOrchStatusVisualizations extends Component {
54
55   render() {
56     let {
57                                                 processedOrchStatusCountChartData
58                                 } = this.props;
59
60     let visualizationClass = 'visualizations';
61     if (processedOrchStatusCountChartData[0].values ===
62       null ||
63                                                 processedOrchStatusCountChartData[0].values.size <=
64       0) {
65       visualizationClass = 'visualizations hidden';
66     }
67     const xAxisAttrName = 'x';
68     const yAxisAttrName = 'y';
69
70     return (
71       <div id='audit-visualizations' className={visualizationClass}>
72         <div className='visualization-charts'>
73           <div >
74             <h3>{i18n(CHART_ORCH_STATUS.title)}</h3>
75             <ResponsiveContainer width='100%' height={300}>
76               <BarChart data={processedOrchStatusCountChartData[0].values}>
77                 <XAxis dataKey={xAxisAttrName}/>
78                 <YAxis   />
79                 <CartesianGrid strokeDasharray='3 3'/>
80                 <Tooltip/>
81                 <Bar name={i18n(CHART_ORCH_STATUS.yAxisLabel)}
82                      dataKey={yAxisAttrName} fill={COLOR_BLUE}/>
83               </BarChart>
84             </ResponsiveContainer>
85           </div>
86         </div>
87       </div>
88     );
89   }
90
91 }
92 export default connect(mapStateToProps)(
93   VnfSearchOrchStatusVisualizations);