[SDC-29] Amdocs OnBoard 1707 initial commit.
[sdc.git] / openecomp-ui / src / sdc-app / flows / FlowsListEditor.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 FlowsActions from './FlowsActions.js';
18 import FlowsListEditorView from './FlowsListEditorView.jsx';
19
20 export const mapStateToProps = ({flows}) => {
21         let {flowList = [], isDisplayModal, isModalInEditMode, shouldShowWorkflowsEditor = true, data = undefined, readonly} = flows;
22         let isCheckedOut = !readonly;
23         if(data && data.readonly){
24                 isCheckedOut = !data.readonly;
25         }
26
27         return {
28                 flowList,
29                 isDisplayModal,
30                 isCheckedOut,
31                 isModalInEditMode,
32                 shouldShowWorkflowsEditor,
33                 currentFlow: data,
34                 readonly
35         };
36 };
37
38 const mapActionsToProps = (dispatch) => {
39         return {
40                 onAddWorkflowClick: () => FlowsActions.openFlowDetailsEditor(dispatch),
41                 onEditFlowDetailsClick: flow => FlowsActions.openFlowDetailsEditor(dispatch, flow),
42                 onEditFlowDiagramClick: flow => FlowsActions.fetchArtifact(dispatch, {flow}),
43                 onDeleteFlowClick: flow => FlowsActions.deleteFlow(dispatch, {flow}),
44                 onSequenceDiagramSaveClick: flow => {
45                         FlowsActions.closeFlowDiagramEditor(dispatch);
46                         FlowsActions.createOrUpdateFlow(dispatch, {flow});
47                 },
48                 onSequenceDiagramCloseClick: () => FlowsActions.closeFlowDiagramEditor(dispatch)
49         };
50 };
51
52 export default connect(mapStateToProps, mapActionsToProps)(FlowsListEditorView);