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 Modal from 'nfvo-components/modal/Modal.jsx';
20 import SoftwareProductProcessesEditor from './SoftwareProductComponentProcessesEditor.js';
21 import SoftwareProductProcessListView from 'sdc-app/onboarding/softwareProduct/processes/SoftwareProductProcessListView.jsx';
23 class SoftwareProductProcessesView extends React.Component {
29 onAddProcess: PropTypes.func,
30 onEditProcess: PropTypes.func,
31 onDeleteProcess: PropTypes.func,
32 isDisplayModal: PropTypes.bool,
33 isModalInEditMode: PropTypes.bool,
34 onStorageSelect: PropTypes.func,
35 componentId: PropTypes.string,
36 softwareProductId: PropTypes.string,
37 currentSoftwareProduct: PropTypes.object
42 <div className="vsp-processes-page">
43 <div className="software-product-view">
44 <div className="software-product-landing-view-right-side vsp-components-processes-page flex-column">
46 <SoftwareProductProcessListView
48 'Add Component Process Details'
72 className="onborading-modal">
76 ? i18n('Edit Process Details')
77 : i18n('Create New Process Details')}
80 <Modal.Body className="edit-process-modal">
81 <SoftwareProductProcessesEditor
82 componentId={componentId}
83 softwareProductId={softwareProductId}
85 isReadOnlyMode={isReadOnlyMode}
93 export default SoftwareProductProcessesView;