2 * Copyright (C) 2017 AT&T Intellectual Property. All rights reserved.
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
8 * http://www.apache.org/licenses/LICENSE-2.0
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.
16 import React from 'react';
17 import PropTypes from 'prop-types';
18 import i18n from 'nfvo-utils/i18n/i18n.js';
19 import Input from 'nfvo-components/input/validation/Input.jsx';
20 import GridSection from 'nfvo-components/grid/GridSection.jsx';
21 import GridItem from 'nfvo-components/grid/GridItem.jsx';
23 const NameAndPurpose = ({
32 <GridSection hastLastColSet>
33 <GridItem colSpan={2}>
37 data-test-id="nic-name"
40 onChange={name => onDataChanged({ name })}
41 isValid={genericFieldInfo['name'].isValid}
42 errorText={genericFieldInfo['name'].errorText}
46 <GridItem colSpan={2} lastColInRow>
48 label={i18n('Purpose of NIC')}
50 data-test-id="nic-description"
51 onChange={description => onDataChanged({ description })}
52 disabled={isReadOnlyMode}
60 NameAndPurpose.PropTypes = {
61 name: PropTypes.string,
62 description: PropTypes.array,
63 onDataChanged: PropTypes.func,
64 isReadOnlyMode: PropTypes.bool
67 export default NameAndPurpose;