Upgrade to react 16
[aai/sparky-fe.git] / src / app / tierSupport / launchExternalResource / LaunchExternalResource.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 {connect} from 'react-redux';
22 import { PropTypes } from 'prop-types';
23 import React, {Component} from 'react';
24 import {isEmpty} from 'lodash';
25 import Button from 'react-bootstrap/lib/Button.js';
26
27 let mapStateToProps = ({tierSupport: {launchExternalResourceReducer}}) => {
28   let {externalResourcePayload = {}} = launchExternalResourceReducer;
29
30   return {
31     externalResourcePayload
32   };
33 };
34
35 class LaunchExternalResource extends Component {
36   static propTypes = {
37     externalResourcePayload: PropTypes.object
38   };
39
40   render() {
41     const {externalResourcePayload} = this.props;
42
43     let launchExternalResourceClass = 'hidden';
44     if(!isEmpty(externalResourcePayload) && (externalResourcePayload.message.payload.params.objectName.length > 0)){
45       launchExternalResourceClass = '';
46     }
47
48     return (
49       <div className={launchExternalResourceClass}>
50         <Button
51           bsClass='launch-external-resource-button'
52           onClick={this.handleClick} />
53       </div>
54     );
55   }
56   handleClick = () => {
57     var getWindowUrl = function (url) {
58       var split = url.split('/');
59       return split[0] + '//' + split[2];
60     };
61     if(document.referrer) {
62       window.parent.postMessage(JSON.stringify(this.props.externalResourcePayload), getWindowUrl(document.referrer));
63     }
64   }
65 }
66 export default connect(mapStateToProps)(LaunchExternalResource);