[SDC-29] Amdocs OnBoard 1707 initial commit.
[sdc.git] / openecomp-ui / src / sdc-app / onboarding / softwareProduct / components / network / nicEditorComponents / Protocols.jsx
1 /*!
2  * Copyright (C) 2017 AT&T Intellectual Property. All rights reserved.
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  * http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express
13  * or implied. See the License for the specific language governing
14  * permissions and limitations under the License.
15  */
16 import React from 'react';
17 import i18n from 'nfvo-utils/i18n/i18n.js';
18 import Input from 'nfvo-components/input/validation/Input.jsx';
19 import InputOptions from 'nfvo-components/input/validation/InputOptions.jsx';
20 import GridSection from 'nfvo-components/grid/GridSection.jsx';
21 import GridItem from 'nfvo-components/grid/GridItem.jsx';
22
23 const Protocols = ({protocols, qgenericFieldInfo, dataMap, onQDataChanged}) => {
24         return (
25                 <GridSection title={i18n('Protocols')}>
26                                 <GridItem colSpan={2}>
27                                         <InputOptions
28                                                 data-test-id='nic-protocols'
29                                                 label={i18n('Protocols')}
30                                                 type='select'
31                                                 isMultiSelect={true}
32                                                 isValid={qgenericFieldInfo['protocols/protocols'].isValid}
33                                                 errorText={qgenericFieldInfo['protocols/protocols'].errorText}
34                                                 onInputChange={()=>{}}
35                                                 onEnumChange={protocols => {
36                                                         onQDataChanged({'protocols/protocols' : protocols});}
37                                                 }
38                                                 multiSelectedEnum={dataMap['protocols/protocols']}
39                                                 clearable={false}
40                                                 values={qgenericFieldInfo['protocols/protocols'].enum}/>
41                                 </GridItem>
42                                 <GridItem colSpan={2}>
43                                         <Input
44                                                 data-test-id='nic-protocolWithHighestTrafficProfile'
45                                                 label={i18n('Protocol with Highest Traffic Profile')}
46                                                 type='select'
47                                                 groupClassName='bootstrap-input-options'
48                                                 className='input-options-select'
49                                                 isValid={qgenericFieldInfo['protocols/protocolWithHighestTrafficProfile'].isValid}
50                                                 errorText={qgenericFieldInfo['protocols/protocolWithHighestTrafficProfile'].errorText}
51                                                 value={dataMap['protocols/protocolWithHighestTrafficProfile']}
52                                                 onChange={(e) => {
53                                                         const selectedIndex = e.target.selectedIndex;
54                                                         const val = e.target.options[selectedIndex].value;
55                                                         onQDataChanged({'protocols/protocolWithHighestTrafficProfile' : val});}
56                                                 }>
57                                                 {(protocols.length === 0) &&
58                                                         <option key={'You must select protocols first...'} value=''>{i18n('You must select protocols first...')}</option>
59                                                 }
60                                                 {protocols.map(protocol => <option key={protocol} value={protocol}>{protocol}</option>)}
61                                         </Input>
62                                 </GridItem>
63                 </GridSection>
64         );
65 };
66
67 Protocols.PropTypes = {
68         protocols: React.PropTypes.array,
69         onQDataChanged:  React.PropTypes.function,
70         dataMap: React.PropTypes.object,
71         qgenericFieldInfo: React.PropTypes.object
72 };
73
74 export default Protocols;