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';
19 import i18n from 'nfvo-utils/i18n/i18n.js';
20 import Form from 'nfvo-components/input/validation/Form.jsx';
22 import FileDetails from './imagesEditorComponents/FileDetails.jsx';
23 import ImageDetails from './imagesEditorComponents/ImageDetails.jsx';
24 import { imageCustomValidations } from './ImageValidations.js';
26 class SoftwareProductComponentsImageEditorView extends React.Component {
28 onDataChanged: PropTypes.func.isRequired,
29 onSubmit: PropTypes.func.isRequired,
30 onCancel: PropTypes.func.isRequired
48 let { id, fileName } = data;
49 let editingMode = Boolean(id);
52 {genericFieldInfo && (
58 onSubmit={() => this.submit()}
59 onReset={() => onCancel()}
61 isReadOnlyMode={isReadOnlyMode}
65 editingMode ? i18n('Save') : i18n('Create')
68 onValidateForm(imageCustomValidations)
70 className="vsp-components-image-editor">
71 <div className="editor-data">
73 editingMode={editingMode}
74 genericFieldInfo={genericFieldInfo}
75 qgenericFieldInfo={qgenericFieldInfo}
77 onDataChanged={onDataChanged}
80 onQDataChanged={onQDataChanged}
85 qgenericFieldInfo={qgenericFieldInfo}
86 onQDataChanged={onQDataChanged}
96 let { data, qdata, onSubmit, version } = this.props;
97 onSubmit({ data, qdata, version });
101 export default SoftwareProductComponentsImageEditorView;