[SDC] rebase 1710 code
[sdc.git] / openecomp-ui / src / sdc-app / onboarding / softwareProduct / components / compute / computeComponents / VmSizing.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 GridSection from 'nfvo-components/grid/GridSection.jsx';
20 import GridItem from 'nfvo-components/grid/GridItem.jsx';
21 const VmSizing = ({qgenericFieldInfo, dataMap, onQDataChanged}) => {
22         return(
23                 <GridSection title={i18n('VM Sizing')}>
24                         <GridItem>
25                                 <Input
26                                         data-test-id='numOfCPUs'
27                                         type='number'
28                                         label={i18n('Number of CPUs')}
29                                         onChange={(tools) => onQDataChanged({'compute/vmSizing/numOfCPUs' : tools})}
30                                         isValid={qgenericFieldInfo['compute/vmSizing/numOfCPUs'].isValid}
31                                         errorText={qgenericFieldInfo['compute/vmSizing/numOfCPUs'].errorText}
32                                         value={dataMap['compute/vmSizing/numOfCPUs']} />
33                         </GridItem>
34                         <GridItem>
35                                 <Input
36                                         data-test-id='fileSystemSizeGB'
37                                         type='number'
38                                         label={i18n('File System Size (GB)')}
39                                         onChange={(tools) => onQDataChanged({'compute/vmSizing/fileSystemSizeGB' : tools})}
40                                         isValid={qgenericFieldInfo['compute/vmSizing/fileSystemSizeGB'].isValid}
41                                         errorText={qgenericFieldInfo['compute/vmSizing/fileSystemSizeGB'].errorText}
42                                         value={dataMap['compute/vmSizing/fileSystemSizeGB']} />
43                         </GridItem>
44                         <GridItem>
45                                 <Input
46                                         data-test-id='persistentStorageVolumeSize'
47                                         type='number'
48                                         label={i18n('Persistent Storage/Volume Size (GB)')}
49                                         onChange={(tools) => onQDataChanged({'compute/vmSizing/persistentStorageVolumeSize' : tools})}
50                                         isValid={qgenericFieldInfo['compute/vmSizing/persistentStorageVolumeSize'].isValid}
51                                         errorText={qgenericFieldInfo['compute/vmSizing/persistentStorageVolumeSize'].errorText}
52                                         value={dataMap['compute/vmSizing/persistentStorageVolumeSize']} />
53                         </GridItem>
54                         <GridItem>
55                                 <Input
56                                         data-test-id='IOOperationsPerSec'
57                                         type='number'
58                                         label={i18n('I/O Operations (per second)')}
59                                         onChange={(tools) => onQDataChanged({'compute/vmSizing/IOOperationsPerSec' : tools})}
60                                         isValid={qgenericFieldInfo['compute/vmSizing/IOOperationsPerSec'].isValid}
61                                         errorText={qgenericFieldInfo['compute/vmSizing/IOOperationsPerSec'].errorText}
62                                         value={dataMap['compute/vmSizing/IOOperationsPerSec']} />
63                         </GridItem>
64                 </GridSection>
65         );
66 };
67
68 export default VmSizing;