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 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 import { forms } from 'sdc-app/onboarding/softwareProduct/components/SoftwareProductComponentsConstants.js';
23 import Format from './Format.jsx';
24 import Version from './Version.jsx';
26 const FileDetails = ({
36 let fileNameCols = editingMode ? 3 : 4;
38 <GridSection hasLastColSset>
39 <GridItem colSpan={fileNameCols} lastColInRow={!editingMode}>
43 onDataChanged({ fileName }, forms.IMAGE_EDIT_FORM)
45 label={i18n('Image Name')}
46 data-test-id="image-filename"
48 isValid={genericFieldInfo.fileName.isValid}
49 errorText={genericFieldInfo.fileName.errorText}
52 className="image-filename"
56 <div className="note-text">
58 'After image creation you must go to Edit Image and add File Version'
66 qgenericFieldInfo={qgenericFieldInfo}
67 onQDataChanged={onQDataChanged}
73 qgenericFieldInfo={qgenericFieldInfo}
75 onQDataChanged={onQDataChanged}
81 export default FileDetails;