293e252dcad577c5b5f14fa6bc1030ba45503b31
[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 VersionControllerUtils from 'nfvo-components/panel/versionController/VersionControllerUtils.js';
18 import SoftwareProductComponentsMonitoringView from './SoftwareProductComponentsMonitoringView.jsx';
19 import SoftwareProductComponentsMonitoringAction from './SoftwareProductComponentsMonitoringActionHelper.js';
20 import {actionTypes as modalActionTypes} from 'nfvo-components/modal/GlobalModalConstants.js';
21 import i18n from 'nfvo-utils/i18n/i18n.js';
22
23
24
25 export const mapStateToProps = ({softwareProduct}) => {
26
27         let {softwareProductEditor: {data:currentVSP = {}}, softwareProductComponents: {monitoring}} = softwareProduct;
28         let {trapFilename, pollFilename} = monitoring;
29         let isReadOnlyMode = VersionControllerUtils.isReadOnly(currentVSP);
30
31         return {
32                 isReadOnlyMode,
33                 trapFilename,
34                 pollFilename
35         };
36 };
37
38 const mapActionsToProps = (dispatch, {softwareProductId, version, componentId}) => {
39         return {
40                 onDropMibFileToUpload: (formData, type) =>
41                         SoftwareProductComponentsMonitoringAction.uploadSnmpFile(dispatch, {
42                                 softwareProductId,
43                                 version,
44                                 componentId,
45                                 formData,
46                                 type
47                         }),
48
49                 onDeleteSnmpFile: type => SoftwareProductComponentsMonitoringAction.deleteSnmpFile(dispatch, {
50                         softwareProductId,
51                         version,
52                         componentId,
53                         type
54                 }),
55
56                 onFileUploadError: () => dispatch({
57                         type: modalActionTypes.GLOBAL_MODAL_ERROR,
58                         data: {
59                                 title: i18n('Upload Failed'),
60                                 msg: i18n('Expected "zip" file. Please check the provided file type.')                          
61                         }
62                 }),
63
64         };
65 };
66
67 export default connect(mapStateToProps, mapActionsToProps, null, {withRef: true})(SoftwareProductComponentsMonitoringView);