Implementing user feed back
[aai/sparky-fe.git] / src / app / vnfSearch / VnfSearchTotalCountVisualization.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 import React, {Component} from 'react';
24 import {connect} from 'react-redux';
25
26 import i18n from 'utils/i18n/i18n';
27
28 import {TOTAL_VNF_COUNT} from 'app/vnfSearch/VnfSearchConstants.js';
29 import {COLOR_BLUE} from 'utils/GlobalConstants.js';
30 import { ClipLoader } from 'react-spinners';
31
32 let mapStateToProps = ({vnfSearch}) => {
33   let {
34         count = TOTAL_VNF_COUNT.emptyValue,
35         enableBusyFeedback = false
36       } = vnfSearch;
37
38   return {
39     count,
40     enableBusyFeedback
41   };
42 };
43
44 class VnfSearchTotalCountVisualization extends Component {
45   static propTypes = {
46     count: React.PropTypes.oneOfType([
47       React.PropTypes.string,
48       React.PropTypes.number
49     ]),
50     enableBusyFeedback: React.PropTypes.bool
51   };
52
53   render() {
54     let {
55           count,
56           enableBusyFeedback
57         } = this.props;
58     let componentVisibitliyClassName = 'showContainer';
59     if(enableBusyFeedback){
60       componentVisibitliyClassName = 'hideContainer';
61     }
62     let visualizationClass = 'visualizations';
63     if (count === null) {
64       visualizationClass = 'visualizations hidden';
65     }
66
67     return (
68       <div id='audit-visualizations' className={visualizationClass}>
69         <div className='visualization-charts'>
70           <div className='visualization-side-by-side-30'>
71             <span>&nbsp;</span>
72             <h3>{i18n(TOTAL_VNF_COUNT.title)}</h3>
73             <div className='spinner'>
74               <ClipLoader color={COLOR_BLUE} loading={enableBusyFeedback} />
75             </div>
76             <div className={componentVisibitliyClassName}>
77               <div className='total-box-entity-count'>
78                 <span>{count}</span>
79               </div>
80             </div>
81           </div>
82         </div>
83       </div>
84     );
85   }
86
87 }
88 export default connect(mapStateToProps)(VnfSearchTotalCountVisualization);