AviZi | 280f801 | 2017-06-09 02:39:56 +0300 | [diff] [blame] | 1 | /*! |
Michael Lando | efa037d | 2017-02-19 12:57:33 +0200 | [diff] [blame] | 2 | * Copyright (C) 2017 AT&T Intellectual Property. All rights reserved. |
AviZi | 280f801 | 2017-06-09 02:39:56 +0300 | [diff] [blame] | 3 | * |
Michael Lando | efa037d | 2017-02-19 12:57:33 +0200 | [diff] [blame] | 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 |
AviZi | 280f801 | 2017-06-09 02:39:56 +0300 | [diff] [blame] | 7 | * |
| 8 | * http://www.apache.org/licenses/LICENSE-2.0 |
| 9 | * |
Michael Lando | efa037d | 2017-02-19 12:57:33 +0200 | [diff] [blame] | 10 | * Unless required by applicable law or agreed to in writing, software |
| 11 | * distributed under the License is distributed on an "AS IS" BASIS, |
AviZi | 280f801 | 2017-06-09 02:39:56 +0300 | [diff] [blame] | 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. |
Michael Lando | efa037d | 2017-02-19 12:57:33 +0200 | [diff] [blame] | 15 | */ |
Michael Lando | efa037d | 2017-02-19 12:57:33 +0200 | [diff] [blame] | 16 | import {connect} from 'react-redux'; |
| 17 | import FlowsEditorModalView from './FlowsEditorModalView.jsx'; |
| 18 | import FlowsActions from './FlowsActions.js'; |
AviZi | 280f801 | 2017-06-09 02:39:56 +0300 | [diff] [blame] | 19 | import {FLOWS_EDITOR_FORM} from './FlowsConstants.js'; |
| 20 | import ValidationHelper from 'sdc-app/common/helpers/ValidationHelper.js'; |
Michael Lando | efa037d | 2017-02-19 12:57:33 +0200 | [diff] [blame] | 21 | |
| 22 | export const mapStateToProps = ({flows}) => { |
| 23 | |
AviZi | 280f801 | 2017-06-09 02:39:56 +0300 | [diff] [blame] | 24 | let {data = {artifactName: '', description: ''}, serviceID, diagramType, flowParticipants, genericFieldInfo, formReady} = flows; |
| 25 | if(!data.serviceID){ |
| 26 | data.serviceID = serviceID; |
Michael Lando | efa037d | 2017-02-19 12:57:33 +0200 | [diff] [blame] | 27 | } |
AviZi | 280f801 | 2017-06-09 02:39:56 +0300 | [diff] [blame] | 28 | if(!data.artifactType){ |
| 29 | data.artifactType = diagramType; |
Michael Lando | efa037d | 2017-02-19 12:57:33 +0200 | [diff] [blame] | 30 | } |
AviZi | 280f801 | 2017-06-09 02:39:56 +0300 | [diff] [blame] | 31 | if(!data.participants){ |
| 32 | data.participants = flowParticipants; |
Michael Lando | efa037d | 2017-02-19 12:57:33 +0200 | [diff] [blame] | 33 | } |
AviZi | 280f801 | 2017-06-09 02:39:56 +0300 | [diff] [blame] | 34 | let isFormValid = ValidationHelper.checkFormValid(genericFieldInfo); |
Michael Lando | efa037d | 2017-02-19 12:57:33 +0200 | [diff] [blame] | 35 | |
| 36 | return { |
AviZi | 280f801 | 2017-06-09 02:39:56 +0300 | [diff] [blame] | 37 | currentFlow: data, |
| 38 | genericFieldInfo, |
| 39 | isFormValid, |
| 40 | formReady |
Michael Lando | efa037d | 2017-02-19 12:57:33 +0200 | [diff] [blame] | 41 | }; |
| 42 | }; |
| 43 | |
| 44 | const mapActionsToProps = (dispatch, {isNewArtifact}) => { |
| 45 | return { |
| 46 | onSubmit: flow => { |
| 47 | FlowsActions.closeFlowDetailsEditor(dispatch); |
| 48 | FlowsActions.createOrUpdateFlow(dispatch, {flow}, isNewArtifact); |
| 49 | }, |
| 50 | onCancel: () => FlowsActions.closeFlowDetailsEditor(dispatch), |
AviZi | 280f801 | 2017-06-09 02:39:56 +0300 | [diff] [blame] | 51 | onDataChanged: deltaData => ValidationHelper.dataChanged(dispatch, {deltaData, formName: FLOWS_EDITOR_FORM}), |
| 52 | onValidateForm: () => ValidationHelper.validateForm(dispatch, FLOWS_EDITOR_FORM) |
Michael Lando | efa037d | 2017-02-19 12:57:33 +0200 | [diff] [blame] | 53 | }; |
| 54 | }; |
| 55 | |
| 56 | export default connect(mapStateToProps, mapActionsToProps)(FlowsEditorModalView); |