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 | */ |
Einav Weiss Keidar | 7fdf733 | 2018-03-20 14:45:40 +0200 | [diff] [blame^] | 16 | import { connect } from 'react-redux'; |
Michael Lando | efa037d | 2017-02-19 12:57:33 +0200 | [diff] [blame] | 17 | import FlowsEditorModalView from './FlowsEditorModalView.jsx'; |
| 18 | import FlowsActions from './FlowsActions.js'; |
Einav Weiss Keidar | 7fdf733 | 2018-03-20 14:45:40 +0200 | [diff] [blame^] | 19 | import { FLOWS_EDITOR_FORM } from './FlowsConstants.js'; |
AviZi | 280f801 | 2017-06-09 02:39:56 +0300 | [diff] [blame] | 20 | import ValidationHelper from 'sdc-app/common/helpers/ValidationHelper.js'; |
Michael Lando | efa037d | 2017-02-19 12:57:33 +0200 | [diff] [blame] | 21 | |
Einav Weiss Keidar | 7fdf733 | 2018-03-20 14:45:40 +0200 | [diff] [blame^] | 22 | export const mapStateToProps = ({ flows }) => { |
| 23 | let { |
| 24 | data = { artifactName: '', description: '' }, |
| 25 | serviceID, |
| 26 | diagramType, |
| 27 | flowParticipants, |
| 28 | genericFieldInfo, |
| 29 | formReady |
| 30 | } = flows; |
| 31 | if (!data.serviceID) { |
| 32 | data.serviceID = serviceID; |
| 33 | } |
| 34 | if (!data.artifactType) { |
| 35 | data.artifactType = diagramType; |
| 36 | } |
| 37 | if (!data.participants) { |
| 38 | data.participants = flowParticipants; |
| 39 | } |
| 40 | let isFormValid = ValidationHelper.checkFormValid(genericFieldInfo); |
Michael Lando | efa037d | 2017-02-19 12:57:33 +0200 | [diff] [blame] | 41 | |
Einav Weiss Keidar | 7fdf733 | 2018-03-20 14:45:40 +0200 | [diff] [blame^] | 42 | return { |
| 43 | currentFlow: data, |
| 44 | genericFieldInfo, |
| 45 | isFormValid, |
| 46 | formReady |
| 47 | }; |
Michael Lando | efa037d | 2017-02-19 12:57:33 +0200 | [diff] [blame] | 48 | }; |
| 49 | |
Einav Weiss Keidar | 7fdf733 | 2018-03-20 14:45:40 +0200 | [diff] [blame^] | 50 | const mapActionsToProps = (dispatch, { isNewArtifact }) => { |
| 51 | return { |
| 52 | onSubmit: flow => { |
| 53 | FlowsActions.closeFlowDetailsEditor(dispatch); |
| 54 | FlowsActions.createOrUpdateFlow(dispatch, { flow }, isNewArtifact); |
| 55 | }, |
| 56 | onCancel: () => FlowsActions.closeFlowDetailsEditor(dispatch), |
| 57 | onDataChanged: deltaData => |
| 58 | ValidationHelper.dataChanged(dispatch, { |
| 59 | deltaData, |
| 60 | formName: FLOWS_EDITOR_FORM |
| 61 | }), |
| 62 | onValidateForm: () => |
| 63 | ValidationHelper.validateForm(dispatch, FLOWS_EDITOR_FORM) |
| 64 | }; |
Michael Lando | efa037d | 2017-02-19 12:57:33 +0200 | [diff] [blame] | 65 | }; |
| 66 | |
Einav Weiss Keidar | 7fdf733 | 2018-03-20 14:45:40 +0200 | [diff] [blame^] | 67 | export default connect(mapStateToProps, mapActionsToProps)( |
| 68 | FlowsEditorModalView |
| 69 | ); |