730beba545f0952d6ad9cae726cff11135165627
[sdc.git] /
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 filenames = monitoring;
29         let isReadOnlyMode = VersionControllerUtils.isReadOnly(currentVSP);
30
31         return {
32                 isReadOnlyMode,
33                 filenames
34         };
35 };
36
37 const mapActionsToProps = (dispatch, {softwareProductId, version, componentId}) => {
38         return {
39                 onDropMibFileToUpload: (formData, type) =>
40                         SoftwareProductComponentsMonitoringAction.uploadFile(dispatch, {
41                                 softwareProductId,
42                                 version,
43                                 componentId,
44                                 formData,
45                                 type
46                         }),
47
48                 onDeleteFile: type => SoftwareProductComponentsMonitoringAction.deleteFile(dispatch, {
49                         softwareProductId,
50                         version,
51                         componentId,
52                         type
53                 }),
54
55                 onFileUploadError: () => dispatch({
56                         type: modalActionTypes.GLOBAL_MODAL_ERROR,
57                         data: {
58                                 title: i18n('Upload Failed'),
59                                 msg: i18n('Expected "zip" file. Please check the provided file type.')
60                         }
61                 }),
62
63         };
64 };
65
66 export default connect(mapStateToProps, mapActionsToProps, null, {withRef: true})(SoftwareProductComponentsMonitoringView);