Add collaboration feature
[sdc.git] / openecomp-ui / src / sdc-app / onboarding / softwareProduct / components / monitoring / SoftwareProductComponentsMonitoring.js
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 {connect} from 'react-redux';
17 import SoftwareProductComponentsMonitoringView from './SoftwareProductComponentsMonitoringView.jsx';
18 import SoftwareProductComponentsMonitoringAction from './SoftwareProductComponentsMonitoringActionHelper.js';
19 import {actionTypes as modalActionTypes} from 'nfvo-components/modal/GlobalModalConstants.js';
20 import i18n from 'nfvo-utils/i18n/i18n.js';
21
22
23
24 export const mapStateToProps = ({softwareProduct}) => {
25
26         let {softwareProductComponents: {monitoring}} = softwareProduct;
27         return {
28                 filenames: monitoring
29         };
30
31 };
32
33 const mapActionsToProps = (dispatch, {softwareProductId, version, componentId}) => {
34
35         return {
36                 onDropMibFileToUpload: (formData, type) =>
37                         SoftwareProductComponentsMonitoringAction.uploadFile(dispatch, {
38                                 softwareProductId,
39                                 version,
40                                 componentId,
41                                 formData,
42                                 type
43                         }),
44
45                 onDeleteFile: type => SoftwareProductComponentsMonitoringAction.deleteFile(dispatch, {
46                         softwareProductId,
47                         version,
48                         componentId,
49                         type
50                 }),
51
52                 onFileUploadError: () => dispatch({
53                         type: modalActionTypes.GLOBAL_MODAL_ERROR,
54                         data: {
55                                 title: i18n('Upload Failed'),
56                                 msg: i18n('Expected "zip" file. Please check the provided file type.')
57                         }
58                 })
59         };
60
61 };
62
63 export default connect(mapStateToProps, mapActionsToProps, null, {withRef: true})(SoftwareProductComponentsMonitoringView);