3a767b92d470a42060405ec1f2ef459c6c52aec3
[aai/sparky-fe.git] / src / app / vnfSearch / VnfSearchTotalCountVisualization.jsx
1 /*
2  * ============LICENSE_START=======================================================
3  * org.onap.aai
4  * ================================================================================
5  * Copyright © 2017-2018 AT&T Intellectual Property. All rights reserved.
6  * Copyright © 2017-2018 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 import React, {Component} from 'react';
22 import {connect} from 'react-redux';
23
24 import i18n from 'utils/i18n/i18n';
25
26 import {TOTAL_VNF_COUNT} from 'app/vnfSearch/VnfSearchConstants.js';
27 import Spinner from 'utils/SpinnerContainer.jsx';
28
29 let mapStateToProps = ({vnfSearch}) => {
30   let {
31         count = TOTAL_VNF_COUNT.emptyValue,
32         enableBusyFeedback = false
33       } = vnfSearch;
34
35   return {
36     count,
37     enableBusyFeedback
38   };
39 };
40
41 class VnfSearchTotalCountVisualization extends Component {
42   static propTypes = {
43     count: React.PropTypes.oneOfType([
44       React.PropTypes.string,
45       React.PropTypes.number
46     ]),
47     enableBusyFeedback: React.PropTypes.bool
48   };
49
50   render() {
51     let {
52           count,
53           enableBusyFeedback
54         } = this.props;
55
56     let visualizationClass = 'visualizations';
57     if (count === null) {
58       visualizationClass = 'visualizations hidden';
59     }
60
61     return (
62       <div id='audit-visualizations' className={visualizationClass}>
63         <div className='visualization-charts'>
64           <div className='visualization-side-by-side-30'>
65             <span>&nbsp;</span>
66             <h3>{i18n(TOTAL_VNF_COUNT.title)}</h3>
67             <Spinner loading={enableBusyFeedback}>
68               <div className='total-box-entity-count'>
69                 <span>{count}</span>
70               </div>
71             </Spinner>
72           </div>
73         </div>
74       </div>
75     );
76   }
77
78 }
79 export default connect(mapStateToProps)(VnfSearchTotalCountVisualization);