RIFT-15418: Removal of gateway-address in input-params result in failed string
[osm/UI.git] / skyquake / plugins / launchpad / src / instantiate / instantiateParameters.jsx
1 /*
2  *
3  *   Copyright 2016 RIFT.IO Inc
4  *
5  *   Licensed under the Apache License, Version 2.0 (the "License");
6  *   you may not use this file except in compliance with the License.
7  *   You may obtain a copy of the License at
8  *
9  *       http://www.apache.org/licenses/LICENSE-2.0
10  *
11  *   Unless required by applicable law or agreed to in writing, software
12  *   distributed under the License is distributed on an "AS IS" BASIS,
13  *   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14  *   See the License for the specific language governing permissions and
15  *   limitations under the License.
16  *
17  */
18 import React, {Component} from 'react';
19 import SkyquakeComponent from 'widgets/skyquake_container/skyquakeComponent.jsx';
20 import {Panel, PanelWrapper} from 'widgets/panel/panel';
21 import InstantiateDescriptorPanel from './instantiateDescriptorPanel.jsx';
22 import InstantiateInputParams from './instantiateInputParams.jsx';
23 class Instantiate extends Component {
24     constructor(props) {
25     super(props);
26   }
27     handleSelectVNFConfigAgent = (vnfid) => {
28         let self = this;
29         return function(e) {
30           let configAgentRef = JSON.parse(e.target.value);
31           self.Store.updateSelectedVNFConfigAgent(vnfid, configAgentRef);
32         }
33     }
34   render(){
35     //temporary
36     let selectedNSD = {};
37     let self = this;
38     this.props.nsd[0] && this.props.nsd[0].descriptors && this.props.nsd[0].descriptors.map(function(d) {
39         if(self.props.params.nsd == d.id) {
40             selectedNSD = d;
41         }
42     });
43     return (
44             <PanelWrapper>
45             <InstantiateDescriptorPanel descriptor={selectedNSD} />
46             <Panel title="Input Parameters">
47                 <InstantiateInputParams
48
49                     nsFn={this.props.nsFn()}
50                     vnfFn={this.props.vnfFn()}
51                     vldFn={this.props.vldFn()}
52                     ipProfileFn={this.props.ipProfileFn()}
53                     dnsFn={this.props.dnsFn()}
54                     usersFn={this.props.usersFn()}
55                     sshFn={this.props.sshFn()}
56                     updateName={this.props.nameUpdated}
57                     updateInputParam={this.props.updateInputParam}
58
59                     nsd={selectedNSD}
60                     selectedNSDid={this.props.selectedNSDid}
61                     name={this.props.name}
62
63                     cloudAccounts={this.props.cloudAccounts}
64                     selectedCloudAccount={this.props.selectedCloudAccount}
65                     vnfdCloudAccounts={this.props.vnfdCloudAccounts}
66                     ro={this.props.ro}
67                     dataCenters={this.props.dataCenters}
68                     configAgentAccounts={this.props.configAgentAccounts}
69                     inputParameters={this.props['input-parameters']}
70
71                     displayPlacementGroups={this.props.displayPlacementGroups}
72
73
74                     nsPlacementGroups={this.props['ns-placement-groups']}
75                     vnfPlacementGroups={this.props['vnf-placement-groups']}
76
77                     vlds={this.props.vld}
78
79                     ipProfileList={this.props.ipProfiles}
80
81                     sshKeysList={this.props.sshKeysList}
82                     sshKeysRef={this.props.sshKeysRef}
83
84                     dnsServers={this.props.dnsServers}
85
86                     usersList = {this.props.usersList}
87                     selectedID={this.props.selectedNSDid}
88                     selectedNSD={selectedNSD}
89
90                     isOpenMano={this.props.isOpenMano}
91
92                 />
93             </Panel>
94         </PanelWrapper>
95     )
96   }
97 }
98
99 Instantiate.defaultProps = {
100     nsd: [{}]
101 }
102
103 export default SkyquakeComponent(Instantiate);
104
105
106 /*
107
108
109
110
111     ipProfiles={this.state.ipProfiles}
112     dnsServers={this.state.dnsServers}
113     vld={this.state.vld}
114     nsd={this.state.nsd[0]}
115     selectedID={this.state.selectedNSDid}
116     selectedNSD={this.state.selectedNSD}
117
118     vldFn={this.Store.vldFn()}
119     ipProfileFn={this.Store.ipProfileFn()}
120     dnsFn={this.Store.dnsFn()}
121     usersFn={this.Store.usersFn()}
122     sshFn={this.Store.sshFn()}
123  */