Rift.IO OSM R1 Initial Submission
[osm/UI.git] / skyquake / plugins / launchpad / src / vnfr / vnfrCard.jsx
1
2 /*
3  * 
4  *   Copyright 2016 RIFT.IO Inc
5  *
6  *   Licensed under the Apache License, Version 2.0 (the "License");
7  *   you may not use this file except in compliance with the License.
8  *   You may obtain a copy of the License at
9  *
10  *       http://www.apache.org/licenses/LICENSE-2.0
11  *
12  *   Unless required by applicable law or agreed to in writing, software
13  *   distributed under the License is distributed on an "AS IS" BASIS,
14  *   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15  *   See the License for the specific language governing permissions and
16  *   limitations under the License.
17  *
18  */
19 import React from 'react';
20 import DashboardCard from 'widgets/dashboard_card/dashboard_card.jsx';
21 import MonitoringParamsCarousel from '../monitoring_params/monitoringParamsCarousel.jsx';
22 import './vnfrCard.scss';
23 import VnfrCardNfviMetrics from './vnfrCardNfviMetrics.jsx';
24 class VnfrCard extends React.Component{
25   constructor(props) {
26     super(props);
27   }
28   render() {
29     let html;
30     let monitoring_params = <MonitoringParamsCarousel component_list={this.props.data["monitoring-param"]} slideno={this.props.slideno}/>;
31     let nfviMetrics = this.props.data["nfvi-metrics"] ? <VnfrCardNfviMetrics metrics={this.props.data["nfvi-metrics"]} /> : <div style={{textAlign:'center', paddingTop:'2rem'}}>No NFVI Metrics Configured</div>;
32     console.log(this.props.data)
33     html = (
34       <DashboardCard className="VNFRcard" showHeader={true} title={this.props.data["short-name"]}>
35         {monitoring_params}
36         {nfviMetrics}
37       </DashboardCard>
38     )
39     return html;
40   }
41 }
42
43 export default VnfrCard;