d889d2024a929c893897c1401231a485dec05d33
[aai/sparky-fe.git] / src / app / vnfSearch / VnfSearchProvStatusVisualization.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_PROV_STATUS} from 'app/vnfSearch/VnfSearchConstants.js';
40 import {COLOR_BLUE} from 'utils/GlobalConstants.js';
41
42 let mapStateToProps = ({vnfSearch}) => {
43   let {
44         processedProvStatusCountChartData = CHART_PROV_STATUS.emptyData
45       } = vnfSearch;
46
47   return {
48     processedProvStatusCountChartData
49   };
50 };
51
52 class VnfSearchProvStatusVisualization extends Component {
53   static propTypes = {
54     processedProvStatusCountChartData: React.PropTypes.array
55   };
56
57   render() {
58     let {
59                                                 processedProvStatusCountChartData
60                                 } = this.props;
61
62     let visualizationClass = 'visualizations';
63     if (processedProvStatusCountChartData[0].values ===
64       null ||
65       processedProvStatusCountChartData[0].values.size <=
66       0) {
67       visualizationClass = 'visualizations hidden';
68     }
69     const xAxisAttrName = 'x';
70     const yAxisAttrName = 'y';
71
72     return (
73       <div id='audit-visualizations' className={visualizationClass}>
74         <div className='visualization-charts'>
75           <div className='visualization-side-by-side-70'>
76             <h3>{i18n(CHART_PROV_STATUS.title)}</h3>
77             <ResponsiveContainer width='100%' height={300}>
78               <BarChart
79                 data={processedProvStatusCountChartData[0].values}>
80                 <XAxis dataKey={xAxisAttrName}/>
81                 <YAxis  />
82                 <CartesianGrid strokeDasharray='3 3'/>
83                 <Tooltip/>
84                 <Bar name={i18n(CHART_PROV_STATUS.xAxisLabel)}
85                      dataKey={yAxisAttrName} fill={COLOR_BLUE}/>
86               </BarChart>
87             </ResponsiveContainer>
88           </div>
89         </div>
90       </div>
91     );
92   }
93
94 }
95 export default connect(mapStateToProps)(VnfSearchProvStatusVisualization);